:root {
    --azul-claro: #4b92e3;
    --azul-escuro: #0a4d8c;
    --preto: #0c0c0c;
    --cinza: #e1e4e8;
    --branco: #ffffff;
    --font-titulos: 'Space Grotesk', sans-serif;
    --font-textos: 'Satoshi', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--branco);
    color: var(--preto);
    font-family: var(--font-textos);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 85vh;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
}

/* Tipografia e Kerning */
h1, .title, .btn {
    font-family: var(--font-titulos);
    letter-spacing: -0.05em; /* Kerning solicitado */
}

.title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Setup de animação por caractere */
.char {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

.char.space {
    width: 0.25em;
}

/* Elementos de Interface */
.logo-full {
    height: 42px;
    width: auto;
}

.links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Botões e Efeitos Hover */
.btn {
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn.default {
    background-color: var(--cinza);
    color: var(--preto);
}

.btn.whatsapp {
    background-color: var(--azul-escuro);
    color: var(--branco);
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
}

.btn.default:hover {
    background-color: var(--preto);
    color: var(--branco);
}

.btn.whatsapp:hover {
    background-color: var(--azul-claro);
    box-shadow: 0 15px 30px rgba(75, 146, 227, 0.25);
}

/* Notificação Toast */
.toast {
    position: fixed;
    top: 30px;
    background: var(--preto);
    color: var(--branco);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-titulos);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.animate-in, .animate-btn {
    opacity: 0;
}

.copyright {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}