/* 1. Importação de fonte */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

/* RESET GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-drag: none;
    user-select: none;
}

:root {
    --verde-carro: #2ecc71;
    --verde-escuro: #1a472a;
    --bg-suave: #f4f7f4;
    --branco: #ffffff;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-suave);
    color: #333;
    overflow-x: hidden;
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--verde-escuro);
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-container {
    display: flex;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-svg {
    background-color: var(--verde-escuro);
    height: 100%;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: var(--transition-smooth);
}

.logo-svg:hover { background-color: #12331e; }
.kbh { font-weight: 800; font-size: 1.4rem; line-height: 1; }
.tours { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: var(--verde-carro); }

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* LANGUAGE SELECTOR */
.lang-selector {
    position: relative;
    cursor: pointer;
    padding: 5px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-current img {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.arrow-down { font-size: 0.6rem; color: var(--verde-escuro); }

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown li a {
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--verde-escuro);
}

.lang-dropdown li:hover { background: var(--bg-suave); }
.lang-dropdown img { width: 20px; }

/* BOTÕES E MENU */
.btn-menu { display: flex; align-items: center; gap: 20px; }

.book-now-btn {
    background-color: var(--verde-carro);
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    background-color: #27ae60;
}

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--verde-escuro);
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--verde-escuro);
    margin: 3px 0;
    border-radius: 2px;
}

/* HERO & VIDEO SECTION */
.hero-section {
    position: relative;
    height: 90vh;
    width: 100%;
}

.background-video {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 5rem);
    color: white;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title span {
    color: var(--verde-carro);
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--branco);
    z-index: 2000;
    transition: var(--transition-smooth);
    padding: 100px 40px;
}

.side-menu.active { right: 0; }
.side-menu nav ul { list-style: none; }
.side-menu nav ul li { margin-bottom: 30px; }
.side-menu nav ul li a {
    text-decoration: none;
    color: var(--verde-escuro);
    font-weight: 800;
    font-size: 1.5rem;
    transition: 0.3s;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 71, 42, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    z-index: 1500;
}

.overlay.active { display: block; }

/* GALLERY - ATUALIZADO PARA DUAS COLUNAS */
.gallery {
    background-color: var(--verde-escuro);
    padding: 80px 20px;
    margin-top: -60px;
    border-radius: 60px 60px 0 0;
    position: relative;
    z-index: 10;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.main-quadrant {
    max-width: 1200px;
    margin: 0 auto;
    display: grid; /* Mudado de flex para grid */
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    gap: 20px;
}

.main-quadrant div {
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    min-height: 400px; /* Altura das fotos */
}

.main-quadrant div:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 2;
}

/* IMAGENS */
.superior-one { background-image: url('media/Gallery/20250913_145020.jpg'); }
.superior-two { background-image: url('media/Gallery/20250913_163646\(2\).jpg') }
.inferior-three { background-image: url('media/Gallery/20250924_164655\(2\).jpg') }
.inferior-four { background-image: url('media/Gallery/20240610_201712.jpg'); }
.superior-one-2 { background-image: url('media/Gallery/20250816_192745.jpg'); }
.superior-two-2 { background-image: url('media/Gallery/20240727_144952\ \(1\).jpg'); }
.inferior-three-2 { background-image: url('media/Gallery/20250923_173547\(1\).jpg'); }
.inferior-four-2 { background-image: url('media/Gallery/20240625_155738.jpg'); }

/* WHY US */
.cta-section {
    background-color: var(--branco);
    padding: 100px 20px;
}

.quadrant-round {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, #0d2616 100%);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 50px;
    padding: 80px 40px;
    color: white;
    text-align: center;
}

.title-whykbh { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }

.png-cars {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.png-cars img {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.png-cars:hover img {
    transform: translateY(-10px);
}
.container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.feature-card:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-10px); }
.feature-card .icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.feature-card h3 { color: var(--verde-carro); margin-bottom: 15px; }

.feature-card p {
    text-align: center;
}
/* FOOTER */
.footer { 
    background: #0d2616; 
    padding: 50px 20px 40px; 
    color: white; 
    text-align: center; 
}
.contact-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.title-contact{
    font-weight: 800; 
    text-transform: uppercase;
    color: #27ae60
}
.info-container{
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.usefull-links-title { 
    color: #27ae60;
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 30px; 
}
.usefull-links-items { 
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    margin-bottom: 40px; 
}
.usefull-links-items a {
    color: #e0e0e0; /* Um branco acinzentado elegante */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
/* Evita que mude de cor após clicado */
.usefull-links-items a:visited {
    color: #e0e0e0;
}
/* Efeito ao passar o rato: Brilha para o verde da sua marca */
.usefull-links-items a:hover {
    color: #27ae60; /* O mesmo verde do seu título para harmonia total */
}
/* Ajuste fino nos parágrafos dos itens para não herdarem estilos indesejados */
.usefull-links-items p {
    margin: 5px 0;
}   
.break-line { 
    height: 1px; 
    background: rgba(255,255,255,0.1); 
    margin: 30px 0; }




/* PNG SECTION - LOGOS DE PARCEIROS */
.png-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Garante que quebrem linha no mobile */
    gap: 40px;      /* Espaço entre os logos */
    margin-top: 20px;
    padding: 0 10px;
}

.png-section picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.png-section img {
    max-height: 50px; /* Mantém todos os logos com a mesma altura visual */
    width: auto;      /* Mantém a proporção largura */
    filter: grayscale(0%) brightness(1.5); /* Deixa os logos cinza/claro para não brigar com o seu design */
    opacity: 0.7;     /* Deixa-os discretos e elegantes */
    transition: all 0.4s ease;
}

.png-section img:hover {
    filter: grayscale(0%) brightness(1); /* Volta à cor original ao passar o rato */
    opacity: 1;
    transform: scale(1.05); /* Leve zoom profissional */
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.signature {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2); /* Bem discreto */
    transition: all 0.4s ease;
}

.signature strong {
    color: var(--primary); /* O "Bh" ganha a cor da marca */
    font-weight: 800;
}

.signature:hover {
    color: rgba(255, 255, 255, 0.7); /* Revela-se suavemente no hover */
    transform: translateY(-2px);
}
/* Responsividade para Telemóveis */
@media (max-width: 768px) {
    .png-section {
        gap: 25px; /* Diminui o espaço em telas pequenas */
    }
    
    .png-section img {
        max-height: 40px; /* Logos ligeiramente menores no mobile */
    }

    .usefull-links-items {
        flex-direction: column; /* Links um abaixo do outro no mobile */
        gap: 15px;
    }
}


















/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .header-container { height: 70px; padding: 0 15px; }
    .logo-svg { width: 70px; }
    .header-right { gap: 12px; }

    .book-now-btn {
        padding: 10px 18px;
        font-size: 0.75rem;
        display: block !important;
    }

    .menu-text { display: none; }
    
    .hero-title { font-size: 2.2rem; }
    
    .main-quadrant {
        grid-template-columns: 1fr; /* Volta para uma coluna no mobile */
    }

    .main-quadrant div {
        min-height: 300px;
    }

    .png-cars img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: var(--transition);
}
    
    .usefull-links-items { flex-direction: column; gap: 15px; }
}
/* Trava o scroll do corpo da página */
.no-scroll {
    overflow: hidden;
    height: 100vh;
}











/*
 Estilização Geral dos Links Úteis 
.usefull-links {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;  Ou a fonte do seu site 
}

.usefull-links-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;  Ou a cor de destaque do seu site 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usefull-links-items {
    display: flex;
    gap: 30px;
}

.usefull-links p {
    margin-bottom: 10px;
}

 O Segredo da Elegância: Links que não parecem links antigos 
.usefull-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

 Efeito de linha ao passar o rato (Hover) 
.usefull-links a:hover {
    color: #000;  Ou a cor principal da sua marca 
    transform: translateX(5px);
}

.usefull-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.usefull-links a:hover::after {
    width: 100%;
}
*/