/* ============================================
   VARIÁVEIS E RESET
   ============================================ */
:root {
    --black: #02040a;
    --ink: #07101e;
    --panel: rgba(9, 15, 27, 0.86);
    --text: #f7fbff;
    --muted: #a8b7ca;
    --line: rgba(255, 255, 255, 0.14);
    --cyan: #00e5ff;
    --blue: #0077ff;
    --gold: #f0b429;
    --gold-soft: #ffd66b;
    --red: #ff3d71;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   CORPO E FUNDO
   ============================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: radial-gradient(circle at 14% 10%, rgba(0, 183, 255, 0.1), transparent 28rem),
                radial-gradient(circle at 86% 24%, rgba(244, 182, 63, 0.08), transparent 30rem),
                linear-gradient(180deg, #000000 0%, #03050b 42%, #000000 100%);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 82px 82px;
    pointer-events: none;
    opacity: 0.42;
}

img {
    max-width: 100%;
    display: block;
}

a, button {
    font-family: inherit;
}

/* ============================================
   NAVBAR / MENU
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(3, 5, 13, 0.68);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgb(248, 198, 92);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.nav-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.nav-links a {
    color: rgba(247, 251, 255, 0.82);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-btn {
    color: #07101e !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    padding: 12px 18px;
    border-radius: 4px;
    box-shadow: 0 18px 44px rgba(244, 182, 63, 0.28);
}

/* ============================================
   HERO / SEÇÃO PRINCIPAL
   ============================================ */
.hero {
    display: block;
    min-height: auto;
    padding: 0 0 84px;
    background: radial-gradient(circle at 18% 72%, rgba(0, 183, 255, 0.08), transparent 28rem),
                linear-gradient(180deg, #000000 0%, #03050b 100%);
}

.hero::before {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    height: 100svh;
    margin: 0 auto;
    background: url("imagem_principal_2.png") center / 100% 100% no-repeat;
}

.hero-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

/* ==========================
   HERO CARD SOBRE IMAGEM
========================== */

.hero {
    position: relative;
}

/* Card em cima da imagem */
.evento-comunicado {
    position: absolute;
    top: 140px;
    left: 20px;
    z-index: 10;
}

.evento-card-comunicado {
    width: 340px;

    background: rgba(4, 7, 16, 0.90);
    border: 1px solid rgba(241, 183, 47, 1);

    border-radius: 22px;
    padding: 24px;

    backdrop-filter: blur(16px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);

    cursor: pointer;
    transition: .3s ease;
}

.evento-card-comunicado:hover {
    transform: translateY(-4px);
}

.tag-evento {
    display: inline-block;

    background: rgba(240,180,41,.15);
    color: var(--gold);

    padding: 8px 14px;
    border-radius: 999px;

    font-size: .75rem;
    font-weight: 700;

    margin-bottom: 14px;
}

.logos-evento {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.logo-click{
    width: 60;
    filter: brightness(0) invert(1);
}
.logo-mini img {
    width: 60px;
    margin-bottom: 12px;
}

.comunicado-header h3 {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.comunicado-header p {
    color: #b8c4d3;
    line-height: 1.5;
}

.comunicado-data-box {
    margin: 20px 0;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;

    border: 2px solid rgb(241, 183, 47, 1);
    border-radius: 15px;
    background: rgba(255,255,255,.05);
}

.data-linha {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dia-evento {
    font-size: 3.6rem;
    font-weight: 900;
    color: #f1b72f;
    line-height: 1;
}

.info-data-hora {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mes-evento {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.hora-evento {
    color: white;
    font-size: 1.1rem;
    opacity: 0.8;
    padding-left: 30px;
}
.comunicado-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comunicado-item {
    color: #dce5ef;
    font-size: .9rem;
}


/* ==========================
   RESPONSIVO CARD HERO
========================== */

/* Responsivo para tablet */
@media (max-width: 768px) {
    .comunicado-data-box {
        padding: 14px;
    }

    .data-linha {
        gap: 14px;
    }

    .dia-evento {
        font-size: 3rem;
    }

    .mes-evento {
        font-size: 0.95rem;
    }

    .hora-evento {
        font-size: 0.95rem;
        padding-left: 25px;
    }
}

/*============================
        CONTADOR VAGAS
============================*/
.contador-vagas{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    margin-top:20px;
    margin-bottom: 20px;
    padding:15px 20px;

    border:2px solid #f1b62e;
    border-radius:18px;

    background:rgba(0,0,0,.25);
}

.icone-foguete{
    width:70px;
    height:auto;
}

.texto-vagas{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    line-height:1;
}

.titulo-vagas{
    color:#fff;
    font-size:1rem;
    font-weight:700;
}

.numero-vagas{
    color:#f1b62e;
    font-size:3rem;
    font-weight:900;
}

/* Responsivo para celular */
@media (max-width: 480px) {
    .comunicado-data-box {
        padding: 12px;
    }

    .data-linha {
        gap: 10px;
    }

    .dia-evento {
        font-size: 2.5rem;
    }

    .mes-evento {
        font-size: 0.85rem;
    }

    .hora-evento {
        font-size: 0.85rem;
        padding-left: 20px;
    }
}

@media (max-width: 1024px) {

    .evento-comunicado {
        top: 90px;
        left: 40px;
    }

    .evento-card-comunicado {
        width: 320px;
    }
}

@media (max-width: 768px) {

    .evento-comunicado {
        position: absolute;

        left: 50%;
        transform: translateX(-50%);

        top: auto;
        bottom: 30px;

        width: 100%;
        display: flex;
        justify-content: center;
    }

    .evento-card-comunicado {
        width: min(92vw, 360px);

        padding: 20px;
        border-radius: 18px;
    }

    .comunicado-header h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .comunicado-header p {
        text-align: center;
        font-size: .92rem;
    }

    .dia-evento {
        font-size: 3rem;
    }

    .comunicado-item {
        font-size: .85rem;
    }
}

@media (max-width: 480px) {

    .evento-comunicado {
        bottom: 20px;
    }

    .evento-card-comunicado {
        width: 94vw;
        padding: 18px;
    }

    .logo-mini img {
        width: 52px;
    }

    .dia-evento {
        font-size: 2.5rem;
    }

    .hora-evento {
        font-size: .85rem;
        padding: 7px 12px;
    }

    .tag-evento {
        font-size: .65rem;
        padding: 6px 10px;
    }
}

/* ============================================
   VÍDEO COM TEXTO LADO A LADO
   ============================================ */
.video-container {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--black) 0%, var(--ink) 100%);
    border-bottom: 1px solid var(--line);
}

.video-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.48);
    border: 1px solid var(--line);
}

.video-wrapper iframe {
    width: 100%;
    height: 360px;
    display: block;
    border: none;
}

.video-badge {
    display: inline-block;
    background: rgba(240, 180, 41, 0.15);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(240, 180, 41, 0.3);
}

.video-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.video-info-description {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.video-duration {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.video-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--black);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 180, 41, 0.2);
}



/* ============================================
   CARDS DE PREÇO VERDE E GOLD
   ============================================ */

   

/* =========================
   CONTAINER DAS CAIXAS
========================= */
/* lado esquerdo */
.price-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* título */
.investment-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* grupo verde + gold */
.price-group {
    display: flex;
    gap: 20px;
}

.price-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: flex-end; /* alinha pela base */
}

/* =========================
   CARD PADRÃO (VERDE/GOLD)
========================= */
.price-card {
    width: 500px;
    min-width: 320px;
    min-height: 292px; /* menor altura */
    padding: 18px 24px;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza vertical */
    align-items: center; /* centraliza horizontal */
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* =========================
   VERDE
========================= */
.price-card.green {
    background: #dff7df;
    color: #1d5a1d;
    border: 3px solid #2e7d32;
}

/* =========================
   GOLD
========================= */
.price-card.gold {
    background: #fff3d4;
    color: #8b5e00;
    border: 3px solid #f1b62e;
}

/* =========================
   BADGES
========================= */
.green-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #43a047;
}

.gold-badge {
    display: inline-block;
    background: #f1b62e;
    color: black;
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #EBA80C;
}

/* =========================
   LABEL
========================= */
.price-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* =========================
   PREÇO
========================= */
.price-value {
    font-size: 4rem;
    font-weight: 800;
    color: #2e7d32;
    margin: 8px 0;
    line-height: 1;
}

.price-value-gold {
    font-size: 4rem;
    font-weight: 800;
    color: #f1b62e;
    margin: 8px 0;
    line-height: 1;
}

/* DECIMAIS */
.price-value .decimal,
.price-value-gold .decimal {
    font-size: 2rem;
    vertical-align: middle;
}

/* R$ */
.simbolo {
    font-size: 2rem;
    position: relative;
    top: -0.5em;
}

/* =========================
   TEXTO DOS CARDS
========================= */
.price-card p {
    font-size: 1.1rem;
    margin: 10px 0 0;
    line-height: 1.5;
    color: black;
    text-align: center;
}

/* Botões PIX */
.btn-pix-green,
.btn-pix-gold {
    width: 100%;
    margin-top: 20px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.btn-pix-green {
    background: linear-gradient(135deg, #00C853 0%, #009624 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.btn-pix-green:hover {
    background: linear-gradient(135deg, #00B84C 0%, #008020 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 200, 83, 0.4);
}

.btn-pix-gold {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-pix-gold:hover {
    background: linear-gradient(135deg, #FFC107 0%, #C8960E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.btn-pix-green:active,
.btn-pix-gold:active {
    transform: translateY(0);
}


/* =========================
   CARD PROGRAMAÇÃO
========================= */
.benefits-card {
    width: 500px;
    min-width: 320px;
    min-height: 292px;

    background: #051a33;
    border: 3px solid #1b4e87;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;

    display: flex;
    flex-direction: column;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* topo azul */
.programacao-header {
    background: #0059c9;
    color: white;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 8px;
    letter-spacing: .5px;
}

/* itens */
.program-item {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
    padding: 6px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    line-height: 1.1;
}

.program-item:last-child {
    border-bottom: none;
}

/* horário amarelo */
.hora {
    min-width: 82px;
    color: #f1b62e;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

/* textos */
.program-texto strong {
    color: white;
    font-size: 0.74rem;
    display: block;
}   

.program-texto small {
    display: inline;
    color: rgba(255,255,255,0.65);
    font-size: 0.65rem;
}

/* adiciona o hífen automaticamente */
.program-texto small::before {
    content: " - ";
}

/* =========================
   RESPONSIVIDADE BENEFITS CARD 
========================= */

@media (max-width: 768px) {

    .price-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .price-cards {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .price-card,
    .benefits-card {
        width: 100%;
        max-width: 500px;
        min-width: unset;
    }
}

@media(max-width: 768px) {

    .program-item {
        padding: 8px 10px;
        gap: 8px;
    }

    .hora{
        min-width: 75px;
        font-size: 0.68rem;
    }

    .program-texto strong{
    font-size: 12px;
    line-height: 1.2;

}

    .program-texto small{
        font-size: 0.60rem;
        white-space: normal;
    }
}

/* Celulares menores */
@media (max-width: 480px) {

    .benefits-card {
        border-width: 2px;
    }

    .programacao-header {
        font-size: 0.85rem;
        padding: 7px;
    }

    .hora {
        min-width: 68px;
        font-size: 0.62rem;
    }

    .program-texto strong {
        font-size: 0.65rem;
    }

    .program-texto small {
        font-size: 0.56rem;
    }
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 768px) {

    .price-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card,
    .benefits-card {
        width: 100%;
        max-width: 500px;
    }

    .price-value,
    .price-value-gold {
        font-size: 3.2rem;
    }

    .price-card p,
    .benefits-card li {
        font-size: 1rem;
    }
}

/* ==========================
   RESPONSIVIDADE PRICE CARD
========================== */

/* Tablet */
@media (max-width: 1024px) {

    .price-cards {
        gap: 16px;
        padding: 0 20px;
        
    }

    .price-card {
        min-width: 220px;
        max-width: 100%;
        padding: 18px;
    }

    .price-value,
    .price-value-gold {
        font-size: 2.5rem;
    }

    .price-value .decimal,
    .price-value-gold .decimal {
        font-size: 1.4rem;
    }

    .simbolo {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .price-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 16px;
    }

    .price-card {
        width: 100%;
        max-width: 420px;
        min-width: unset;
        padding: 20px 18px;
        border-radius: 14px;
    }

    .green-badge,
    .gold-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .price-value,
    .price-value-gold {
        font-size: 2.3rem;
    }

    .price-value .decimal,
    .price-value-gold .decimal {
        font-size: 1.2rem;
    }

    .simbolo {
        font-size: 1.3rem;
    }

    .price-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {

    .price-card {
        padding: 18px 14px;
    }

    .price-value,
    .price-value-gold {
        font-size: 2rem;
    }

    .price-value .decimal,
    .price-value-gold .decimal {
        font-size: 1rem;
    }

    .simbolo {
        font-size: 1.1rem;
    }

    .green-badge,
    .gold-badge {
        font-size: 0.68rem;
        padding: 5px 12px;
    }

    .price-card p {
        font-size: 0.85rem;
    }
}

/* ============================================
   FORMULÁRIO - COM LAYOUT DE 2 COLUNAS
   ============================================ */
.form-wrapper {
    max-width: 1700px;
    margin: 40px auto 60px;
    padding: 0 24px;
}

.indicacao-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--line);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    overflow: visible;
}

.form-split {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 0;
    align-items: stretch;
}

.form-fields {
    padding: 32px 20px;
}

.form-fields,
.form-security {
    width: 100%;
    min-width: 0;

}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 32px 24px;
    border-left: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.2);
}

/* Selo de Segurança Vertical */
.security-badge-vertical {
    text-align: center;
    padding: 20px 16px;
    width: 100%;
}

.security-icon {
    width: 100%;
    height: auto;
    margin-bottom: 16px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-left: auto;
    margin-right: auto;
}

.security-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.security-badge-vertical h3 {
    color: var(--muted);
    font-size: 1.5 rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.security-badge-vertical h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.security-badge-vertical h2 strong {
    color: var(--gold);
    font-weight: 900;
}

.security-badge-vertical p {
    color: var(--muted);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.security-check {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(240, 180, 41, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* Campos do Formulário */
.form-section-title {
    margin: 32px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: normal;

}

.form-section-title h2 {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
    display: none;
}

.form-group label {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input {
    padding: 14px 18px;
    background: rgba(2, 4, 10, 0.6);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.1);
    background: rgba(2, 4, 10, 0.8);
}

.form-group input:hover:not(:focus) {
    border-color: rgba(240, 180, 41, 0.4);
}

.form-group input[readonly] {
    background: rgba(2, 4, 10, 0.8);
    cursor: not-allowed;
    color: var(--muted);
}

.form-group input::placeholder {
    color: rgba(168, 183, 202, 0.5);
}

/* ==========================
   RECAPTCHA + SEGURANÇA
========================== */

.captcha-security-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    margin: 35px 0 20px;
    flex-wrap: wrap;
}

.recaptcha-group {
    margin: 0;
}

.security-mini {
    display: flex;
    align-items: center;
    gap: 14px;
}

.security-mini img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.security-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.security-text span {
    font-size: 0.8rem;
    color: #d8d8d8;
}

.security-text strong {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 800;
}

.security-check-mini {
    margin-top: 8px;
    display: inline-block;
    background: rgba(240, 180, 41, 0.15);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
}

/* Mobile */
@media (max-width: 768px) {
    .captcha-security-row {
        flex-direction: column;
        gap: 18px;
    }

    .security-mini {
        justify-content: center;
    }
}

/* Botões */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-submit{
    padding: 14px 200px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--black);
    box-shadow: 0 18px 44px rgba(240, 180, 41, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(240, 180, 41, 0.35);
}


.error-message {
    color: var(--red);
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 500;
}

/* ============================================
    CARD WHATSAPP
   ============================================ */
.card-whatsapp-info {
    max-width: 1650px;
    margin: 20px auto 0;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    background: #eef8ee;
    border: 2px solid #b9e0b9;
    border-radius: 14px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ícone WhatsApp */

/* texto */
.whatsapp-texto {
    flex: 1;
}

.whatsapp-texto h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1b5e20;
}

.whatsapp-texto p {
    margin: 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* ícone check */
.check-icon {
    width: 90px;
    min-width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #25D366;

    box-shadow: 0 4px 12px rgba(37,211,102,0.25);
}

/* ============================================
   RESPONSIVIDADE CARD WHATSAPP
============================================ */
@media (max-width: 768px) {

    .card-whatsapp-info {
        flex-direction: column;
        text-align: center;

        padding: 18px 15px;
        gap: 15px;
    }

    .whatsapp-texto h3 {
        font-size: 1rem;
    }

    .whatsapp-texto p {
        font-size: 0.95rem;
    }

    .check-icon {
        width: 75px;
        min-width: 75px;
        height: 75px;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {

    .card-whatsapp-info {
        padding: 15px 12px;
        border-radius: 10px;
    }

    .whatsapp-texto h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .whatsapp-texto p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .check-icon {
        width: 65px;
        min-width: 65px;
        height: 65px;
    }
}

/* ============================================
   MODAL DE SUCESSO
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 10, 0.95);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(180deg, rgba(9, 15, 27, 0.98), rgba(2, 4, 10, 0.98));
    border: 1px solid var(--gold);
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    padding: 24px;
    text-align: center;
}

.modal-header h2 {
    color: var(--black);
    margin: 0;
    font-size: 1.5rem;
}

.modal-body {
    padding: 32px;
    text-align: center;
}

.modal-body p {
    margin-bottom: 12px;
    color: var(--text);
}

.modal-footer {
    padding: 20px;
    text-align: center;
}

.btn-close-modal {
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--black);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* ============================================
   SEÇÃO HOME
   ============================================ */
section {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 92px 24px;
}

h2 {
    color: var(--text);
    font-size: clamp(2.1rem, 4.6vw, 4.6rem);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 34px;
}

h2::after {
   display: none;
}

.home {
    text-align: center;
}

.home h2 {
    font-size: clamp(5rem, 16vw, 12rem);
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--text), rgba(245, 187, 73, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home h2::after {
    display: none !important;
}

.home-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 26px);
}

.home-brand-mark {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 8px;
    border: 4px solid #f4b63f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-brand-mark img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
}

.destaque-home {
    color: var(--gold-soft);
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 950;
    letter-spacing: 0.12em;
    margin: 20px 0 34px;
}

.descricao-home-nova {
    max-width: 900px;
    margin: 0 auto 50px;
}

.descricao-home-nova p {
    color: #c8d7e8;
    font-size: 1.14rem !important;
    line-height: 1.75;
    margin-bottom: 12px;
}

.descricao-home-nova .destaque {
    color: var(--cyan);
    font-weight: 950;
}

/* ============================================
   PILARES
   ============================================ */
.pilares-novos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 58px 0 46px;
}

.pilar-novo {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0a0a0c 0%, #060608 100%) !important;
    border: 1px solid rgba(255, 191, 0, 0.28) !important;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    padding: 24px 20px 26px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pilar-novo:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 191, 0, 0.65) !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.46), 0 0 26px rgba(255, 191, 0, 0.16);
}

.pilar-icone-img {
    width: 132px !important;
    height: 132px !important;
    object-fit: contain !important;
    margin: 0 auto 20px;
    padding: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.36), rgba(0, 183, 255, 0.08) 64%, transparent 72%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.38));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pilar-novo:hover .pilar-icone-img {
    transform: translateY(-3px) scale(1.03);
}

.pilar-titulo-novo {
    display: block;
    color: #00c3ff;
    font-size: 1.08rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.pilar-desc-novo {
    display: block;
    color: #b9c8dc;
    font-size: 0.9rem;
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================
   FRASE FINAL
   ============================================ */
.frase-final {
    max-width: 960px;
    margin: 46px auto 0;
    padding: 30px;
    border-left: 6px solid var(--gold);
    background: linear-gradient(90deg, rgba(240, 180, 41, 0.16), rgba(0, 229, 255, 0.08));
    text-align: left;
}

.frase-final p {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.frase-final .frase-destaque {
    color: var(--text);
    font-size: clamp(1.3rem, 2.6vw, 2.2rem);
    line-height: 1.05;
    margin-top: 8px;
}

/* ============================================
   SEÇÃO SOBRE
   ============================================ */
#sobre {
    width: 100%;
    max-width: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.84)), url("Imagens/imagem_1.png") center / cover no-repeat !important;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sobre-container {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
    padding: 0 24px;
}

.sobre-container img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sobre-container .texto p {
    color: #c8d7e8;
    font-size: 1.04rem;
    margin-top: 15px !important;
}

/* ============================================
   SEÇÃO COMITÊ
   ============================================ */
#comite {
    scroll-margin-top: 90px;
}

.comite-img {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
}

/* ============================================
   CARROSSEL DE EMPRESAS
   ============================================ */
.carrossel-novo {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 58px;
}

.slides-container {
    display: flex;
    transition: transform 0.45s ease-in-out;
}

.slide-empresa {
    flex: 0 0 100%;
    padding: 10px;
}

@media (min-width: 768px) {
    .slide-empresa {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .slide-empresa {
        flex: 0 0 33.333%;
    }
}

.empresa-card-novo {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)), rgba(5, 11, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.empresa-card-novo:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.34);
}

.empresa-logo-novo {
    width: 100%;
    height: 190px;
    object-fit: cover;
    cursor: pointer;
    background: #111b2c;
}

.empresa-conteudo {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.empresa-nome-novo {
    font-size: 1.25rem;
    font-weight: 950;
    margin-bottom: 8px;
}

.empresa-descricao-novo {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.empresa-telefone-novo {
    align-self: flex-start;
    color: #07101e !important;
    background: linear-gradient(135deg, #ffd66b, #f4b63f) !important;
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(244, 182, 63, 0.22);
}

.empresa-telefone-novo:hover {
    background: linear-gradient(135deg, #ffe39a, #ffd66b) !important;
    color: #02040a !important;
}

.carrossel-btn-novo {
    position: absolute;
    top: auto;
    bottom: 0;
    transform: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(0, 195, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #00c3ff;
    font-size: 1.6rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.carrossel-btn-novo:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.22), rgba(255, 191, 0, 0.18));
    color: #ffffff;
    border-color: rgba(255, 191, 0, 0.42);
}

.btn-prev-novo {
    left: calc(50% - 52px);
}

.btn-next-novo {
    right: calc(50% - 52px);
}

.dots-novo {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.dot-novo {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
}

.dot-novo.ativo {
    width: 32px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.imagens-diferenciais {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.imagem-diferencial-item {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)), rgba(5, 11, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    padding: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.imagem-diferencial-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.34);
}

.imagem-diferencial-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
}

.imagem-diferencial-item span {
    display: block;
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.3;
    margin-top: 16px;
}

.diferencial-sub {
    color: var(--muted) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    margin-top: 8px !important;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    width: 100%;
    max-width: none;
    padding: 100px 24px;
    background: radial-gradient(circle at 24% 16%, rgba(0, 183, 255, 0.14), transparent 26rem),
                radial-gradient(circle at 78% 22%, rgba(244, 182, 63, 0.13), transparent 26rem),
                linear-gradient(135deg, #000000, #050914) !important;
    border-top: 1px solid var(--line);
}

.cta-card {
    width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
}

.cta-titulo {
    margin-bottom: 18px;
}

.cta-titulo::after {
    margin-left: auto;
    margin-right: auto;
}

.cta-descricao {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #c8d7e8;
    font-size: 1.12rem;
}

/* ============================================
   FOOTER / RODAPÉ
   ============================================ */
footer {
    background: #000000 !important;
    padding: 48px 24px 34px;
    border-top: 1px solid var(--line);
}

.footer-container {
    width: min(1240px, 100%);
    margin: 0 auto;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.footer-link {
    color: #d8e4f2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
    color: var(--cyan);
}

.footer-icon-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex: 0 0 26px;
    padding: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer-copyright {
    color: #7f90a8;
    font-size: 0.82rem;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-dev {
    color: #53647a;
    font-size: 0.72rem;
    margin-top: 10px;
}

/* ============================================
   MODAL DE IMAGEM E PLUZAPP
   ============================================ */
#modalImagem {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2, 4, 10, 0.94);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.fechar-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--text);
    font-size: 40px;
    font-weight: 900;
    cursor: pointer;
}

.pluz-modal {
    position: fixed;
    inset: 50% auto auto 50%;
    z-index: 10000;
    width: min(920px, calc(100% - 32px));
    height: min(760px, calc(100svh - 32px));
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #050914;
    box-shadow: var(--shadow);
    transform: translate(-50%, -50%);
}

.pluz-modal.ativo {
    display: flex;
}

.pluz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    color: var(--text);
    background: rgba(3, 5, 13, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 900;
}

.pluz-header button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.pluz-modal iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 980px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }
    
    .pilares-novos,
    .imagens-diferenciais {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }
    
    .video-container {
        padding: 40px 20px;
        margin-top: 70px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .video-info {
        text-align: center;
    }
    
    .video-info-title {
        font-size: 1.4rem;
    }
    
    .video-wrapper iframe {
        height: 220px;
    }
    
    .form-wrapper {
        margin: 90px auto 40px;
        padding: 0 16px;
    }
    
    .form-split {
        grid-template-columns: 1fr;
    }
    
    .form-fields {
        padding: 24px 30px;
    }
    
    .form-security {
        min-width: auto;
        border-left: none;
        border-top: 1px solid var(--line);
    }
    
    .security-badge-vertical {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-submit,
    .btn-reset {
        width: 100%;
        max-width: 500px;
        padding: 14px 24px;
    }
    
    section {
        padding: 70px 18px;
    }
    
    .sobre-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pilares-novos,
    .imagens-diferenciais {
        grid-template-columns: 1fr;
    }
    
    .home h2 {
        font-size: clamp(2.25rem, 16vw, 3.8rem) !important;
    }
    
    .home-brand-mark {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }
    
    .pilar-novo {
        display: grid;
        grid-template-columns: 76px 1fr;
        gap: 14px;
        align-items: center;
        text-align: left;
        padding: 18px;
    }
    
    .pilar-icone-img {
        width: 76px !important;
        height: 76px !important;
        margin: 0 !important;
    }
    
    .pilar-titulo-novo {
        margin: 0 0 5px;
    }
    
    .pilar-desc-novo {
        max-width: none;
    }
    
    .video-wrapper iframe {
        height: 180px;
    }
    
    .video-info-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Menu Hamburguer Mobile */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    z-index: 1202;
}

.hamburger-line {
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.hamburger-line:nth-child(1) { top: 14px; }
.hamburger-line:nth-child(2) { top: 21px; }
.hamburger-line:nth-child(3) { top: 28px; }

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: inline-flex;
    }
    
    .nav-links {
        position: fixed;
        top: 68px;
        right: 16px;
        z-index: 1201;
        width: min(320px, calc(100vw - 32px));
        max-height: calc(100svh - 88px);
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 12px;
        background: rgba(3, 5, 13, 0.96);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: flex !important;
        width: 100%;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        padding: 12px 14px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.055);
        font-size: 0.76rem;
        text-align: center;
    }
}

/*
    Estilo do campo Cupom do formulário
*/

.cupom-form-row{
    align-items: end;
}

.cupom-form-group{
    width: 100%;
}

.cupom-input-container{
    display: flex;
    gap: 10px;
    width: 100%;
}

.cupom-input-container input{
    flex: 1;
    min-width: 0;
    text-transform: uppercase;
}

.btn-aplicar-cupom {
    min-width: 110px;
    padding: 14px 18px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    background: rgba(240, 180, 41, 0.12);
    color: var(--gold);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-aplicar-cupom:hover:not(:disabled){
    background: var(--gold);
    color: var(--black);
}

.btn-aplicar-cupom:disabled{
    opacity: 0.6;
    cursor: wait;
}

.cupom-mensagem{
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 600;
}

.cupom-mensagem.sucesso{
    color: #4ade80;
}

.cupom-mensagem.erro{
    color: #ff5c75;
}

.cupom-resumo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(240, 180, 41, 0.35);
    border-radius: 10px;
    background: rgba(240, 180, 41, 0.08);
}

.cupom-resumo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

.cupom-resumo-item strong {
    color: var(--text);
}

.cupom-resumo-item.desconto strong {
    color: #4ade80;
}

.cupom-resumo-item.valor-final {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(240, 180, 41, 0.25);
}

.cupom-resumo-item.valor-final span {
    color: var(--gold);
    font-weight: 700;
}

.cupom-resumo-item.valor-final strong {
    color: var(--gold);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cupom-input-container {
        flex-direction: column;
    }

    .btn-aplicar-cupom {
        width: 100%;
    }
}
