:root {
    --petroleo:        #0A1A33;
    --petroleo-escuro: #06101F;
    --dourado:         #C9A24B;
    --dourado-claro:   #E7C97A;
    --branco:          #F5F7FA;
    --cinza-suave:     #AEB8C7;
    --linha:           rgba(201, 162, 75, 0.28);
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-50:  #f8fafc;
    --color-slate-900: #0f172a;
    --font-serif: 'Libre Baskerville', 'Georgia', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    color: var(--branco);
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(201,162,75,0.14) 0%, rgba(201,162,75,0) 55%),
        linear-gradient(180deg, var(--petroleo) 0%, var(--petroleo-escuro) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.65;
}

main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 3rem);
}

h1 {
    font-weight: 700;
}

a {
    color: white;
}

p {
    text-align: center;
}

.logo {
    width: clamp(210px, 42vw, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.45));
    animation: surgir 0.9s ease-out both;
}

.general__content {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 1.0vw, 0.6rem);
    text-shadow: 1px 1px #000000;
}

.contato {
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    animation: surgir 0.9s ease-out 0.34s both;
}

.contato .endereco {
    margin: 0 0 0.35rem;
    color: var(--cinza-suave);
    font-size: 0.95rem;
}
/* Links de telefone e WhatsApp */
.contato a {
    display: inline-flex;              /* alinha o ícone (SVG) e o texto lado a lado */
    align-items: center;
    gap: 0.5rem;                       /* espaço entre ícone e número */
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(1rem, 2.6vw, 1.15rem);
    padding: 0.25rem 0.35rem;
    border-radius: 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contato a svg { 
    flex: 0 0 auto; color: var(--dourado);  /* o ícone não encolhe */
} 

.contato a:hover,
.contato a:focus-visible {
    color: var(--dourado-claro);
    transform: translateY(-1px);
}

.contato a:focus-visible {
    outline: 2px solid var(--dourado);
    outline-offset: 3px;
}

.areas {
    margin: 2.5rem 0 0;
    font-size: clamp(0.72rem, 1.8vw, 0.82rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(174, 184, 199, 0.75);
    animation: surgir 0.9s ease-out 0.4s both;
}

.divisor {
    width: 54px;
    height: 1px;
    background: var(--linha);
    border: none;
    margin: clamp(0.4rem, 1.5vw, 0.9rem) 0;
}

.lead {
    margin: 0;
    max-width: 46ch;
    font-size: clamp(1rem, 2.4vw, 1.12rem);
    color: var(--cinza-suave);
    animation: surgir 0.9s ease-out 0.22s both;
}


.contact__footer {
    width: 100%;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.625rem;
    color: var(--color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: var(--petroleo-escuro);
}

.contact__footer p {
    margin: 0;
}
/* Bloco do crédito "Desenvolvido por..." */
.footer-credit {
    margin-top: 1rem;
    opacity: 0.7;
}

/* Link do crédito (nome da desenvolvedora) */
.footer-credit a {
    color: var(--color-slate-300, #cbd5e1);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@keyframes surgir {
    from {
        opacity: 0;                    /* começa invisível... */
        transform: translateY(12px);   /* ...e 12px mais para baixo */
    }
    to {
        opacity: 1;                    /* termina visível... */
        transform: translateY(0);       /* ...na posição final */
    }
}