/* Definição da Paleta de Cores e Fontes (Estilo Elegante/Luxo) */
:root {
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --background-light: #f9f9f9;
    /* Um branco suave */
    --accent-gold: #B8860B;
    /* Tom de ouro para destaque */
    --accent-bronze: #A68A7C;
    /* Tom terroso/bronze para CTAs */

    --font-heading: 'Georgia', serif;
    --font-body: 'Helvetica Neue', sans-serif;

    /* Variáveis do Header para JS */
    --header-height-initial: 80px;
    --header-height-scrolled: 60px;
}

/* Configurações Globais */
body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
    overflow-x: hidden;
    /* Evita scroll horizontal em mobile */
    /* Padding-top adicionado via JS para compensar header fixo */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* Responsivo para títulos */
}

.section {
    padding: clamp(40px, 8vw, 80px) 0;
    /* Padding responsivo */
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5em);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: clamp(1rem, 2.5vw, 1.1em);
    color: #666;
}

.subtitle {
    font-size: 0.9em;
    color: var(--accent-bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Animações CSS Gerais */
.loading * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading.fade-in * {
    opacity: 1;
    transform: translateY(0);
}

[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation="fade-up"].animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Botões de Chamada para Ação (CTA) - Ajustado para menor */
.cta-button {
    background-color: var(--accent-bronze);
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 18px;
    /* Reduzido */
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
    /* Fonte menor */
    white-space: nowrap;
    /* Evita quebra de linha */
}

.cta-button:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px) scale(1.02);
    /* Scale menor no hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Novo: Botão Schedule CTA */
.schedule-cta {
    display: inline-block;
    margin: 15px auto;
    padding: 12px 24px;
    font-size: 1em;
    background-color: var(--accent-gold);
    text-transform: none;
    letter-spacing: normal;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.schedule-cta:hover {
    background-color: var(--accent-bronze);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.review-button {
    background-color: var(--accent-gold);
    padding: 12px 24px;
    font-size: 1em;
    margin-top: 20px;
}

.review-button:hover {
    background-color: var(--accent-bronze);
    transform: translateY(-2px) scale(1.05);
}

/* Novo: Botão Flutuante Mobile - Pequeno e discreto */
.mobile-cta {
    display: none;
    /* Escondido por padrão (desktop) */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-bronze);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-cta:hover {
    background-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-cta i {
    transition: transform 0.3s ease;
}

.mobile-cta:hover i {
    transform: rotate(360deg);
    /* Animação giratória no hover */
}

/* -------------------- CABEÇALHO APRIMORADO -------------------- */
.main-header {
    background-color: var(--text-light);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    height: var(--header-height-initial);
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(10px, 2vw, 20px);
    width: 100%;
}

/* Logo como imagem */
.logo img {
    height: 40px;
    /* Ajuste conforme sua logo */
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.main-nav li a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 10px 18px;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 4px;
}

.main-nav li a:hover {
    color: var(--accent-gold);
    background-color: rgba(184, 134, 11, 0.1);
}

/* -------------------- SELETOR DE IDIOMA COM BANDEIRAS -------------------- */
.lang-switch {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    background: var(--text-light);
    border: 1px solid var(--accent-bronze);
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
}

.lang-btn:hover {
    border-color: var(--accent-gold);
}

.flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    margin-right: 5px;
    /* Espaço para dropdown, mas visível só tem bandeira */
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--text-light);
    border: 1px solid var(--accent-bronze);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 120px;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9em;
}

.lang-option:hover {
    background: rgba(184, 134, 11, 0.1);
}

.lang-option .flag {
    margin-right: 8px;
}

.lang-option span {
    color: var(--text-dark);
}

/* -------------------- MENU HAMBÚRGUER (Mobile) -------------------- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
    position: relative;
    margin-left: 10px;
    /* Espaço entre idioma e hamburger */
}

.menu-toggle i {
    font-size: 1.5em;
    color: var(--accent-bronze);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--accent-bronze);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-toggle.active i {
    opacity: 0;
    /* Esconde o ícone FA quando animado */
}

.desktop-cta {
    display: block;
}

/* -------------------- SEÇÃO INTRO (Info left, Photo right) - Updated Layout -------------------- */
.intro-hero {
    background-color: var(--text-light);
    /* Fundo branco para contraste suave */
    padding: clamp(60px, 10vw, 100px) 0 !important;
    /* Padding maior para seção inicial */
}

.intro-hero .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced: Content left, Image right (equal width for better fit with shorter text) */
    gap: clamp(30px, 6vw, 60px);
    /* Espaçamento maior para destaque */
    align-items: start;
    /* Alinha no topo para melhor fluxo */
}

.intro-hero .about-content {
    padding-right: clamp(20px, 4vw, 40px);
    /* Espaçamento interno à direita do texto no desktop */
}

.intro-hero .about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 3em);
    /* Título maior para impacto inicial */
}

.intro-hero .about-content p {
    font-size: 1.1em;
    /* Texto ligeiramente maior para legibilidade */
    margin-bottom: 15px;
    /* Reduced margin for shorter paragraphs */
}

.intro-hero .primary-cta {
    margin-top: 30px;
    padding: 12px 24px;
    /* CTA maior na intro */
    font-size: 1em;
}

.intro-hero .about-image img {
    border-radius: 12px;
    /* Bordas mais arredondadas para foto principal */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Sombra mais dramática */
    max-height: 700px;
    /* Limita altura da foto para consistência */
    object-fit: cover;
    /* Garante crop elegante */
    width: 100%;
    height: auto;
}

/* -------------------- SEÇÃO HERO COM SLIDER (Agora abaixo da intro) -------------------- */
.hero {
    position: relative;
    height: clamp(50vh, 70vh, 70vh);
    /* Altura reduzida para não dominar após intro */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    /* Removido margin-top; agora usa padding do body via JS */
    overflow: hidden;
    margin: 0;
    /* Garante sem margem extra */
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.hero:hover::before {
    background-color: rgba(0, 0, 0, 0.5);
    /* Efeito hover sutil */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    /* Expandido para melhor centralização */
    width: 100%;
    padding: 0 20px;
    /* Padding horizontal mínimo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centralização vertical perfeita */
    align-items: center;
    /* Centralização horizontal perfeita */
    text-align: center;
    /* Reforça para texto */
    height: 100%;
    /* Ocupa toda altura do hero para centralizar */
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2em);
    /* Ajustado para caber melhor na altura reduzida */
    margin-bottom: 10px;
    color: var(--text-light);
    width: 100%;
    /* Garante largura plena para centralização */
    line-height: 1.2;
    /* Melhora espaçamento vertical */
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2em);
    margin-bottom: 40px;
    max-width: 600px;
    /* Limita largura do parágrafo para legibilidade */
}

.hero-cta {
    font-size: 1.05em;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.1);
}

/* -------------------- SERVIÇOS -------------------- */
.services {
    background-color: var(--text-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsivo automático */
    gap: clamp(20px, 4vw, 30px);
    margin-bottom: 40px;
}

.service-card {
    padding: clamp(20px, 4vw, 30px);
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Transição suave */
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
    /* Efeito shimmer no hover */
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: clamp(2em, 5vw, 2.8em);
    color: var(--accent-bronze);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    animation: spin 0.6s ease-in-out;
    /* Animação CSS pura agora */
}

.service-card h3 {
    color: var(--accent-gold);
    margin-top: 0;
    font-size: clamp(1.2em, 3vw, 1.4em);
}

.text-link {
    display: block;
    text-align: center;
    color: var(--accent-bronze);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
    /* Pequeno slide no hover */
}

.premium-highlight {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: var(--accent-bronze);
    color: var(--text-light);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.premium-highlight:hover {
    transform: scale(1.02);
}

.premium-highlight i {
    font-size: 2em;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.premium-highlight h4 {
    color: var(--text-light);
    font-size: 1.4em;
    margin-top: 0;
}

/* -------------------- SEÇÃO TESTIMONIALS (Google Reviews) -------------------- */
.testimonials-section {
    background-color: var(--background-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.testimonial-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4em;
    color: var(--accent-bronze);
    font-family: var(--font-heading);
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.testimonial-card .reviewer {
    display: block;
    font-weight: bold;
    color: var(--accent-bronze);
    font-size: 0.95em;
    margin-top: 10px;
}

/* -------------------- SEÇÃO GALERIA -------------------- */
.gallery-section {
    background-color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    margin: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover p {
    transform: translateY(0);
}

/* -------------------- SEÇÃO DE CONTATO -------------------- */
.contact-section {
    background-color: var(--text-light);
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: clamp(1rem, 2.5vw, 1.1em);
    margin-bottom: 20px;
}

.contact-link {
    display: block;
    font-size: clamp(1.1em, 3vw, 1.2em);
    margin: 10px 0;
    color: #ffffff;
    /* PONTO-E-VÍRGULA ADICIONADO AQUI */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}
.number-link {
    display: block;
    font-size: clamp(1.1em, 3vw, 1.2em);
    margin: 10px 0;
    color: #b8860b;
    /* PONTO-E-VÍRGULA ADICIONADO AQUI */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.number-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}
.Email-link {
    display: block;
    font-size: clamp(1.1em, 3vw, 1.2em);
    margin: 10px 0;
    color: #b8860b;
    /* PONTO-E-VÍRGULA ADICIONADO AQUI */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.Email-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.whatsapp-link {
    background-color: #25D366;
    color: white;
    /* Alterado para cor branca */
    padding: 10px 20px;
    border-radius: 50px;
    margin: 20px auto;
    display: inline-block;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    color: var(--text-light);
    transform: scale(1.05);
}

.address {
    margin-top: 30px;
    font-style: italic;
}

/* -------------------- RODAPÉ -------------------- */
.main-footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 40px 0;
    font-size: 0.9em;
}

.footer-info,
.social-links,
.legal-links {
    margin-bottom: 20px;
    text-align: center;
}

.logo-footer {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.social-links a {
    color: var(--background-light);
    font-size: 1em;
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.social-links a:hover {
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.1);
}

.legal-links a {
    color: var(--background-light);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    margin-top: 15px;
    opacity: 0.7;
}

/* -------------------- RESPONSIVIDADE -------------------- */
/* Tablet: 768px - 900px */
@media (max-width: 900px) and (min-width: 768px) {
    .cta-button {
        padding: 7px 15px;
        /* Ainda menor em tablet */
        font-size: 0.85em;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas em tablet */
        gap: 25px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .main-nav ul {
        gap: 5px;
    }

    .main-nav li a {
        padding: 8px 12px;
        font-size: 0.95em;
    }

    .lang-switch {
        margin-left: 10px;
    }

    .menu-toggle {
        display: none;
        /* Ainda escondido em tablet */
    }

    /* Ajustes para intro-hero em tablet */
    .intro-hero .about-content {
        padding-right: 20px;
    }

    .schedule-cta {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .desktop-cta {
        display: none;
        /* Mantém oculto no header */
    }

    .mobile-cta {
        display: flex;
        /* Mostra o botão flutuante pequeno */
    }

    .header-container {
        padding: 0 15px;
    }

    /* Posicionamento: Logo esquerda, Idioma + Hamburger direita lado a lado */
    .lang-switch {
        margin-left: auto;
        /* Empurra para direita */
        margin-right: 10px;
        /* Espaço antes do hamburger */
    }

    .lang-btn {
        padding: 3px;
        /* Mais compacto no mobile */
    }

    .lang-dropdown {
        min-width: 140px;
        /* Levemente maior para toque */
        right: -20px;
        /* Ajuste para não vazar */
    }

    .main-nav {
        position: absolute;
        top: var(--header-height-initial);
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: var(--text-light);
        transition: height 0.3s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        height: 300px;
        /* Ajustado sem o seletor movido */
    }

    .main-header.scrolled .main-nav {
        top: var(--header-height-scrolled);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 0;
        margin: 0;
        text-align: center;
    }

    .main-nav li a {
        padding: 15px;
        border-bottom: 1px solid #f1f1f1;
        font-size: 1.1em;
    }

    .menu-toggle i {
        opacity: 0;
        /* Usa apenas as barras no mobile para simplicidade */
    }

    /* Animação extra no menu active */
    .main-nav.active {
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Conteúdo Principal */
    .intro-hero .about-content {
        padding-right: 0;
        /* Remove padding em mobile */
        text-align: center;
        order: 2;
        /* Content after image in mobile */
    }

    .intro-hero .about-image {
        order: 1;
        /* Image first in mobile */
        margin-bottom: 20px;
    }

    .intro-hero .about-image img {
        max-height: 600px;
        /* Foto menor em mobile */
    }

    .intro-hero .about-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5em);
        /* Ajustado para mobile */
        margin-bottom: 15px;
        /* Mais espaçamento em telas pequenas */
    }

    .hero-content {
        padding: 0 10px;
        /* Ajuste para mobile: padding menor */
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .about-image {
        order: -1;
    }

    .about-content .section-title,
    .about-content .subtitle {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 200px;
    }

    .contact-link {
        font-size: 1.1em;
    }

    .premium-highlight {
        padding: 20px;
        margin: 20px auto 0;
    }

    .review-cta {
        margin-top: 20px;
    }

    .review-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .schedule-cta {
        margin: 15px auto;
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* Mobile Landscape: 480px - 767px */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        height: 50vh;
        /* Altura ainda menor em landscape mobile */
    }

    .main-nav.active {
        height: 250px;
        /* Ajuste para landscape */
    }

    .intro-hero .about-image img {
        max-height: 250px;
    }
}