/* ==========================================================================
   Reset e Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #474747;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
}

/* Garantir que main não corte o dropdown */
main {
    overflow: visible;
}

/* ==========================================================================
   Variáveis CSS
   ========================================================================== */
:root {
    --primary-purple: #6C3690;
    --secondary-purple: #8F54B0;
    --light-purple: #9974AF;
    --dark-purple: #5C3173;
    --purple-bg: #DFBDF2;
    --light-purple-bg: #F8F5FD;
    --text-dark: #232323;
    --text-light: #FFFFFF;
    --text-gray: #474747;
    --gradient-primary: linear-gradient(270deg, #5C3173 0%, #8F54B0 100%);
    --gradient-secondary: linear-gradient(70deg, #8F54B0 0%, #5C3173 100%);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container geral */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* Garantir que elementos não cortem o dropdown */
nav {
    overflow: visible !important;
}

.dropdown-menu .container {
    overflow: visible !important;
}

/* ==========================================================================
   Header Superior
   ========================================================================== */
.header-top {
    background-color: var(--primary-purple);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-phones {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-phones span {
    color: white;
}

.header-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-agendar {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.btn-agendar:hover {
    color: var(--light-purple);
}

.btn-como-chegar {
    background-color: white;
    color: var(--primary-purple);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-como-chegar:hover {
    transform: scale(0.95);
}

/* ==========================================================================
   Header Principal
   ========================================================================== */
.header-main {
    background-color: white;
    padding: 0 !important;
    min-height: unset !important;
    height: auto !important;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 !important;
    min-height: unset !important;
}

.logo {
    width: 110px !important;
    height: auto !important;
}

.logo img {
    display: block;
    max-height: 110px !important;
}

/* ==========================================================================
   Ícones Sociais - DESKTOP APENAS
   ========================================================================== */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

/* Cores específicas para cada rede social */
.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.instagram {
    background-color: #833AB4;
}

.social-icon.google {
    background-color: #f80000;
}

.social-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* ==========================================================================
   Menu Principal Desktop com Dropdown
   ========================================================================== */
.dropdown-menu {
    background-color: var(--primary-purple);
    padding: 0;
    padding-bottom: 10px;
    position: relative;
    z-index: 1000;
    overflow: visible;
}

.menu-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.menu-list li {
    position: relative;
}

.menu-list .has-dropdown {
    position: relative;
}

.menu-list a {
    color: white;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.menu-list a:hover,
.menu-list a.active,
.menu-list .active > a {
    color: var(--light-purple);
}

.menu-list .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-list .has-dropdown > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.menu-list .has-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown final funcional */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 240px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    list-style: none;
    padding: 15px 0;
    margin: 0;
    margin-top: 0;
    display: none;
    z-index: 99999;
    max-height: 300px;
    overflow-y: auto;
}

/* Mostra dropdown no hover */
.menu-list li.has-dropdown:hover > .dropdown {
    display: block;
}

/* Seta do dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    z-index: 99999;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    display: block;
    pointer-events: auto;
}

/* Adiciona delay para manter dropdown aberto */
.dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    color: var(--text-gray);
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.dropdown a:hover,
.dropdown a.active {
    background-color: #f8f9fa;
    color: var(--primary-purple);
    padding-left: 25px;
}

/* ==========================================================================
   Mobile Menu Toggle Button
   ========================================================================== */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--primary-purple);
    cursor: pointer;
}

/* ==========================================================================
   Mobile Menu - Lateral com Especialidades
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-purple);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2000;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

/* Overlay escuro */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1998; /* Abaixo do menu mas acima do resto */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background-color: var(--dark-purple);
}

.close-menu {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

/* Navegação principal */
nav {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.mobile-nav {
    list-style: none;
    padding: 15px 0;
}

.mobile-nav > li {
    margin-bottom: 8px;
    border-bottom: none;
}

.mobile-nav > li:last-child {
    margin-bottom: 0;
}

/* Itens principais do menu - ESTILO ESPECIALIDADES */
.mobile-nav > li > a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    margin: 0 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.1);
}

.mobile-nav > li > a:hover,
.mobile-nav > li.active > a {
    background-color: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.mobile-nav > li > a span {
    flex: 1;
}

.mobile-nav > li > a i {
    font-size: 20px;
    margin-left: 10px;
    opacity: 0.8;
}

/* Ícone de seta para submenus */
.mobile-nav .has-submenu > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.mobile-nav .has-submenu.active > a::after {
    transform: rotate(180deg);
}

.mobile-nav .has-submenu.active > a {
    background-color: rgba(255,255,255,0.2);
}

/* Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: transparent;
    margin: 0 15px;
}

.mobile-submenu.active {
    max-height: 500px;
    padding: 10px 0;
}

.mobile-submenu li {
    margin-bottom: 5px;
}

.mobile-submenu li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 12px 20px;
    margin-left: 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
}

.mobile-submenu li a:hover,
.mobile-submenu li a.active {
    background-color: rgba(255,255,255,0.05);
    border-left-color: var(--light-purple);
    padding-left: 25px;
    color: white;
}

/* Rodapé do menu */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    background-color: var(--dark-purple);
}

.menu-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.menu-footer-link:last-child {
    margin-bottom: 0;
    background-color: #25D366;
}

.menu-footer-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.menu-footer-link:last-child:hover {
    background-color: #1FA855;
}

/* ==========================================================================
   Hero Section - Clareamento Dental
   ========================================================================== */
.hero-clareamento {
    background-color: white;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-clareamento::before {
    content: '';
    position: absolute;
    left: 250px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-image: url('/imagens/sologo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 0px 0;
}

.hero-text h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 10px;
    line-height: 0.9;
}

.hero-text h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.clareamento-caseiro-intro {
    margin-top: 40px;
}

.clareamento-caseiro-intro h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 20px;
}

.clareamento-caseiro-intro p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: justify;
}

.divider {
    width: 9%;
    height: 3px;
    background-color: var(--dark-purple);
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.hero-image img {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    display: block;
}

/* ==========================================================================
   Content Sections - Clareamento
   ========================================================================== */
.content-section {
    padding: 60px 0;
    background-color: white;
}

.content-section.clareamento-consultorio {
    padding-top: 30px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-text {
    padding: 20px;
}

.content-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 20px;
}

.content-text p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.content-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* ==========================================================================
   Monitoring Section
   ========================================================================== */
.monitoring-section {
    background-color: var(--purple-bg);
    padding: 80px 0;
    text-align: center;
}

.monitoring-content h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-purple);
    line-height: 1.5;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 33px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 0.7;
}

.cta-section p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta {
    background-color: white;
    color: var(--primary-purple);
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(180deg, #f0f0f0 0%, #e0e0e0 100%);
    transform: translateY(-2px);
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-form-section {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.contact-form-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.contact-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-gray);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.contact-form input::placeholder {
    color: #888;
    font-weight: 400;
}

.btn-submit {
    background: white;
    color: var(--primary-purple);
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Estados do formulário */
.form-loading,
.form-success,
.form-error {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-loading {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.form-success {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.form-error {
    background: rgba(244, 67, 54, 0.9);
    color: white;
}

.form-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Fix para garantir visibilidade do formulário */
.contact-form,
.contact-form * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-image: url('/imagens/Consultorio-Fish-Eye-3-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #362828;
    position: relative;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, #000000 100%);
    opacity: 0.82;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.footer-column h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column li {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #AEAEAE;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-bottom {
    background-color: #47444D;
    border-top: 1px solid white;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #B8B8B8;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   WhatsApp Button Flutuante
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Responsivo - Tablet (769px - 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .dropdown-menu .menu-list {
        gap: 20px;
    }
    
    .dropdown-menu a {
        font-size: 14px;
    }

    .dropdown {
        min-width: 220px;
        max-height: 250px;
    }

    .dropdown a {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .hero-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 25px;
    }
    
    .hero-text p,
    .content-text p {
        font-size: 16px;
    }
    
    .btn-cta {
        font-size: 15px;
        padding: 15px 30px;
    }

    .hero-clareamento::before {
        width: 200px;
        height: 200px;
        opacity: 0.2;
    }
}

/* ==========================================================================
   Responsivo - Mobile (max 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Fix para formulário sempre visível no mobile */
    .contact-form-section {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Garante que o CTA section não seja cortado */
    .cta-section {
        overflow: visible !important;
        position: relative;
        z-index: 1;
    }
    
    /* Container ajustado para mobile */
    .container {
        padding: 0 15px;
    }

    /* Header Superior Mobile - ESCONDIDO */
    .header-top {
        display: none;
    }

    /* Header Principal Mobile */
    .header-main {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 15px 0;
        transition: transform 0.3s ease;
    }

    .header-main-content {
        padding: 0 !important;
        justify-content: center; /* ← ALTERADO: Centraliza o logo no mobile */
        position: relative;
    }

    .logo {
        width: 90px !important;
    }

    .logo img {
        max-height: 90px !important;
    }

    /* ← ALTERADO: Ícones sociais OCULTOS no mobile */
    .social-icons {
        display: none !important;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        padding: 5px;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Esconde menu desktop */
    .dropdown-menu {
        display: none;
    }

    /* Hero Section Mobile - CENTRALIZADO */
    .hero-clareamento {
        padding: 40px 0;
    }

    .hero-clareamento::before {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-text h2 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 15px;
    }

    .clareamento-caseiro-intro {
        margin-top: 20px;
    }

    .clareamento-caseiro-intro h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
    }

    .clareamento-caseiro-intro p {
        font-size: 15px;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .divider {
        width: 60px;
        margin: 0 auto 25px;
    }

    .hero-text p {
        font-size: 15px;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
        border-radius: 0;
    }

    /* Content Sections Mobile */
    .content-section {
        padding: 30px 0;
    }

    .content-section.clareamento-consultorio {
        padding-top: 20px;
    }

    .content-grid {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    /* Para a seção de consultório - força texto aparecer primeiro */
    .content-section.clareamento-consultorio .content-text {
        order: -1;
    }

    .content-text {
        padding: 0;
    }

    .content-text h2 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
    }

    .content-text p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 15px;
    }

    .content-image img {
        border-radius: 8px;
        margin-bottom: 15px;
        max-width: 300px;
    }

    /* Monitoring Section Mobile */
    .monitoring-section {
        padding: 60px 0;
    }

    .monitoring-content h2 {
        font-size: 16px;
        padding: 0 20px;
        line-height: 1.6;
    }

    /* CTA Section Mobile - BOTÕES CENTRALIZADOS E REDUZIDOS */
    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 12px 20px;
        text-align: center;
        border-radius: 25px;
        white-space: nowrap;
    }

    /* Contact Form Mobile */
    .contact-form-section {
        max-width: 100%;
        margin: 0 20px;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        position: relative;
        z-index: 10;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .contact-form-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
        color: white !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    .contact-form {
        gap: 12px;
    }

    .contact-form input {
        padding: 12px 15px;
        font-size: 15px;
        border-radius: 8px;
        background: white !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        color: #333 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .contact-form input::placeholder {
        color: #666 !important;
        opacity: 1;
    }

    .contact-form input:focus {
        background: white !important;
        border-color: white !important;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), 0 2px 8px rgba(0,0,0,0.15) !important;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 14px;
        border-radius: 8px;
        margin-top: 8px;
        background: white !important;
        color: var(--primary-purple) !important;
        border: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .form-loading,
    .form-success,
    .form-error {
        padding: 10px;
        font-size: 14px;
        margin-top: 12px;
    }

    /* Footer Mobile - ESCONDIDO */
    .footer {
        display: none;
    }

    .footer-bottom {
        display: none;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    /* Utilidades gerais mobile */
    body {
        font-size: 14px;
    }

    h1, h2, h3 {
        word-wrap: break-word;
    }

    /* Melhora scrolling no mobile */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Remove hover effects no mobile */
    @media (hover: none) {
        .btn-cta:hover,
        .social-icon:hover,
        .btn-como-chegar:hover {
            transform: none;
        }
    }
}

/* ==========================================================================
   Extra Small Devices (max 360px)
   ========================================================================== */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .monitoring-content h2 {
        font-size: 14px;
    }

    .btn-cta {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .logo {
        width: 75px !important;
    }

    .logo img {
        max-height: 75px !important;
    }
    
    .mobile-nav > li > a {
        font-size: 15px;
        padding: 15px 15px;
    }
    
    .mobile-submenu li a {
        font-size: 14px;
    }

    .content-image img {
        max-width: 250px;
    }
}