/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    color:#333;
    background:#faf8f3;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================
   CORES
========================== */

:root{

    --gold:#c6aa70;
    --gold-dark:#b19256;

    --dark:#161616;

    --light:#faf8f3;

    --white:#ffffff;

    --border:#e8e1d4;

}

/* ==========================
   GERAL
========================== */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--gold);
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
}

.section-title h2{
    margin-top:15px;

    font-size:52px;

    font-family:'Cormorant Garamond',serif;

    font-weight:600;
}

.center{
    text-align:center;
}

/* ==========================
   BOTÕES
========================== */

.btn{

    background:var(--gold);

    color:white;

    padding:15px 35px;

    border-radius:4px;

    transition:.3s;

    display:inline-block;
}

.btn:hover{

    background:var(--gold-dark);

}

.btn-outline{

    border:1px solid white;

    color:white;

    padding:15px 35px;

    display:inline-block;

    transition:.3s;
}

.btn-outline:hover{

    background:white;

    color:black;

}

/* ==========================
   HEADER
========================== */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: .3s;
}

header.scrolled{
    background: rgba(0,0,0,.95);
    box-shadow: 0 2px 15px rgba(0,0,0,.3);
}


header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;
	background:#000;
}

header.scroll{



    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:100px;
}

.logo img{

    height:80px;
}

.menu{

    display:flex;

    gap:35px;
}

.menu a{

    color:#FFF;

    font-size:14px;

    font-weight:500;

    transition:.3s;
}

header.scroll .menu a{

    color:#FFF;
}

.menu a:hover{

    color:var(--gold);
}

/* ==========================
   MENU MOBILE
========================== */

.menu-btn{

    display:none;

    border:none;

    background:none;

    font-size:32px;

    cursor:pointer;
}

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:280px;

    height:100vh;

    background:white;

    z-index:9999;

    display:flex;

    flex-direction:column;

    padding:100px 30px;

    gap:25px;

    transition:.4s;
}

.mobile-menu.active{

    right:0;
}

.mobile-menu a{

    color:#222;

    font-size:18px;
}

/* ==========================
   HERO
========================== */

.hero{

    height:90vh;

    min-height:700px;

    background:url('../img/banner2.jpg');

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    align-items:center;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);
}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    max-width:700px;
}

.hero-logo{

    display:block;

    margin:0 auto 30px auto;

    max-width:280px;
}


.subtitle{

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;
}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:78px;

    line-height:1.1;

    margin:20px 0;
}

.hero p{

    font-size:20px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:15px;
}


/* ======================================
   SOBRE A VINÍCOLA
====================================== */

.page-header{

    padding:140px 0 40px;

    text-align:center;
}

.page-header h1{

    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    color:#222;
}

/* ======================================
   TEXTO
====================================== */

.texto-section{

    max-width:1200px;

    margin:auto;

    padding-bottom:80px;
}

.texto-section p{

    font-size:16px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

    text-align:justify;
}

/* ======================================
   GALERIA
====================================== */

.galeria{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:40px;
}

.galeria img{

    height:200px;

    max-width:300px;

    object-fit:cover;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.galeria img:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* =========================
   LIGHTBOX
========================= */

.lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    z-index:99999;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.lightbox.show{

    display:flex;

}

.lightbox img{

    max-width:95%;

    max-height:90vh;

    border-radius:10px;

    box-shadow:0 0 40px rgba(0,0,0,.5);

    animation:zoomLightbox .25s ease;

}

#fecharLightbox{

    position:absolute;

    top:20px;

    right:30px;

    color:#fff;

    font-size:50px;

    cursor:pointer;

    line-height:1;

    transition:.3s;

}

#fecharLightbox:hover{

    color:#c9ab6a;

}

@keyframes zoomLightbox{

    from{

        opacity:0;
        transform:scale(.9);

    }

    to{

        opacity:1;
        transform:scale(1);

    }

}

/* ======================================
   RESPONSIVO
====================================== */

@media(max-width:768px){

    .page-header{

        padding:120px 0 30px;
    }

    .page-header h1{

        font-size:48px;
    }

    .galeria{

        gap:15px;
    }

    .galeria img{

        width:100%;

        max-width:100%;

        height:220px;
    }

}



/* ==========================
   PRODUTOS
========================== */

.produtos-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.produto-card{

    background:white;

    border:1px solid var(--border);

    padding:25px;

    text-align:center;

    transition:.3s;
}

.produto-card:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.produto-card img{

    height:320px;

    margin:auto;

    object-fit:contain;
}

.produto-card h3{

    margin-top:20px;

    font-family:'Cormorant Garamond';

    font-size:30px;
}

/* ==========================
   SOBRE
========================== */

.sobre-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.sobre-grid h2{

    font-family:'Cormorant Garamond';

    font-size:52px;

    margin-bottom:25px;
}

.sobre-grid p{

    line-height:1.8;

    margin-bottom:20px;
}

/* ==========================
   DIFERENCIAIS
========================== */

.diferenciais{

    background:white;
}

.diferenciais-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.item{

    text-align:center;

    padding:40px 20px;
}

.icone{

    font-size:50px;

    margin-bottom:15px;
}

/* ==========================
   GALERIA
========================== */

.galeria-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;
}

.galeria-grid img{

    width:100%;

    height:300px;

    object-fit:cover;

    cursor:pointer;

    transition:.4s;
}

.galeria-grid img:hover{

    transform:scale(1.03);
}

/* ==========================
   CTA
========================== */

.cta{

    background:var(--dark);

    color:white;

    text-align:center;
}

.cta h2{

    font-family:'Cormorant Garamond';

    font-size:60px;

    margin-bottom:30px;
}

/* ==========================
   FOOTER
========================== */

footer{

    background:#111;

    color:white;

    padding:80px 0 30px;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;
}

.footer-logo{

    height:90px;

    margin-bottom:20px;
}

footer h4{

    margin-bottom:15px;
}

footer a{

    color:#ddd;
}

footer li{

    margin-bottom:10px;
}

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.1);
}

/* ==========================
   WHATSAPP
========================== */

.whatsapp{

    position:fixed;

    bottom:25px;

    right:25px;

    background:#25D366;

    color:white;

    padding:15px 20px;

    border-radius:50px;

    font-weight:600;

    z-index:999;
}

/* ==========================
   RESPONSIVO
========================== */

@media(max-width:992px){

    .produtos-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .sobre-grid{

        grid-template-columns:1fr;
    }

    .diferenciais-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .menu{

        display:none;
    }

    .menu-btn{

        display:block;

        color:white;
    }

    header.scroll .menu-btn{

        color:white;
    }

    .hero{

        min-height:600px;
    }

    .hero h1{

        font-size:48px;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .produtos-grid{

        grid-template-columns:1fr;
    }

    .diferenciais-grid{

        grid-template-columns:1fr;
    }

    .galeria-grid{

        grid-template-columns:1fr;
    }

    .section-title h2{

        font-size:40px;
    }

    .cta h2{

        font-size:40px;
    }

}

/* ======================================
   PÁGINA PRODUTOS
====================================== */

.page-header{

    padding:140px 0 60px;

    text-align:center;
}

.page-header h1{

    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    margin-bottom:10px;
}

.page-header p{

    max-width:700px;

    margin:auto;

    color:#666;
}

/* ======================================
   FILTROS
====================================== */

.filtros{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;
}

.filtro-btn{

    padding:14px 28px;

    border:1px solid #c6aa70;

    background:#fff;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

    letter-spacing:.5px;
}

.filtro-btn:hover,
.filtro-btn.ativo{

    background:#c6aa70;

    color:#fff;
}

.descricao-categoria{

    text-align:center;

    max-width:900px;

    margin:0 auto 40px;

    line-height:1.8;

    color:#555;
}

/* ======================================
   PRODUTOS
====================================== */

.produtos-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-bottom:80px;
}

.produto-card{

    background:#fff;

    border:1px solid #ececec;

    padding:25px;

    text-align:center;

    cursor:pointer;

    transition:.35s;
}

.produto-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.produto-card img{

    height:350px;

    object-fit:contain;

    margin:auto;
}

.produto-card h3{

    margin-top:20px;

    font-family:'Cormorant Garamond', serif;

    font-size:30px;
}

/* ======================================
   MODAL
====================================== */

.produto-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:none;

    justify-content:center;

    align-items:center;

    padding:30px;

    z-index:99999;
}

.produto-modal.show{

    display:flex;

    animation:fadeIn .3s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

.produto-modal-content{

    background:#fff;

    width:100%;

    max-width:1200px;

    max-height:90vh;

    overflow-y:auto;

    border-radius:12px;

    padding:40px;

    position:relative;
}

.fechar-modal{

    position:absolute;

    top:15px;

    right:25px;

    font-size:42px;

    cursor:pointer;

    color:#333;
}

/* ======================================
   DETALHES PRODUTO
====================================== */

.produto-detalhes{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;
}

.produto-detalhes img{

    width:100%;

    max-height:850px;

    object-fit:contain;
}

#modalNome{

    font-family:'Cormorant Garamond', serif;

    font-size:56px;

    margin-bottom:15px;
}

#modalDescricao{

    line-height:1.2;

    margin-bottom:25px;

    color:#555;
}

/* ======================================
   BLOCOS INFORMAÇÕES
====================================== */

.info-bloco{

    margin-bottom:18px;
}

.info-titulo{

    font-weight:700;

    text-transform:uppercase;

    color:#c6aa70;

    border-bottom:1px solid #c6aa70;

    padding-bottom:4px;

    margin-bottom:8px;

    letter-spacing:1px;
}

.info-texto{

    line-height:1.7;

    color:#444;
}

/* ======================================
   BOTÕES
====================================== */

.modal-botoes{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:30px;
}

.modal-botoes .btn{

    min-width:220px;

    text-align:center;
}

/* ======================================
   SCROLL
====================================== */

.produto-modal-content::-webkit-scrollbar{

    width:8px;
}

.produto-modal-content::-webkit-scrollbar-thumb{

    background:#c6aa70;
}

/* ======================================
   RESPONSIVO TABLET
====================================== */

@media(max-width:992px){

    .produtos-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .produto-detalhes{

        grid-template-columns:1fr;
    }

    #modalNome{

        font-size:44px;
    }

}

/* ======================================
   RESPONSIVO MOBILE
====================================== */

@media(max-width:768px){

    .page-header h1{

        font-size:48px;
    }

    .produtos-grid{

        grid-template-columns:1fr;
    }

    .produto-card img{

        height:220px;
    }

    #modalNome{

        font-size:36px;
    }

    .produto-modal-content{

        padding:25px;
    }

    .modal-botoes{

        flex-direction:column;
    }

    .modal-botoes .btn{

        width:100%;
    }

}


/* ======================================
   ONDE ENCONTRAR
====================================== */

.page-header{

    padding:140px 0 60px;

    text-align:center;
}

.page-header h1{

    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    margin-bottom:15px;
}

.page-header p{

    max-width:700px;

    margin:auto;

    color:#666;
}

/* ======================================
   MAPA
====================================== */

.mapa-container{

    margin-bottom:80px;
}

#map{

    height:700px;

    width:100%;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.leaflet-container{

    border-radius:15px;
}

/* ======================================
   TOOLTIP
====================================== */

.leaflet-tooltip{

    background:#111;

    color:#fff;

    border:none;

    border-radius:8px;

    padding:8px 14px;

    font-size:14px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/* ======================================
   MODAL
====================================== */

.modal-local{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.8);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

    padding:20px;
}

.modal-local.show{

    display:flex;

    animation:fadeIn .3s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

.modal-local-content{

    background:#fff;

    width:100%;

    max-width:900px;

    max-height:85vh;

    overflow-y:auto;

    border-radius:12px;

    padding:40px;

    position:relative;
}

.fechar-modal{

    position:absolute;

    right:20px;

    top:20px;

    font-size:40px;

    cursor:pointer;
}

/* ======================================
   CIDADE
====================================== */

.cidade-titulo{

    font-family:'Cormorant Garamond', serif;

    font-size:52px;

    margin-bottom:25px;
}

.cidade-modal-content{


    overflow-y: auto;

    padding-right: 10px;

}

.cidade-modal-content::-webkit-scrollbar{

    width: 10px;

}

.cidade-modal-content::-webkit-scrollbar-track{

    background: #f2f2f2;

    border-radius: 10px;

}

.cidade-modal-content::-webkit-scrollbar-thumb{

    background: #c9ab6a;

    border-radius: 10px;

}

/* ======================================
   FORNECEDORES
====================================== */

.fornecedor{

    padding:20px 0;

    border-bottom:1px solid #ececec;
}

.fornecedor:last-child{

    border:none;
}

.fornecedor-nome{

    font-size:22px;

    font-weight:700;

    text-decoration:underline;

    color:#c6aa70;

    margin-bottom:10px;
}

.fornecedor-endereco{

    margin-bottom:6px;

    color:#444;
}

.fornecedor-telefone{

    margin-bottom:10px;

    color:#444;
}

.fornecedor-links{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.fornecedor-links a{

    color:#000;

    text-decoration:none;

    font-weight:600;
}

/* ======================================
   RESPONSIVO
====================================== */

@media(max-width:992px){

    #map{

        height:600px;
    }

}

@media(max-width:768px){

    .page-header h1{

        font-size:48px;
    }

    #map{

        height:500px;
    }

    .cidade-titulo{

        font-size:36px;
    }

    .modal-local-content{

        padding:25px;
    }

}

.footer-logo{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.footer-logo img{

    max-width:180px;

    height:auto;

    margin-bottom:15px;

}

.galeria-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

    margin:40px 0;

}

.galeria-grid img{

    height:250px;

    width:auto;

    max-width:100%;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    object-fit:cover;

    box-shadow:0 4px 15px rgba(0,0,0,.12);

}

.galeria-grid img:hover{

    transform:scale(1.03);

}

@media(max-width:768px){

    .galeria-grid img{

        height:180px;

    }

}

.galeria-link{

    text-align:center;

    margin:40px 0;

}

.galeria-link .btn{

    display:inline-block;

    background:#c9ab6a;

    color:#fff;

    padding:15px 35px;

    border-radius:4px;

    text-decoration:none;

    transition:.3s;

}

.galeria-link .btn:hover{

    opacity:.9;

    transform:translateY(-2px);

}