:root {
    --verde: #555F43;
    --verde-escuro: #424A32;
    --verde-profundo: #303725;
    --bege: #CBB9A0;
    --marrom: #976F49;
    --creme: #F7F4EE;
    --branco: #FFFDF8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background: var(--verde-profundo);
    color: var(--branco);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.pagina {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #20251A;
}

.pagina::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(20, 24, 14, 0.58);
    pointer-events: none;
}

.fundo-pagina {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.header {
    position: relative;
    z-index: 10;
    width: min(1180px, calc(100% - 50px));
    margin: 10px auto;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50px;
    z-index: 20;
    width: 245px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    cursor: pointer;
    outline: none;
    border: none;
}

.logo:focus,
.logo:focus-visible,
.logo:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    pointer-events: none;
    filter:
        contrast(1.15)
        saturate(1.08)
        drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

.logo:hover {
    transform: translateX(-50%) scale(1.03);
}

.status {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid rgba(247, 244, 238, 0.18);
    border-radius: 50px;
    background: rgba(247, 244, 238, 0.07);
    backdrop-filter: blur(15px);
    color: rgba(255, 253, 248, 0.82);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-ponto {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bege);
    box-shadow:
        0 0 0 5px rgba(203, 185, 160, 0.10),
        0 0 15px rgba(203, 185, 160, 0.55);
}

.hero {
    position: relative;
    z-index: 5;
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0 55px;
    text-align: center;
    pointer-events: none;
}

.hero h1,
.mini-titulo,
.descricao,
.mensagem {
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.mini-titulo {
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.30em;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(55px, 8vw, 94px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -0.035em;
    text-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

h1 span {
    display: block;
    color: #6F8F5B;
    font-style: italic;
    font-weight: 400;
}

.descricao {
    width: min(590px, 100%);
    margin: 29px auto 0;
    color: #F8F8F5;
    font-size: 14px;
    line-height: 1.9;
}

.linha {
    width: min(300px, 70%);
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.linha span {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(203, 185, 160, 0.45)
    );
}

.linha span:last-child {
    background: linear-gradient(
        90deg,
        rgba(203, 185, 160, 0.45),
        transparent
    );
}

.linha i {
    color: var(--bege);
    font-size: 10px;
    font-style: normal;
}

.mensagem {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 27px;
    pointer-events: auto;
}

.botao {
    min-height: 50px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.botao:hover {
    transform: translateY(-3px);
}

.botao i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 19px;
}

.botao-principal {
    background: #3F6B3A;
    color: #FFFFFF;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.botao-principal:hover {
    background: #527D4A;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.botao-secundario {
    color: var(--creme);
    background: rgba(247, 244, 238, 0.07);
    border: 1px solid rgba(247, 244, 238, 0.24);
    backdrop-filter: blur(12px);
}

.botao-secundario:hover {
    background: rgba(247, 244, 238, 0.14);
}

.footer {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
    padding: 24px 0 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.footer b {
    color: var(--marrom);
}

@media (max-width: 700px) {
    .header {
        width: calc(100% - 28px);
        padding-top: 20px;
        padding-bottom: 70px;
    }

    .logo {
        top: 50px;
        width: 125px;
        height: 70px;
    }

    .status {
        padding: 8px 11px;
        font-size: 8px;
    }

    .hero {
        width: calc(100% - 28px);
        padding-top: 20px;
    }

    .mini-titulo {
        font-size: 9px;
        letter-spacing: 0.20em;
    }

    h1 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .descricao {
        margin-top: 24px;
        font-size: 13px;
        line-height: 1.75;
    }

    .botoes {
        width: min(340px, 100%);
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
    }

    .botao {
        width: 100%;
    }

    .footer {
        width: calc(100% - 28px);
        flex-wrap: wrap;
        line-height: 1.6;
    }
}