:root {
    --azul: #242f47;
    --dourado: #c3987a;
    --dourado-hover: #b88a6e;
    --branco: #ffffff;
}

/* Importação das Fontes com o novo caminho */
/* ===== FONTES OFICIAIS ===== */
@font-face {
    font-family: 'MenoBanner';
    src: url('../fontes/meno-banner-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'HalyardText';
    src: url('../fontes/halyard-text-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    background: var(--azul);
    color: var(--branco);
    font-family: 'HalyardText', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-main {
    width: 100%;
    max-width: 460px;
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 150px;
    margin-bottom: 25px;
    animation: logoEntrance 1.2s ease forwards;
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 45px;
}

/* ===== BOTÕES ===== */
.link-btn {
    background: var(--dourado);
    color: var(--azul);
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: none;
    display: block;
    width: 100%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeButtons 0.8s ease forwards;
}

.link-btn:nth-child(1) {
    animation-delay: 0.2s;
}

.link-btn:nth-child(2) {
    animation-delay: 0.4s;
}

.link-btn:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeButtons {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-btn:hover {
    background: var(--dourado-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(195, 152, 122, 0.25);
}

/* Botão principal com leve destaque extra */
.primary-btn {
    box-shadow: 0 12px 30px rgba(195, 152, 122, 0.20);
}

.divisor {
    width: 60px;
    height: 1px;
    background: var(--dourado);
    margin: 40px auto;
    opacity: 0.6;
}

.institucional {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.75;
    padding: 0 10px;
}

footer {
    margin-top: 40px;
    letter-spacing: 1px;
    font-size: 12px;
    opacity: 0.5;
}

/* ===== MODAL PREMIUM ===== */
.modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: none;
    font-family: 'MenoBanner', serif;
    color: var(--azul);
    padding-top: 25px;
}

.modal-title {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cafe-card {
    background: #fdfaf8;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.cafe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.cafe-card h4 {
    font-family: 'MenoBanner', serif;
    color: var(--azul);
    letter-spacing: 1px;
}

.btn-buy {
    background: var(--azul);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;

}

.btn-buy:hover {
    background: #1b2436;
}

/* Melhoria na visibilidade do e-mail no rodapé */
.footer-email {
    color: white;
    /* Dourado Suave do Manual para alto contraste [cite: 46, 59] */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 1 !important;
    /* Garantindo que não fique transparente */
}

/* MODAL CAFÉ */
#modalCafe a:hover {
    color: var(--dourado-hover) !important;
}

/* FIM MODAL CAFÉ */