/* ========================================
   RESET E VARIÁVEIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Paleta Calma */
    --primary-color: #2C7A7B;        /* Verde água */
    --primary-dark: #234E52;         /* Verde escuro */
    --primary-light: #4FD1C5;        /* Verde claro */
    --secondary-color: #3182CE;      /* Azul suave */
    --secondary-dark: #2C5282;       /* Azul escuro */
    --secondary-light: #63B3ED;      /* Azul claro */
    
    /* Cores Neutras */
    --text-color: #2D3748;
    --text-light: #4A5568;
    --bg-color: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-gray: #EDF2F7;
    --border-color: #E2E8F0;
    
    /* Cores de Ação */
    --success-color: #25D366;        /* WhatsApp green */
    --danger-color: #E53E3E;
    --warning-color: #ED8936;
    
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Tipografia */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transições */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER E NAVEGAÇÃO
======================================== */
.header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1035; /* Acima do overlay (1025) e do drawer (1030) */
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
    max-height: 55px;
}

.logo span {
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 3px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: linear-gradient(135deg, rgba(44, 122, 123, 0.95) 0%, rgba(49, 130, 206, 0.95) 100%),
                      url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 122, 123, 0.9) 0%, rgba(49, 130, 206, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Animações Hero */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BOTÕES
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-family);
}

.btn-primary {
    background-color: var(--success-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c53030;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   SECTIONS COMUNS
======================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ========================================
   SERVIÇOS
======================================== */
.services-preview {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

/* ========================================
   DIFERENCIAIS
======================================== */
.differentials {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.differentials .section-header h2,
.differentials .section-header p {
    color: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.differential-item {
    text-align: center;
}

.differential-item i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.differential-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.differential-item p {
    opacity: 0.9;
}

/* ========================================
   DEPOIMENTOS
======================================== */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #F6AD55;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.text-center {
    text-align: center;
}

/* ========================================
   ESTATÍSTICAS
======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
}

.stats-section .section-header h2,
.stats-section .section-header p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    margin-left: 0.25rem;
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ========================================
   COMO FUNCIONA
======================================== */
.how-it-works {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    color: var(--text-color);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: #1A202C;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-light);
}

.footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    max-height: 48px;
}

.footer-logo span {
    color: var(--bg-color);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--primary-light);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   BOTÃO WHATSAPP FLUTUANTE
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ========================================
   PAGE HEADER (Páginas internas)
======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ========================================
   SOBRE NÓS
======================================== */
.about-content {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Missão, Visão, Valores */
.mvv-section {
    background-color: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mvv-card p,
.mvv-card ul {
    color: var(--text-light);
    line-height: 1.8;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mvv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Estatísticas */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Equipe */
.team-section {
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    margin: 1.5rem 1rem 0.5rem;
    color: var(--text-color);
}

.team-member span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Diferenciais Detalhados */
.differentials-detailed {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.differentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.differential-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.differential-content h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.differential-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Certificações */
.certifications {
    background-color: var(--bg-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item p {
    color: var(--text-color);
    font-weight: 600;
}

/* ========================================
   SERVIÇOS DETALHADOS
======================================== */
.service-detail {
    padding: 5rem 0;
}

.service-detail.alt {
    background-color: var(--bg-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-color);
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Planos */
.plans-section {
    background-color: var(--bg-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.plan-card.featured {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.plan-card h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.plan-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.plan-card ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.plan-card ul li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

/* ========================================
   DEPOIMENTOS PÁGINA
======================================== */
.rating-summary {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.rating-box {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.rating-score {
    text-align: center;
}

.rating-score h2 {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars-large {
    color: #F6AD55;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 1rem;
    align-items: center;
}

.bar {
    height: 10px;
    background-color: var(--bg-gray);
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

/* Depoimentos Detalhados */
.testimonials-detailed {
    padding: 5rem 0;
}

.testimonials-list {
    display: grid;
    gap: 2rem;
}

.testimonial-detailed-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-detailed-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-body h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-tag {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Vídeo Depoimentos */
.video-testimonials {
    background-color: var(--bg-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-weight: 600;
}

/* ========================================
   CONTATO
======================================== */
.contact-methods {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-method-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.method-icon.whatsapp {
    background-color: var(--success-color);
}

.method-icon.phone {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.method-icon.email {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.contact-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-method-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.availability {
    display: block;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Formulário de Contato */
.contact-form-section {
    padding: 5rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Sidebar de Contato */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-card i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links-vertical a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
}

.social-links-vertical a:hover {
    background-color: var(--bg-gray);
    color: var(--primary-color);
}

.info-card.emergency {
    background: linear-gradient(135deg, var(--danger-color), #c53030);
    color: white;
}

.info-card.emergency h3,
.info-card.emergency p {
    color: white;
}

/* Mapa */
.map-section {
    padding: 0;
}

.map-placeholder iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* FAQ Rápido */
.quick-faq {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.quick-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.125rem;
}

.faq-item i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   BLOG
======================================== */
.featured-post {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.featured-text {
    padding: 2.5rem;
}

.post-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.featured-text h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.featured-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Blog Posts */
.blog-posts {
    padding: 5rem 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.posts-container {
    display: grid;
    gap: 2rem;
}

.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

/* Sidebar do Blog */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.categories-list a:hover {
    background-color: white;
    color: var(--primary-color);
}

.categories-list i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.categories-list span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-post-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.popular-post-item a:hover {
    color: var(--primary-color);
}

.popular-post-item span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-widget h3,
.cta-widget p {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
}

/* Paginação */
.pagination-section {
    padding: 3rem 0 5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover:not(.disabled) {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-link.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ========================================
   RESPONSIVIDADE - MOBILE OPTIMIZADO
======================================== */

/* ====== TABLET PAISAGEM (≤ 1024px) ====== */
@media (max-width: 1024px) {
    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 220px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        gap: 2.5rem;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .differentials-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ====== MOBILE / TABLET RETRATO (≤ 768px) ====== */
@media (max-width: 768px) {

    /* --- Hamburger: volta para o fluxo do header --- */
    .hamburger {
        display: flex;
        position: static;    /* cancela o position:fixed do layout.css */
        top: auto;
        right: auto;
        z-index: auto;
        padding: 10px 8px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 8px;
        gap: 5px;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
        background-color: var(--primary-color);
    }

    /* --- Drawer de navegação lateral --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 88px 0 2rem; /* sem padding horizontal — fica nos itens */
        box-shadow: -6px 0 32px rgba(0, 0, 0, 0.18);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: stretch;
        z-index: 1030; /* abaixo do header (1035) */
        overflow-y: auto;
        gap: 0;
        border-left: 1px solid var(--border-color);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 0 1.25rem;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.0625rem;
        font-weight: 600;
        color: var(--text-color);
        border-left: 3px solid transparent;
        margin-left: -1.25rem;
        padding-left: 1.25rem;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        transition: color 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a.active {
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        background: rgba(44, 122, 123, 0.07);
        padding-left: 1.625rem;
    }

    .nav-menu a:hover {
        color: var(--primary-color);
        padding-left: 1.625rem;
        border-left-color: var(--primary-light);
        background: rgba(44, 122, 123, 0.05);
    }

    /* --- Overlay escuro quando menu está aberto --- */
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.52);
        z-index: 1025;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    body.menu-open::after {
        opacity: 1;
        pointer-events: all;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* --- Hero --- */
    .hero {
        background-attachment: scroll; /* Corrige bug de parallax no iOS */
        min-height: 100svh;
        min-height: 100vh;
        padding: 2rem 0;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.125rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    /* --- Seções gerais --- */
    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

    /* --- Grids gerais --- */
    .about-grid,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Service detail: flexbox com ordem explícita para sempre mostrar
       conteúdo antes da imagem, independente de .reverse no HTML */
    .service-detail-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .service-detail-grid .service-detail-content {
        order: 1;
        padding-bottom: 1.5rem;
    }

    .service-detail-grid .service-detail-image {
        order: 2;
    }

    /* Reset da técnica direction:rtl do desktop */
    .service-detail-grid.reverse {
        direction: ltr;
    }

    .service-detail-grid.reverse .service-detail-content {
        order: 1;
        direction: ltr;
    }

    .service-detail-grid.reverse .service-detail-image {
        order: 2;
        direction: ltr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    /* --- Serviços --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.125rem;
    }

    .service-card {
        padding: 1.75rem 1.5rem;
        text-align: left;
    }

    .service-icon {
        margin: 0 0 1.25rem 0;
    }

    /* --- Diferenciais --- */
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .differential-item i {
        font-size: 2.5rem;
    }

    .differential-item h3 {
        font-size: 1.0625rem;
    }

    /* --- Diferenciais Detalhados --- */
    .differentials-list {
        grid-template-columns: 1fr;
    }

    /* --- Estatísticas --- */
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.25rem;
    }

    /* --- Como Funciona (Steps) --- */
    .how-it-works {
        padding: 3rem 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.125rem;
        margin-top: 2rem;
    }

    .step-item {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .step-content h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.5rem;
    }

    /* --- CTA Section --- */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }

    .cta-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }

    .cta-content .btn {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
        display: inline-flex;
    }

    /* --- Formulário --- */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px; /* Previne zoom automático no iOS */
        padding: 0.8125rem 1rem;
    }

    .contact-form button[type="submit"] {
        width: 100%;
    }

    /* --- Footer --- */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }

    /* --- Page Header --- */
    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .page-header p {
        font-size: 0.9375rem;
    }

    /* --- Serviços Detalhados --- */
    .service-detail {
        padding: 2.25rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .service-detail:last-of-type {
        border-bottom: none;
    }

    /* Badge + título em linha para economizar espaço vertical */
    .service-badge {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 1.375rem;
        margin-bottom: 0;
        margin-right: 1rem;
        display: inline-flex;
        vertical-align: middle;
    }

    .service-detail-content h2 {
        font-size: 1.625rem;
        display: inline;
        vertical-align: middle;
        line-height: 1.3;
    }

    /* Agrupa badge + título na mesma linha */
    .service-detail-content > .service-badge + h2 {
        display: inline;
    }

    .service-detail-content .lead {
        margin-top: 1rem;
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .service-detail-content h3 {
        font-size: 1.0625rem;
        margin: 1.25rem 0 0.625rem;
    }

    /* Lista de itens mais compacta */
    .service-list li {
        padding: 0.5rem 0;
        padding-left: 1.75rem;
        font-size: 0.9375rem;
    }

    /* Imagem com altura máxima e object-fit */
    .service-detail-image {
        border-radius: var(--radius-lg);
        overflow: hidden;
        max-height: 280px;
    }

    .service-detail-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    /* Botão de orçamento: largura total */
    .service-detail-content .btn {
        width: 100%;
        justify-content: center;
        margin-top: 1.5rem;
    }

    /* --- Contato --- */
    .contact-methods {
        padding: 2.5rem 0;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.125rem;
    }

    .contact-method-card {
        padding: 1.75rem 1.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.75rem 1.25rem;
    }

    /* --- Rating --- */
    .rating-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    /* --- Planos --- */
    .plans-grid {
        grid-template-columns: 1fr;
    }

    /* --- FAQ --- */
    .quick-faq {
        padding: 3rem 0;
    }

    .quick-faq h2 {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* --- Blog --- */
    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 240px;
    }

    /* --- Depoimentos --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* --- Sobre --- */
    .about-content {
        padding: 3rem 0;
    }

    .about-text h2 {
        font-size: 1.875rem;
    }

    /* --- WhatsApp Flutuante --- */
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

/* ====== MOBILE RETRATO (≤ 480px) ====== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* --- Logo --- */
    .logo span {
        font-size: 1.375rem;
    }

    .logo img {
        height: 40px;
        max-height: 40px;
    }

    /* --- Hero --- */
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.9375rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }

    /* --- Page Header --- */
    .page-header {
        padding: 2.25rem 0;
    }

    .page-header h1 {
        font-size: 1.625rem;
    }

    /* --- Section Header --- */
    .section-header h2 {
        font-size: 1.625rem;
    }

    /* --- Serviços --- */
    .service-card {
        padding: 1.5rem 1.25rem;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 1.625rem;
    }

    /* --- Service Detail --- */
    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-image {
        max-height: 240px;
    }

    .service-detail-image img {
        height: 240px;
    }

    .service-badge {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 1.25rem;
    }

    /* --- Diferenciais --- */
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .differential-item {
        padding: 0 0.5rem;
    }

    /* --- Estatísticas --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 0.875rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.875rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    /* --- Steps --- */
    .step-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.25rem;
    }

    /* --- CTA --- */
    .cta-content h2 {
        font-size: 1.625rem;
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    /* --- Blog --- */
    .blog-image {
        height: 180px;
    }

    /* --- Contato Form --- */
    .contact-form-container h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    /* --- Rating --- */
    .rating-score h2 {
        font-size: 3.5rem;
    }

    .stars-large {
        font-size: 1.5rem;
    }

    .rating-bar {
        grid-template-columns: 70px 1fr 45px;
        gap: 0.5rem;
    }

    /* --- Planos --- */
    .plan-card {
        padding: 2rem 1.5rem;
    }

    /* --- Depoimentos --- */
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    /* --- Equipe --- */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* --- MVV --- */
    .mvv-grid {
        grid-template-columns: 1fr;
    }

    /* --- Certifications --- */
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* --- Sobre --- */
    .about-text h2 {
        font-size: 1.625rem;
    }

    /* --- WhatsApp Float --- */
    .whatsapp-float {
        bottom: 16px;
        right: 12px;
        width: 52px;
        height: 52px;
        font-size: 1.625rem;
    }
}

/* ====== TELAS MUITO PEQUENAS (≤ 375px) ====== */
@media (max-width: 375px) {
    .container {
        padding: 0 0.875rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item h3 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .logo span {
        font-size: 1.25rem;
    }

    .logo img {
        height: 36px;
        max-height: 36px;
    }

    .nav-menu {
        width: 88%;
        padding: 88px 1.5rem 2rem;
    }
}

/* ====== DISPOSITIVOS TOUCH: REMOVE HOVER TRANSFORMS ====== */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .testimonial-card:hover,
    .team-member:hover,
    .plan-card:hover,
    .blog-card:hover,
    .differential-card:hover,
    .cert-item:hover,
    .contact-method-card:hover,
    .step-item:hover,
    .stat-item:hover,
    .footer-col ul li a:hover,
    .social-links a:hover {
        transform: none;
    }
}

/* ========================================
   ANIMAÇÕES E TRANSIÇÕES EXTRAS
======================================== */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .testimonial-card,
    .team-member,
    .blog-card {
        animation: fadeIn 0.6s ease-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Seleção de texto */
::selection {
    background-color: var(--primary-light);
    color: white;
}

/* Loading state para imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
