/* Mobile primeiro */
.container {
    width: 100%;
    padding: 10px;
}

/* Tablet e Desktop: Mostra menu horizontal */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
        /* esconde hamburger */
    }

    .nav-menu {
        position: static !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 1.6rem !important;
        transition: none !important;
        transform: none !important;
        z-index: auto !important;
    }

    .nav-menu.active {
        right: auto !important;
        transform: none !important;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/*Zoom na imagens no mobile e desktop*/
@media (hover: none) {
    img.zoom:active {
        transform: scale(1.1);
    }
}

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --neutro: #F5F5F5;
    --marrom: #5135229c;
    --marrom-claro: #744e32;
    --bege: #F5E6D3;
    --bege-escuro: #E6D5C3;
    --dourado: #aaa090;
    --dourado-claro: #beab8e;
    --cinza-escuro: #333333;
    --cinza-medio: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--neutro);
    color: var(--cinza-escuro);
    line-height: 1.6;
}

/* Estilos do cabeçalho */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(245, 230, 211, 0.95);
    /* bege com transparência */
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.container {

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

    justify-content: space-between;
    align-items: center;
}

/* ========================================
   NAVBAR - NOVO (CORRIGIDO)
======================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #372821;
    text-decoration: none;
    margin-right: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #372821;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--dourado);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 3px;
    background: #372821;
    border-radius: 2px;
    transition: 0.3s;
}

/* Tamanho das bandeiras de troca de idioma */
.lang-dropdown {
    position: absolute;
    top: 10px;
    right: 70px;
    font-family: Arial, sans-serif;
}

.lang-btn {
    background: transparent;
    border: 1px solid #372821;
    color: #372821;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.lang-btn:hover {
    background: rgba(0, 191, 255, 0.1);
}

.lang-menu {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 5px 0;
    min-width: 130px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-menu a:hover {
    background-color: #222;
}

.lang-menu img {
    width: 18px;
    height: auto;
    border-radius: 3px;
}


/* ========================================
   HERO SECTION - RESPONSIVA & ELEGANTE
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bege), var(--bege-escuro));
    color: #372821;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 40px;
    background: rgba(1, 70, 94, 0.26);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 205, 205, 0.082);
    border: 1px solid #a78b74;
    box-shadow: 0 10px 15px rgba(48, 53, 49, 0.637);

}

.btn:hover {
    background-color: #4b706c50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 100, 38, 0.5);
}

/* Ícone do WhatsApp */
.btn i {
    font-size: 1.3rem;
}

/* Imagem de fundo */
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../imagens/imagem1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
    /* <--- ESSA LINHA SALVA O DIA */
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

/* ========================================
   RESPONSIVO - HERO
======================================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 90vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Seção Sobre */
.about {
    padding: 100px 0;
    background-color: var(--bege);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #372821;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--dourado);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-video {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    position: relative;
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.video-controls {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    background: #372821;
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.video-controls button {
    background: none;
    border: none;
    color: var(--bege);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-controls button:hover {
    color: var(--dourado);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.volume-control input {
    width: 70px;
}

.about-text {
    flex: 1;

}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #372821;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--cinza-medio);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.skill {
    background-color: var(--bege-escuro);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--marrom);
    border: 1px solid var(--dourado);
}

/* Seção Destaques */
.highlights {
    padding: 80px 0;
    background-color: var(--neutro);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 colunas fixas */
    gap: 25px;
    max-width: 1400px;
    /* Largura máxima maior */
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background-color: var(--bege);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--bege-escuro);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: var(--dourado);
}

.card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.15);
}

.card-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #372821;
    text-align: center;
    font-weight: 600;
}

.card-content p {
    color: var(--cinza-medio);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

/* Ícone decorativo */
.card-icon {
    text-align: center;
    margin-bottom: 15px;
    color: var(--dourado);
    font-size: 2.5rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .highlight-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas em tablets */
        gap: 30px;
        padding: 0 30px;
    }

    .card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .highlight-cards {
        grid-template-columns: 1fr;
        /* 1 coluna em mobile */
        gap: 25px;
        padding: 0 20px;
    }

    .highlights {
        padding: 60px 0;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .highlight-cards {
        padding: 0 15px;
    }

    .card-content {
        padding: 20px 15px;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }
}

/* Seção CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--marrom-claro), #372821);
    color: var(--bege);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/*LISTA CONSULTA*/

/* Lista personalizada dentro da seção CTA */
.lista-consulta {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.lista-consulta li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 1rem;
    font-size: 1.0rem;
    line-height: 1.6;
    opacity: 0.95;
}

.lista-consulta li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--bege);
    /* mesma cor do texto */
    font-size: 1.4em;
    top: -0.15em;
}

/* Texto introdutório da lista */
.consulta-texto {
    font-size: 1.4rem !important;
    font-weight: 600;
    margin-bottom: 10px !important;
}

/* Ajuste fino para mobile */
@media (max-width: 768px) {
    .lista-consulta {
        padding: 0 20px;
    }

    .lista-consulta li {
        font-size: 1.1rem;
        padding-left: 1.8em;
    }
}

/* Seção Botao Destaques */
.cta2 {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--marrom-claro), var(--white));
    color: var(--bege);
    text-align: center;
}

.cta2 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta2 p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn2 {
    display: inline-block;
    padding: 10px 40px;
    background-color: #e3d6ca;
    color: #372821;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 205, 205, 0.082);
    border: none;
    cursor: pointer;
    border: 1px solid #ac998a;
    box-shadow: 0 10px 15px rgba(134, 148, 138, 0.637);
}


.btn2:hover {
    background-color: #8b8b5c50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 82, 80, 0.603);
}


.btn3 {
    display: inline-block;
    padding: 10px 40px;
    background-color: #e3d6ca;
    color: #372821;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 205, 205, 0.082);
    border: none;
    cursor: pointer;
    border: 1px solid #705d4d;
    box-shadow: 0 10px 15px rgba(69, 77, 71, 0.637);
}


.btn3:hover {
    background-color: #d8c9ada6;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(134, 148, 138, 0.637);
}


/* Rodapé */
footer {
    background-color: var(--bege-escuro);
    color: #372821;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.footer-col p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;

}

.footer-col h3 {
    color: #372821;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.footer-col a {
    color: #372821;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--dourado);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--dourado);
    color: #fff9f9;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(95, 81, 33, 0.3);
    color: var(--cinza-claro);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-video,
    .about-text {
        flex: none;
        width: 100%;
    }
}

.hero {
    text-align: center;
}

.hero-bg {
    width: 100%;
    opacity: 0.3;
}

.hero-content {
    margin: 0 auto;
}

.section-title h2 {
    font-size: 2rem;
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .footer-col {
        min-width: 100%;
    }

    .video-controls {
        flex-wrap: wrap;
        justify-content: center;
        width: calc(100% - 30px);
    }
}

/* Adicione estas regras ao seu CSS existente */
.about-video {
    position: relative;
    width: 100%;
    max-width: 567px;
    /* Largura original */
    margin: 0 auto;
    /* Centralizar */
}

.about-video video {
    width: 100%;
    height: auto;
    aspect-ratio: 567 / 850;
    /* Proporção direta */
    border-radius: 10px;
    object-fit: cover;
    /* ou 'contain' */
}

/* Estado quando o vídeo está carregado */
.about-video.video-loaded video {
    opacity: 1;
    visibility: visible;
}

/* Garantir que os controles fiquem visíveis */
.video-controls {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    background-color: rgba(55, 40, 33, 0.5);
    backdrop-filter: blur(8px);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

/* ==================== LINK DE ENDEREÇO COM ÍCONE ==================== */
.address-link {
    color: #e9e9e9;
    /* Marrom forte, similar ao da imagem */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.address-link i {
    color: #ffffff;
    /* Dourado claro, próximo ao --dourado-claro */
    font-size: 1.2em;
    transition: color 0.3s ease;
}

/* SCROLL SUAVE*/

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hover: troca cores (texto dourado, ícone marrom) */
.address-link:hover {
    color: #b3b2b0;
    text-decoration: underline;
}


@media (max-width: 768px) {

    /* Mostra o hamburger */
    .nav-toggle {
        display: flex;
    }

    /* Esconde o menu horizontal */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: rgba(245, 230, 211, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 1.5rem;
    }

    /* Abre o menu */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        margin: 0 10px;
    }

    /* Animação do X (opcional) */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/*Whatsapp Flutuante*/

.whatsapp-float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    /* distância do fundo */
    right: 20px;
    /* distância da lateral */
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(0.8);
    background-color: #20b35857;
}