/* =========================
GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* =========================
ROOT
========================= */

:root{
    --bg:#f6f2e8;
    --gold:#d3c9a0;
    --green:#22362b;
    --dark:#2f2922;
    --light:#ffffff;
    --soft:#efe8d7;
    --dark-section:#26352d;

    --shadow-soft:0 20px 50px rgba(0,0,0,.10);
    --shadow-strong:0 25px 60px rgba(0,0,0,.18);

    --radius-xl:28px;
    --radius-lg:24px;
    --radius-md:18px;

    --transition:.45s ease;
}

/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--dark);
    font-family:'Montserrat', sans-serif;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    transition:var(--transition);
}

/* =========================
MENU
========================= */

.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    background:rgba(246,242,232,.78);
    border-bottom:1px solid rgba(255,255,255,.12);
}

.topbar-inner{
    max-width:1400px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.logo img{
    max-height:90px;
    width:auto;
}

.menu{
    display:flex;
    align-items:center;
    gap:34px;
    flex-wrap:wrap;
}

.menu a{
    position:relative;
    text-decoration:none;
    color:var(--green);
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}

.menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:1px;
    background:var(--gold);
    transition:var(--transition);
}

.menu a:hover{
    color:var(--gold);
}

.menu a:hover::after{
    width:100%;
}

/* =========================
HERO
========================= */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-align:center;
    padding:140px 20px 80px;
}

.hero-bg{
    position:absolute;
    inset:0;
    background-image:url(https://orange-cheetah-676958.hostingersite.com/wp-content/uploads/2026/05/capa_lp.png);
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
    animation:heroMotion 16s ease-in-out infinite alternate;
}

@keyframes heroMotion{

    0%{
        transform:scale(1.03);
        opacity:.88;
    }

    50%{
        transform:scale(1.06);
        opacity:1;
    }

    100%{
        transform:scale(1.09);
        opacity:.92;
    }

}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.28),
        rgba(0,0,0,.58)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1100px;
}

.hero-title{
    font-family:'Big Caslon', serif;
    font-size:96px;
    color:white;
    letter-spacing:2px;
    line-height:.95;
    margin-bottom:12px;
}

.hero-subtitle{
    color:var(--gold);
    font-size:30px;
    margin-bottom:28px;
    font-style:italic;
    font-weight:300;
}

.hero-date{
    color:white;
    letter-spacing:3px;
    font-size:18px;
    margin-bottom:10px;
}

.hero-hour{
    color:var(--gold);
    font-size:14px;
    letter-spacing:2px;
}

/* =========================
COUNTDOWN
========================= */

.countdown{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.countdown-box{
    width:95px;
    height:95px;
    border-radius:24px;
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.12);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.countdown-number{
    font-size:30px;
    color:white;
    font-weight:700;
    line-height:1;
}

.countdown-label{
    margin-top:8px;
    font-size:10px;
    letter-spacing:2px;
    color:var(--gold);
    text-transform:uppercase;
}

/* =========================
SECTIONS
========================= */

.section{
    position:relative;
    padding:140px 40px;
}

.container{
    max-width:1380px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:90px;
}

.section-title h2{
    font-family:'Big Caslon', serif;
    font-size:42px;
    margin-bottom:12px;
    color:#212b25;
}

.section-title p{
    letter-spacing:2px;
    font-size:13px;
}

/* =========================
ANIMAÇÕES
========================= */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* =========================
LOTES
========================= */

.lote-section-light{
    background:#f7f4ec;
}

.lote-section-light .section-title h2,
.lote-section-light .section-title p,
.lote-section-light .lote-header h3,
.lote-section-light .lote-meta,
.lote-section-light .comentario{
    color:var(--green) !important;
}

.lote-section-dark{
    background:var(--dark-section);
}

.lote-section-dark .section-title h2,
.lote-section-dark .section-title p,
.lote-section-dark .lote-header h3,
.lote-section-dark .lote-meta{
    color:white;
}

.lote{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:start;
}

/* =========================
IMAGENS
========================= */

.main-image{
    border-radius:var(--radius-xl);
    overflow:hidden;
    box-shadow:var(--shadow-strong);
}

.main-image img{
    width:100%;
    height:auto;
    transition:1s ease;
}

.main-image:hover img{
    transform:scale(1.03);
}

.thumb-gallery{
    display:flex;
    gap:14px;
    margin-top:18px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:flex-start;
}
.thumb-gallery .video-embed{
    width:100%;
    margin-top:14px;
}
.thumb-gallery img{
    width:95px;
    height:95px;
    object-fit:cover;
    border-radius:14px;
    cursor:pointer;
    transition:var(--transition);
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.thumb-gallery img:hover{
    transform:scale(1.08);
}

/* =========================
INFO LOTE
========================= */

.lote-info{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.lote-header h3{
    font-family:'Big Caslon', serif;
    font-size:48px;
    line-height:1.1;
}

.lote-meta{
    font-size:13px;
    letter-spacing:1px;
    margin-top:10px;
    line-height:1.8;
}

/* =========================
GENEALOGIA
========================= */

.genealogia{
    background:white;
    padding:8px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

.genealogia img{
    width:100%;
}

/* =========================
COMENTÁRIO
========================= */

.comentario{
    background:rgba(255,255,255,.70);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    padding:34px;
    border-radius:24px;
    line-height:2;
    font-size:13px;
    color:var(--green);
    box-shadow:var(--shadow-soft);
}

.lote-section-dark .comentario{
    background:rgba(255,255,255,.08);
    color:white;
}

/* =========================
VIDEO
========================= */

.video-embed{
    position:relative;
    width:100%;
    max-width:320px;
    padding-top:56%;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.video-embed iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

/* =========================
BOTÃO LANCE
========================= */

.bid-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px 30px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--gold),
        #c1b27e
    );
    color:var(--green);
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    transition:var(--transition);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.bid-btn:hover{
    transform:translateY(-4px);
    background:linear-gradient(
        135deg,
        #dfd2a2,
        #bca96b
    );
}

/* =========================
PDF BUTTON
========================= */

.pdf-button-wrapper{
    display:flex;
    justify-content:center;
    margin-top:20px;
}

.pdf-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:22px 40px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--green),
        #2f4a3b
    );
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    overflow:hidden;
    transition:var(--transition);
    box-shadow:0 18px 40px rgba(34,54,43,.22);
}

.pdf-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.22),
        transparent
    );
    transition:.7s;
}

.pdf-btn:hover{
    transform:translateY(-4px);
    background:linear-gradient(
        135deg,
        #2d4738,
        var(--gold)
    );
}

.pdf-btn:hover::before{
    left:140%;
}

/* =========================
CONTATOS
========================= */

.contatos{
    background:url('FUNDO-CONTATOS.jpg') center center/cover no-repeat;
    position:relative;
}

.contatos-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.contatos-content{
    position:relative;
    z-index:2;
}

.contato-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.contato-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.10);
    padding:34px;
    border-radius:28px;
    text-align:center;
    transition:var(--transition);
}

.contato-card:hover{
    transform:translateY(-8px);
}

.contato-foto{
    width:100px;
    height:100px;
    border-radius:50%;
    overflow:hidden;
    margin:0 auto 18px;
}

.contato-foto img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.contato-card h4{
    color:white;
    margin-bottom:10px;
    font-weight:600;
}

.contato-card a{
    color:var(--gold);
    text-decoration:none;
    font-size:14px;
}

/* =========================
GALERIA
========================= */

.gallery-section{
    background:#f3ede0;
}

.gallery-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.gallery-carousel{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:10px;
    width:100%;
}

.gallery-carousel::-webkit-scrollbar{
    display:none;
}

.gallery-carousel img{
    width:420px;
    height:580px;
    object-fit:cover;
    border-radius:28px;
    flex-shrink:0;
    cursor:pointer;
    transition:var(--transition);
    box-shadow:var(--shadow-soft);
}

.gallery-carousel img:hover{
    transform:scale(1.03);
}

.gallery-arrow{
    position:absolute;
    z-index:10;
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:white;
    cursor:pointer;
    font-size:28px;
    color:var(--green);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.gallery-arrow.left{
    left:-10px;
}

.gallery-arrow.right{
    right:-10px;
}

/* =========================
LIGHTBOX
========================= */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    padding:20px;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:90%;
    max-height:90vh;
    border-radius:24px;
}

.close-lightbox{
    position:absolute;
    top:30px;
    right:40px;
    color:white;
    font-size:44px;
    cursor:pointer;
}

/* =========================
REGULAMENTO
========================= */

.regulamento-section{
    background:#efe6d4;
}

.accordion{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.accordion-header{
    padding:30px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:var(--green);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .6s ease;
    padding:0 30px;
}

.accordion-content p{
    padding-bottom:30px;
    line-height:2;
    color:var(--green);
    font-size:14px;
}

/* =========================
FOOTER
========================= */

footer{
    padding:50px 20px;
    text-align:center;
    background:#e7dcc5;
    font-size:13px;
    color:#6f6658;
    line-height:2;
}

/* =========================
RESPONSIVO
========================= */
@media(max-width:980px){

}
@media(max-width:1100px){

    .lote{
        grid-template-columns:1fr;
        gap:50px;
    }

}

@media(max-width:980px){

    .hero-title{
        font-size:64px;
    }

    .hero-subtitle{
        font-size:24px;
    }

    .topbar-inner{
        flex-direction:column;
        justify-content:center;
    }

    .menu{
        justify-content:center;
        gap:18px;
    }

    .section{
        padding:110px 28px;
    }

    .gallery-carousel img{
        width:320px;
        height:460px;
    }

    .gallery-arrow{
        display:none;
    }

}

@media(max-width:640px){

    .hero{
        padding-top:180px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-subtitle{
        font-size:20px;
    }

    .hero-date{
        font-size:15px;
    }

    .section{
        padding:90px 20px;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
    }

    .lote-header h3{
        font-size:38px;
    }

    .comentario{
        padding:26px;
        font-size:13px;
        line-height:1.9;
    }

    .gallery-carousel img{
        width:280px;
        height:400px;
    }

    .thumb-gallery{
        justify-content:center;
    }

    .thumb-gallery img{
        width:72px;
        height:72px;
    }

    .video-embed{
        max-width:100%;
    }

    .countdown{
        gap:10px;
    }

    .countdown-box{
        width:72px;
        height:72px;
        border-radius:18px;
    }

    .countdown-number{
        font-size:22px;
    }

    .countdown-label{
        font-size:8px;
    }

    .accordion-header{
        font-size:15px;
        padding:24px;
    }

    .accordion-content{
        padding:0 24px;
    }

}

@media(max-width:480px){

    .menu a{
        font-size:9px;
        letter-spacing:1px;
    }

    .hero-title{
        font-size:36px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .gallery-carousel img{
        width:240px;
        height:340px;
    }

    .bid-btn,
    .pdf-btn{
        width:100%;
        text-align:center;
    }
@media screen and (max-width:980px){

.hero{
    height:auto;
    min-height:100vh;
    padding-top:140px;
    padding-bottom:80px;
}

.hero-bg{
    background-size:contain !important;
    background-position:center top !important;
    background-repeat:no-repeat !important;
    background-color:#22362b;
}

}

@media screen and (max-width:640px){

.hero-title{
    font-size:38px;
}

.hero-subtitle{
    font-size:22px;
}

.hero-date{
    font-size:14px;
}

.hero-bg{
    background-size:contain !important;
    background-position:center top !important;
}

}
}
/* =========================
PATROCINADORES
========================= */

.patrocinadores-section{
    background:#f7f4ec;
}

.patrocinadores-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:50px;
    max-width:1200px;
    margin:auto;
}

.patrocinadores-grid img{
    max-width:180px;
    width:100%;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.85;
    transition:.4s ease;
}

.patrocinadores-grid img:hover{
    filter:grayscale(0%);
    opacity:1;
    transform:scale(1.05);
}