@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ===================== GLOBAL ===================== */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
    background: #ffffff;
}

h1, h2, h3 {
    color: #304933;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    line-height: 1.6rem;
}

section {
    padding: 80px 8%;
}


/* =====================   SEÇÃO 1   ===================== */

.hero {
    background: transparent;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.hero-split {
    display: flex;
    flex: 1;
    margin-top: 40px;
    height: calc(100vh - 90px);
    width: 100%;
    position: relative;
}

.hero-left {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: #304933;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 8%;
    box-sizing: border-box;
    position: relative; 
    z-index: 1;
}

.hero-text-content {
    max-width: 650px;
}

.titulo-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px 0;
    text-align: left;
}

.titulo-hero .linha1 {
    font-weight: 700;
    font-size: 4rem;
}

.titulo-hero .linha2 {
    font-weight: 700;
    margin-top: 8px;
    font-size: 2rem;
    opacity: 0.9;
}

.texto-branco {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 32px;
    max-width: 90%;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffd21f;
    color: #304933;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 16px rgba(255, 210, 31, 0.5);
}

.cta-primary:hover {
    background: #e6bd1c;
    box-shadow: 0 0 20px rgba(255, 210, 31, 0.8);
}

.hero-right {
    
    flex: 0 0 50%;
    max-width: 50%; 
    background-image: url("Imagens/WhatsApp Image 2025-12-08 at 18.11.28.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 400px;
    
    position: relative;
    z-index: 1;
}

/* ===================== LOGO CENTRAL ===================== */


.hero-split {
    position: relative; 
   
}

.hero-center-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99; 
    width: 180px; 
    height: 180px;
    pointer-events: none;
}

.hero-center-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 50%; 
    border: 6px solid #304933; 
    background-color: #ffffff;
}


/* ===================== NAVBAR ===================== */

.navbar {
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: #ffffff;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-left {
    position: relative;
}

.nav-logo {
    height: 230px;
    position: absolute;
    top: -120px;
}

.cta-top {
    background: #ffd21f;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #304933;
    font-weight: 600;
    font-size: 1.2rem;
}


/* ===================== SOBRE (MOSAICO) ===================== */

.sobre {
    display: flex;
    gap: 40px;
    align-items: center; 
}

.sobre-text {

    flex: 0 0 45%; 
    
   
    border: 3px solid #304933; 
    border-radius: 0px 100px 0px 100px;      

    padding: 30px; 
    box-sizing: border-box; 
    display: flex;
    flex-direction: column;  
    font-size: 25px;
   
    color: black;
}

.sobre-text h1 {
     font-size: 50px;
     justify-content: center;
     text-align: center;
     align-items: center;
}
.sobre-text p {
     font-size: 20px;
     justify-content: center;
     text-align: center;
     align-items: center;
}

.sobre-img {
   flex: 0 0 53%;
}


.mosaico-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; 
    border-radius: 100px;
    overflow: hidden; 
}

.mosaico-grid img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.3s ease;
}


.mosaico-grid img:hover {
    transform: scale(1);
    z-index: 2; 
    cursor: pointer;
}

.diferenciais {
   
    background-color: #e8efe9; 
    border: 2px solid #b8c9bb; 
    border-radius: 10px;     
    
   
    padding: 25px 30px;        
    margin-top: 25px;        
    width: 90%;                
    box-sizing: border-box;   

    
    text-align: left;         
    
}

.diferenciais li {
    margin-bottom: 8px;        
    font-size: 18px;           
    color: #304933;            
    line-height: 1.4;
}

/* =====================PLAYER DE IMAGEM===================== */


.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
}


.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px; 
    max-height: 80vh; 
    object-fit: contain;
    border-radius: 8px;
    animation-name: zoom;
    animation-duration: 0.3s;
}


@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}


.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ffd21f; 
    text-decoration: none;
    cursor: pointer;
}

/* ===================== NAVEGAÇÃO DO MODAL ===================== */


.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 2001; 
    text-decoration: none; 
}


.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffd21f; 
}


@media (max-width: 600px) {
    .prev, .next {
        font-size: 30px;
        padding: 10px;
    }
}
/* ===================== ESTILO DA LISTA HORIZONTAL ===================== */

.hero-text-content ul {
    list-style: none;       
    padding: 0;             
    margin: 0 0 32px 0;      
    
    display: flex;          
    flex-wrap: wrap;         
    gap: 15px;               
}

.hero-text-content ul li {
    background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 8px;     
    padding: 12px 20px;      
    
    color: #ffffff;          
    font-weight: 600;        
    font-size: 0.9rem;       
    
    flex: 1 1 auto;          
    text-align: center;     
    white-space: nowrap;    
}

@media (max-width: 900px) {
    .hero-text-content ul {
        justify-content: center; 
    }
    
    .hero-text-content ul li {
        white-space: normal;
        flex: 1 1 100%;      
    }
}

/* ===================== CARROSSEL COM SCROLLBAR ===================== */

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    
    
    overflow-x: auto; 
    overflow-y: hidden;
    
   
    scroll-snap-type: x mandatory; 
    display: flex;
    padding-bottom: 20px; 
}


.carousel-container::-webkit-scrollbar {
    height: 10px; 
}

.carousel-container::-webkit-scrollbar-track {
    background: #e8efe9; 
    border-radius: 10px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background-color: #304933; 
    border-radius: 10px;
}

.carousel-container::-webkit-scrollbar-thumb:hover {
    background-color: #ffd21f; 
}


.carousel-track {
    display: flex;
    width: max-content; 
    gap: 0;
}

.carousel-card {
     flex: 0 0 33.333%;
    width: 33.333%;
    
    padding: 0 10px; 
    box-sizing: border-box; 
    scroll-snap-align: start; 
}

.carousel-card img {
    width: 100%;
    height: 300px; 
    
    
    border-radius: 12px;
    cursor: pointer;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-card video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer; 
    pointer-events: auto;
}

#vid01 {
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    border-radius: 8px;
    margin: auto;
    display: block;
    outline: none; 
}

@media (max-width: 900px) {
    .carousel-card {
        min-width: 100%; 
        height: 250px;
        flex: 0 0 100%; 
        width: 100%;
    }

    .carousel-card video {
        height: 250px;
    }
}



/* ===================== PLANTAS ===================== */

.plantas {
    text-align: center;
    background: #f4f8f5;
}

.plantas h1 {
    font-size: 40px;
}

.galeria {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.galeria img {
    width: 30%;
    border-radius: 12px;
}


/* ===================== LAZER ===================== */

.lazer {
    background: #ffffff; 
    text-align: center;
}

.lazer-grid {
    margin-top: 50px;
    display: grid;
    
  
    grid-template-columns: repeat(4, 1fr); 
    
    gap: 30px; 
    padding: 10px; 
}


.lazer-card {
    background: #ffffff;
    border-radius: 16px; 
    overflow: hidden;   
    
   
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    
  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default; 
    border: 1px solid #f0f0f0; 
}


.lazer-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(48, 73, 51, 0.2);
}


.card-img {
    width: 100%;
    height: 200px; 
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease; 
}


.lazer-card:hover .card-img img {
    transform: scale(1.1);
}


.lazer-card h3 {
    margin: 0;
    padding: 20px;
    font-size: 1.25rem;
    color: #304933; 
    font-weight: 700;
}

@media (max-width: 1100px) {
    .lazer-grid {
        
        grid-template-columns: repeat(2, 1fr); 
    }
}


@media (max-width: 600px) {
    .lazer-grid {
        
        grid-template-columns: 1fr; 
    }
    
    .lazer-card:hover {
        
        transform: none; 
    }
}


/* ===================== LOCALIZAÇÃO ===================== */

.localizacao {
    display: flex;
    gap: 40px;
    align-items: center;
    font-size: 25px;
}

.loc-text {
    flex: 1;
}

.loc-text h1{
    font-size: 55px ;
}

.loc-text p{
    font-size: 25px ;
}

.loc-map {
    flex: 1;
}


/* ===================== FORMULÁRIO ===================== */

.contato {
    text-align: center;
    background: #f4f8f5;
}

.form {
    max-width: 600px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input,
.form textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #9fad9d;
}

.form button {
    padding: 14px;
    background: #304933;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
}


/* ===================== FOOTER ===================== */

footer {
    background: #304933;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer .social a {
    color: #ffd21f;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
}


/* ===================== RESPONSIVIDADE ===================== */

@media (max-width: 900px) {

    .navbar {
        height: 60px; /* Reduz a altura da barra */
        padding: 0 5%;
    }

    .nav-logo {
        height: 50px !important; /* Força o logo a caber na barra */
        position: static !important; /* Tira ele do modo "voador" */
        top: auto;
    }

    .cta-top {
        font-size: 0.8rem !important; /* Diminui o texto do botão */
        padding: 6px 12px !important;
        white-space: nowrap; /* Impede que o texto quebre em duas linhas */
    }

    .hero-center-logo {
        position: relative !important; /* Deixa de ser fixo sobre o título */
        transform: none !important;
        left: auto !important;
        top: auto !important;
        margin: 20px auto; /* Dá um espaço entre o título e a imagem */
        width: 120px; /* Diminui o tamanho no celular */
        height: 120px;
        display: block;
    }
   
    .hero-split {
        display: flex;
        flex-direction: column; /* Alinha os itens um abaixo do outro */
        height: auto;
    }

    .hero-split {
        flex-direction: column-reverse;
        margin-top: 70px;
        height: auto;
    }

    .hero-left, .hero-right {
        flex: auto;     
        max-width: 100%; 
        width: 100%;
    }

    .hero-text-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .titulo-hero {
        align-items: center;
        text-align: center;
        font-size: 1.8rem;
        margin-top: 40px
    }

    .titulo-hero .linha1 {
        font-size: 2.4rem;
    }

    .titulo-hero .linha2 {
        font-size: 1.5rem;
    }

    .texto-branco {
        max-width: 100%;
    }



    .sobre,
    .localizacao {
        flex-direction: column;
    }

    .lazer-grid {
        grid-template-columns: 1fr;
    }

    .galeria img {
        width: 90%;
    }

    .cta-primary {
        display: block;           
        width: 90%;               
        max-width: 300px;       
        margin: 20px auto;       
        padding: 12px 20px !important; 
        font-size: 1rem !important;   
        line-height: 1.2;
    }
}
