:root{

/* Paleta principal */
--cupido-blue: #0D1F47;
--cupido-red: #E44152;
--cupido-pink: #F6D9E3;
--cupido-white: #FFFFFF;
--cupido-gray: #F7F8FB;
--cupido-text: #162849;

/* Compatibilidade com o CSS atual */
--navy: var(--cupido-blue);
--navy-2: #18294f;
--pink: var(--cupido-pink);
--red: var(--cupido-red);
--white: var(--cupido-white);
--gray: var(--cupido-gray);
--text: var(--cupido-text);
--muted: #66758b;
--line: #d9e0ea;
--radius: 22px;
--shadow: 0 10px 28px rgba(16,30,64,.06);

}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,Arial,Helvetica,sans-serif;
    background:var(--gray);
    color:var(--text);
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.wrap{
    width:min(1120px,calc(100% - 32px));
    margin:0 auto;
}

/* TOPO */
.topbar{
    background:#FFF0F5;
    color:var(--text);
    position:sticky;
    top:0;
    z-index:50;
}

.topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    gap:18px;
}

.brand{
    font-weight:800;
    font-size:1.2rem;
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--red);
}

.nav{
    display:flex;
    gap:4px;
    align-items:center;
}

.nav a{
    padding:8px 10px;
    border-radius:999px;
    color:var(--text);
    transition:.2s ease;
    white-space:nowrap;
    font-size:0.95rem;
}

.nav a:hover,
.nav a.active{
    background:rgba(0,0,0,.08);
}

/* BOTÕES */
.btn,
.btn-outline,
button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 18px;
    border-radius:999px;
    border:0;
    font-weight:700;
    cursor:pointer;
    font-family:inherit;
    transition:.25s ease;
}

.btn{
    background:var(--red);
    color:#fff;
}

.btn:hover{
    background:#bf3141;
}

.btn-outline{
    background:transparent;
    border:1px solid var(--navy);
    color:var(--navy);
}

.btn-outline:hover{
    background:rgba(13,31,71,.06);
}

/* GERAIS */
.section{
    padding:36px 0 52px;
}

.card{
    background:#FFF0F5;
    color:var(--text);
    border-radius:var(--radius);
    padding:22px;
    box-shadow:var(--shadow);
}

.form-card{
    max-width:980px;
    margin:0 auto;
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

h1,h2,h3{
    margin:0 0 12px;
}

p{
    line-height:1.6;
}

.meta{
    color:var(--muted);
    font-size:.95rem;
}

.list-clean{
    padding-left:18px;
}

label{
    display:block;
    margin:14px 0 8px;
    font-weight:700;
}

input,
textarea,
select{
    width:100%;
    padding:13px 14px;
    border-radius:14px;
    border:1px solid var(--line);
    background:#fff;
    font:inherit;
}

textarea{
    min-height:120px;
    resize:vertical;
}

.notice-ok{
    background:#ebfff3;
    color:#0f7a3b;
    padding:12px 14px;
    border-radius:12px;
    margin-bottom:16px;
}

.notice-err{
    background:#fff0f2;
    color:#b42333;
    padding:12px 14px;
    border-radius:12px;
    margin-bottom:16px;
}

.small{
    font-size:.9rem;
    color:var(--muted);
}

.table{
    width:100%;
    border-collapse:collapse;
}

.table th,
.table td{
    padding:12px;
    border-bottom:1px solid var(--line);
    text-align:left;
    vertical-align:top;
}

.thumb-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.thumb{
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--line);
}

/* FOOTER */
.footer{
    padding:24px 0;
    background:var(--navy);
    color:#fff;
    margin-top:40px;
}

/* HERO SLIDER */
.hero-slider-clean{
    position:relative;
    height:78vh;
    min-height:520px;
    max-height:760px;
    overflow:hidden;
    background:#0d1f47;
}

.hero-slides{
    position:relative;
    width:100%;
    height:100%;
}

.hero-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    visibility:hidden;
    transition:opacity .7s ease, visibility .7s ease;
}

.hero-slide.is-active{
    opacity:1;
    visibility:visible;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, rgba(8,18,45,.88) 0%, rgba(8,18,45,.60) 45%, rgba(8,18,45,.35) 100%);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
}

.hero-box{
    max-width:760px;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:var(--pink);
    color:var(--navy);
    padding:8px 14px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:18px;
}

.hero-box h1{
    font-size:4rem;
    line-height:1.02;
    margin:0 0 16px;
    color:#fff;
    max-width:760px;
}

.hero-box p{
    font-size:1.15rem;
    line-height:1.6;
    color:rgba(255,255,255,.94);
    margin:0 0 18px;
    max-width:680px;
}

.hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:26px 0;
}

.hero-meta span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    padding:11px 16px;
    color:#fff;
    font-weight:600;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:8px;
}

.btn-main{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--red);
    color:#fff;
    padding:15px 30px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 8px 20px rgba(228,65,82,.35);
    transition:.25s ease;
    border:none;
}

.btn-main:hover{
    background:#c93545;
    transform:translateY(-1px);
}

.btn-outline-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    background:rgba(255,255,255,.06);
    transition:.25s ease;
}

.btn-outline-light:hover{
    background:rgba(255,255,255,.16);
}

.hero-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    color:#fff;
    font-size:1.3rem;
    cursor:pointer;
}

.hero-nav.prev{
    left:20px;
}

.hero-nav.next{
    right:20px;
}

.hero-dots{
    position:absolute;
    left:50%;
    bottom:26px;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    gap:10px;
}

.hero-dot{
    width:12px;
    height:12px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    cursor:pointer;
}

.hero-dot.is-active{
    background:var(--red);
}

/* FAIXA DO EVENTO */
.home-event-bar{
    background:#fff;
    padding:34px 0;
    box-shadow:0 8px 24px rgba(16,30,64,.06);
}

.home-event-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.home-event-bar small{
    display:block;
    color:var(--red);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:8px;
}

.home-event-bar h2{
    margin:0 0 8px;
    color:var(--text);
}

.home-event-bar p{
    margin:0;
    color:var(--muted);
}

/* GALERIA */
.gallery-section{
    padding:68px 0;
    background:#f4f6fa;
}

.gallery-head{
    margin-bottom:24px;
}

.section-kicker{
    display:inline-block;
    color:var(--red);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:.8rem;
    margin-bottom:8px;
}

.section-kicker.light{
    color:#ffd6de;
}

.gallery-head h2,
.home-cta h2{
    margin:0;
    color:var(--text);
    font-size:2.2rem;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.gallery-card{
    border-radius:20px;
    overflow:hidden;
    background:#FFF0F5;
    box-shadow:0 10px 28px rgba(16,30,64,.06);
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.empty-box{
    background:#FFF0F5;
    padding:24px;
    border-radius:20px;
}

/* CTA FINAL */
.home-cta{
    background:var(--navy);
    color:#fff;
    padding:70px 0;
}

.home-cta-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.home-cta h2{
    color:#fff;
}

.cta-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

/* SEÇÃO INFORMATIVA HOME */
.ec-home-info{
    padding:64px 0;
    background:var(--gray);
}

.ec-home-info-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.ec-home-card{
    background:#FFF0F5;
    border-radius:18px;
    padding:26px;
    box-shadow:0 8px 24px rgba(16,30,64,.06);
}

.ec-home-card h3{
    margin:0 0 10px;
    color:var(--text);
}

.ec-home-card p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
}

.ec-home-intro{
    margin-bottom:24px;
}

.ec-home-intro h2{
    margin:0 0 10px;
    color:var(--text);
    font-size:2rem;
}

.ec-home-intro p{
    margin:0;
    color:var(--muted);
    max-width:760px;
}

/* RESPONSIVO */
@media (max-width: 920px){
    .hero-box h1{
        font-size:2.6rem;
    }

    .hero-nav{
        display:none;
    }

    .home-event-bar-inner,
    .home-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .gallery-grid,
    .grid-2,
    .grid-3,
    .thumb-grid,
    .ec-home-info-grid{
        grid-template-columns:1fr;
    }

    .nav{
        display:none;
    }
}

/* =========================
   MENU MOBILE
========================= */

body{
    overflow-x:hidden;
}

.nav-toggle{
    display:none;
    width:44px;
    height:44px;
    min-width:44px;
    max-width:44px;
    padding:0;
    border:none;
    background:transparent;
    box-shadow:none;
    appearance:none;
    -webkit-appearance:none;
    cursor:pointer;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
}

.nav-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:var(--text);
    border-radius:999px;
}

@media (max-width: 920px){
    .topbar-inner{
        position:relative;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px;
    }

    .brand{
        flex:1 1 auto;
        min-width:0;
    }

    .nav-toggle{
        display:flex;
        flex:0 0 44px;
    }

    .nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:#FFF0F5;
        padding:14px;
        border-radius:0 0 16px 16px;
        box-shadow:0 10px 30px rgba(0,0,0,.18);
        z-index:9999;
        flex-direction:column;
        gap:10px;
    }

    .nav.is-open{
        display:flex;
    }

    .nav a{
        display:block;
        width:100%;
        padding:12px 14px;
        border-radius:12px;
    }

    .hero-box h1{
        font-size:2.6rem;
    }

    .hero-nav{
        display:none;
    }

    .home-event-bar-inner,
    .home-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .gallery-grid,
    .grid-2,
    .grid-3,
    .thumb-grid,
    .ec-home-info-grid{
        grid-template-columns:1fr;
    }
}