/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#92A8D1;
    --primary-dark:#5D7198;

    --white:#ffffff;
    --light:#f6f8fc;
    --text:#2e3440;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;

    background:
    linear-gradient(180deg,#eef3fb 0%,#ffffff 100%);

    color:var(--text);

    overflow-x:hidden;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    position:fixed;

    width:100%;

    top:0;

    z-index:999;

    background:rgba(145, 168, 208, .45);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 5px 25px rgba(0,0,0,.12);
}

nav{
    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;
}

.logo{
    font-family:'Cormorant Garamond', serif;

    font-size:28px;

    color:white;

    letter-spacing:3px;

    font-weight:600;

    text-shadow:0 2px 10px rgba(0,0,0,.25);
}

.menu{
    display:flex;

    gap:35px;
}

.menu a{
    color:white;

    text-decoration:none;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1.5px;

    font-weight:600;

    transition:.3s;

    position:relative;
}

.menu a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:white;

    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}

/* =========================
   HERO
========================= */

.hero{

    min-height:75vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:white;

    padding-top:120px;
    padding-bottom:80px;

    padding-left:20px;
    padding-right:20px;
}

.hero-content{
    max-width:850px;
}

.hero h1{
    font-family:'Cormorant Garamond', serif;

    font-size:78px;

    line-height:1;

    margin-bottom:20px;
}

.hero p{
    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;
}

/* =========================
   BOTÕES
========================= */

.btn{
    display:inline-block;

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    color:white;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.35);

    backdrop-filter:blur(12px);

    transition:.3s;

    margin:5px;
}

.btn:hover{
    background:white;
    color:var(--primary-dark);
}

/* =========================
   SECTIONS
========================= */

section{
    padding:80px 0;
}

/* =========================
   TITULOS
========================= */

.section-title{
    text-align:center;

    margin-bottom:50px;
}

.section-title h2{
    font-family:'Cormorant Garamond', serif;

    font-size:54px;

    color:var(--primary-dark);

    margin-bottom:12px;
}

.section-title p{
    max-width:700px;

    margin:auto;

    color:#667085;

    line-height:1.9;

    font-size:15px;
}

/* =========================
   CONTAGEM
========================= */

.countdown{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:20px;
}

.count-card{

    background:white;

    border-radius:22px;

    padding:18px 10px;

    text-align:center;

    box-shadow:0 5px 18px rgba(0,0,0,.04);

    transition:.3s;
}

.count-card:hover{
    transform:translateY(-4px);
}

.count-card h3{

    font-size:42px;

    line-height:1;

    color:var(--primary-dark);

    margin-bottom:8px;

    font-weight:700;
}

.count-card span{

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:3px;

    color:#98a2b3;

    font-weight:600;
}

/* =========================
   HISTORIA
========================= */

.story{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:70px;

    align-items:center;
}

.story img{
    width:100%;

    border-radius:35px;

    object-fit:cover;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.story-content h3{
    font-family:'Cormorant Garamond', serif;

    font-size:52px;

    color:var(--primary-dark);

    margin-bottom:20px;
}

.story-content p{
    line-height:2;

    color:#667085;

    margin-bottom:18px;

    font-size:15px;
}

/* =========================
   CARROSSEIS
========================= */

.carousel-wrapper{
    width:100%;

    overflow:hidden;

    position:relative;
}

/* =========================
   PADRINHOS
========================= */

.padrinhos-carousel{
    display:flex;

    gap:25px;

    overflow:hidden;

    padding:10px 0 25px;

    cursor:grab;

    user-select:none;
}

.padrinhos-carousel:active{
    cursor:grabbing;
}

.padrinhos-carousel .groomsmen-card{

    min-width:260px;

    max-width:260px;

    flex-shrink:0;

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.padrinhos-carousel .groomsmen-card:hover{
    transform:translateY(-10px);
}

.padrinhos-carousel .groomsmen-card img{
    width:100%;

    height:320px;

    object-fit:cover;
}

/* =========================
   PRESENTES
========================= */

.presentes-carousel{
    display:flex;

    gap:25px;

    overflow:hidden;

    padding:10px 0 25px;

    cursor:grab;

    user-select:none;
}

.presentes-carousel:active{
    cursor:grabbing;
}

.presentes-carousel .gift-card{

    min-width:280px;

    max-width:280px;

    flex-shrink:0;

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.presentes-carousel .gift-card:hover{
    transform:translateY(-10px);
}

.presentes-carousel .gift-card img{
    width:100%;

    height:240px;

    object-fit:cover;
}

/* =========================
   CONTEÚDOS
========================= */

.groomsmen-content,
.gift-content{
    padding:22px;

    text-align:center;
}

.groomsmen-content h4,
.gift-content h3{
    color:var(--primary-dark);

    margin-bottom:12px;

    font-size:24px;
}

.groomsmen-content p,
.gift-content p{
    color:#667085;

    line-height:1.8;

    margin-bottom:20px;

    font-size:14px;
}

.price{
    font-size:26px;

    font-weight:600;

    color:var(--primary-dark);

    margin-bottom:20px;
}

.gift-btn{
    width:100%;

    border:none;

    background:var(--primary);

    color:white;

    padding:14px;

    border-radius:16px;

    cursor:pointer;

    transition:.3s;
}

.gift-btn:hover{
    background:var(--primary-dark);
}

/* =========================
   FOOTER
========================= */

footer{
    padding:60px 20px;

    text-align:center;

    background:var(--primary-dark);

    color:white;
}

footer h3{
    font-family:'Cormorant Garamond', serif;

    font-size:42px;

    margin-bottom:10px;
}

/* =========================
   IMAGENS
========================= */

img{
    -webkit-user-drag:none;

    user-select:none;

    pointer-events:none;
}

/* =========================
   RESPONSIVO
========================= */

@media(max-width:900px){

    .story{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:58px;
    }

    .countdown{
        grid-template-columns:repeat(2,1fr);
    }

    .menu{
        display:none;
    }

}

@media(max-width:768px){

    .count-card{
        padding:18px 12px;
    }

    .count-card h3{
        font-size:36px;
    }

    .padrinhos-carousel .groomsmen-card{
        min-width:220px;
        max-width:220px;
    }

    .presentes-carousel .gift-card{
        min-width:230px;
        max-width:230px;
    }

}

@media(max-width:600px){

    .hero h1{
        font-size:46px;
    }

    .section-title h2{
        font-size:42px;
    }

    .countdown{
        grid-template-columns:1fr;
    }

}

/* =========================
   CONFIRMAÇÃO
========================= */

.confirmacao-form{

    max-width:900px;

    margin:auto;

    background:white;

    padding:40px;

    border-radius:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:25px;
}

.form-grid input{

    width:100%;

    padding:16px 18px;

    border:1px solid #d0d5dd;

    border-radius:14px;

    outline:none;

    font-size:15px;
}

.confirmacao-box{

    background:white;

    padding:50px;

    border-radius:30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.confirmacao-box h3{

    font-size:32px;

    margin-bottom:15px;

    color:var(--primary-dark);
}

.confirmacao-box p{

    color:#667085;

    margin-bottom:25px;
}

.btn-confirmar{

    display:inline-block;

    background:var(--primary);

    color:white;

    padding:15px 30px;

    border-radius:14px;

    text-decoration:none;

    transition:.3s;
}

.btn-confirmar:hover{
    background:var(--primary-dark);
}
/* =========================
   CONFIRMAÇÃO PRESENÇA
========================= */

.confirmacao-form{

    max-width:950px;

    margin:auto;

    background:white;

    padding:40px;

    border-radius:32px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:25px;
}

/* =========================
   INPUTS
========================= */

.form-grid input{

    width:100%;

    padding:18px 20px;

    border:1px solid #d0d5dd;

    border-radius:16px;

    outline:none;

    font-size:15px;

    background:#f9fafb;

    transition:.3s;

    color:#344054;
}

.form-grid input:focus{

    border-color:var(--primary);

    background:white;

    box-shadow:0 0 0 4px rgba(146,168,209,.15);
}

.form-grid input::placeholder{
    color:#98a2b3;
}

/* =========================
   ACOMPANHANTES
========================= */

.acompanhante-box{

    margin-top:25px;

    background:#f8fafc;

    padding:28px;

    border-radius:24px;

    border:1px solid #eaecf0;

    animation:fadeIn .3s ease;
}

.acompanhante-box h4{

    margin-bottom:18px;

    color:var(--primary-dark);

    font-size:22px;

    font-weight:600;
}

/* =========================
   BOTÃO
========================= */

.confirmacao-form .gift-btn{

    width:100%;

    border:none;

    background:var(--primary);

    color:white;

    padding:18px;

    border-radius:18px;

    cursor:pointer;

    transition:.3s;

    font-size:16px;

    font-weight:600;

    margin-top:10px;
}

.confirmacao-form .gift-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);
}

/* =========================
   BOX BLOQUEIO PRESENTES
========================= */

.confirmacao-box{

    background:white;

    padding:55px;

    border-radius:32px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    max-width:850px;

    margin:auto;
}

.confirmacao-box h3{

    font-size:34px;

    margin-bottom:18px;

    color:var(--primary-dark);

    font-family:'Cormorant Garamond', serif;
}

.confirmacao-box p{

    color:#667085;

    margin-bottom:28px;

    line-height:1.8;
}

.btn-confirmar{

    display:inline-block;

    background:var(--primary);

    color:white;

    padding:16px 35px;

    border-radius:18px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;
}

.btn-confirmar:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);
}

/* =========================
   ERRO INPUT
========================= */

.form-grid input.erro{

    border:2px solid #ef4444;

    background:#fff5f5;
}

/* =========================
   ANIMAÇÃO
========================= */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
   RESPONSIVO
========================= */

@media(max-width:768px){

    .confirmacao-form{
        padding:28px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .confirmacao-box{
        padding:35px 25px;
    }

    .confirmacao-box h3{
        font-size:28px;
    }

}