/* ============================================
   MAIN.CSS - ÁREA PÚBLICA MEDGEST
   Tema: Profissional, acolhedor e moderno
   ============================================ */

/* --------------------------------------------
   VARIÁVEIS E RESET
   -------------------------------------------- */
:root {
    /* Cores principais - Azul profissional com toques de verde saúde */
    --primary-50: #e8f0fe;
    --primary-100: #d1e2fd;
    --primary-200: #a3c5fb;
    --primary-300: #75a8f9;
    --primary-400: #478bf7;
    --primary-500: #2A5C7F;  /* Azul principal - confiança */
    --primary-600: #1e4a6b;
    --primary-700: #163b54;
    --primary-800: #0f2c3e;
    --primary-900: #091e2b;
    
    /* Verde saúde - crescimento, bem-estar */
    --secondary-50: #e8f5e9;
    --secondary-100: #c8e6c9;
    --secondary-200: #a5d6a7;
    --secondary-300: #81c784;
    --secondary-400: #66bb6a;
    --secondary-500: #4CAF80;  /* Verde saúde */
    --secondary-600: #43a047;
    --secondary-700: #388e3c;
    --secondary-800: #2e7d32;
    --secondary-900: #1b5e20;
    
    /* Tons neutros */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Cores de apoio */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Cores de fundo */
    --bg-primary: #ffffff;
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    
    /* Tipografia */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Tamanhos */
    --container-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* --------------------------------------------
   TIPOGRAFIA
   -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    color: var(--primary-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-600);
}

/* --------------------------------------------
   LAYOUT
   -------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Seções */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-500);
}

/* --------------------------------------------
   HEADER
   -------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
}

.logo .highlight {
    color: var(--primary-500);
}

/* Menu Desktop */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
    transition: width var(--transition-normal);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--primary-500);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 12px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    box-shadow: 0 4px 15px rgba(42, 92, 127, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 92, 127, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-500);
    color: var(--primary-500);
}

.btn-outline:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--primary-500);
    padding: 0;
    font-weight: 600;
}

.btn-link i {
    transition: transform var(--transition-fast);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gray-800);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-mobile {
    display: none;
}

/* --------------------------------------------
   HERO SECTION
   -------------------------------------------- */
.hero {
    padding-top: calc(var(--header-height) + 40px);
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 92, 127, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 128, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 92, 127, 0.1);
    color: var(--primary-500);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-tagline i {
    color: var(--secondary-500);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.hero-features i {
    color: var(--secondary-500);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.02);
}

.hero-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    color: var(--primary-500);
}

.hero-image-badge i {
    color: gold;
    margin-right: 8px;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: white;
}

/* --------------------------------------------
   PARTNERS SECTION
   -------------------------------------------- */
.partners {
    padding: 40px 0;
    background: white;
}

.partners-title {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.partners-grid img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity var(--transition-normal);
    filter: grayscale(100%);
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --------------------------------------------
   FEATURES SECTION
   -------------------------------------------- */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.featured {
    border: 2px solid var(--primary-200);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--secondary-500);
}

.features-cta {
    text-align: center;
}

/* --------------------------------------------
   BENEFITS SECTION
   -------------------------------------------- */
.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-tagline {
    display: inline-block;
    background: rgba(76, 175, 128, 0.1);
    color: var(--secondary-600);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.benefits-content h2 {
    margin-bottom: 20px;
}

.benefits-text {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-500);
}

.benefit-info h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.benefit-info p {
    color: var(--gray-500);
    margin: 0;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.benefits-image-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-image-card i {
    font-size: 2rem;
    color: var(--secondary-500);
}

.benefits-image-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--gray-900);
}

.benefits-image-card span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* --------------------------------------------
   SPECIALTIES SECTION
   -------------------------------------------- */
.specialties {
    background: var(--bg-secondary);
}

.specialties-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.specialty-tag {
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    color: var(--gray-700);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.specialty-tag:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* --------------------------------------------
   TESTIMONIALS SECTION
   -------------------------------------------- */
.testimonials {
    background: white;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--primary-500);
}

/* --------------------------------------------
   STATS SECTION
   -------------------------------------------- */
.stats {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --------------------------------------------
   BLOG PREVIEW SECTION
   -------------------------------------------- */
.blog-preview {
    background: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-500);
    font-weight: 600;
}

.read-more i {
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
}

/* --------------------------------------------
   CTA FINAL SECTION
   -------------------------------------------- */
.cta-final {
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--border-radius-xl);
    padding: 60px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

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

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-500);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-guarantee i {
    color: gold;
}

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-500);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    margin-bottom: 20px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-400);
}

.contact-info i {
    width: 20px;
    color: var(--primary-500);
}

.newsletter h5 {
    color: white;
    margin-bottom: 12px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-700);
    background: var(--gray-800);
    border-radius: 50px;
    color: white;
    outline: none;
    transition: all var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--primary-500);
    background: var(--gray-700);
}

.newsletter-form button {
    width: 46px;
    height: 46px;
    border: none;
    background: var(--primary-500);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: var(--primary-600);
    transform: scale(1.05);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
}

.separator {
    color: var(--gray-600);
}

.copyright {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* --------------------------------------------
   RESPONSIVIDADE
   -------------------------------------------- */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-grid {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-col-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-desktop,
    .header-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-mobile {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        padding: 30px 20px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-mobile.active {
        transform: translateX(0);
    }
    
    .nav-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .nav-mobile-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--gray-900);
    }
    
    .nav-mobile-close {
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--gray-500);
    }
    
    .nav-mobile-list {
        list-style: none;
    }
    
    .nav-mobile-list li {
        margin-bottom: 20px;
    }
    
    .nav-mobile-list a {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.2rem;
        color: var(--gray-800);
        padding: 10px 0;
    }
    
    .nav-mobile-list i {
        width: 24px;
        color: var(--primary-500);
    }
    
    .mobile-divider {
        height: 1px;
        background: var(--gray-200);
        margin: 20px 0;
    }
    
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-outline-mobile,
    .btn-primary-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        border-radius: 50px;
        font-weight: 600;
        width: 100%;
    }
    
    .btn-outline-mobile {
        border: 2px solid var(--primary-500);
        color: var(--primary-500);
    }
    
    .btn-primary-mobile {
        background: var(--primary-500);
        color: white;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/*
Especialidades_f
*/
/* Adicione ao final do arquivo main.css */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 120px 0 60px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumb i {
    font-size: 0.8rem;
    margin: 0 8px;
}

/* Specialties CTA */
.specialties-cta {
    padding: 60px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    border-radius: var(--border-radius-xl);
    padding: 60px;
    text-align: center;
    color: white;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 0;
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}