/* ========================================
   PREMIUMODONTO - LANDING PAGE VERMELHA
   Paleta de Cores: Vermelho (Urgência e Ação)
   Data: 18/11/2025
   ======================================== */

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - VERMELHO */
    --primary-color: #dc2626;        /* Vermelho principal (red-600) */
    --primary-dark: #b91c1c;         /* Vermelho escuro (red-700) */
    --primary-light: #ef4444;        /* Vermelho claro (red-500) */
    --secondary-color: #991b1b;      /* Vermelho bordô (red-800) */
    --accent-color: #dc2626;         /* Vermelho de ação */
    --accent-hover: #b91c1c;         /* Hover vermelho escuro */
    
    /* Cores neutras */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --black: #0f0f0f;
    
    /* Vermelho para gradientes */
    --gradient-red-start: #dc2626;
    --gradient-red-mid: #ef4444;
    --gradient-red-end: #f87171;
    
    /* Sombras com tom vermelho */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 10px 30px -5px rgba(220, 38, 38, 0.3);
    --shadow-red-xl: 0 20px 40px -5px rgba(220, 38, 38, 0.4);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER FIXO MODERNO - VERMELHO
   ======================================== */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-color);
}

.header-fixed .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.btn-header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-xl);
}

/* ========================================
   HERO SECTION MODERNA - VERMELHO
   ======================================== */
.hero-modern {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.container-hero {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary-lg {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-lg:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary-lg {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary-lg:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: #fde68a;
}

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

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   SEÇÃO DE BENEFÍCIOS - VERMELHO
   ======================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red-xl);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   SEÇÕES GENÉRICAS - VERMELHO
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-red);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   TRANSFORMAÇÕES - VERMELHO
   ======================================== */
.transformations-section {
    padding: 100px 0;
    background: var(--white);
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.transformation-item {
    background: var(--gray-50);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.transformation-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red-xl);
    border-color: var(--primary-color);
}

.transformation-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.transformation-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(220, 38, 38, 0.1) 100%);
    pointer-events: none;
}

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

.transformation-item:hover .transformation-image img {
    transform: scale(1.05);
}

.transformation-info {
    padding: 32px;
    background: var(--white);
}

.transformation-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.clinic-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-red);
}

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

.btn-primary-md {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.btn-primary-md:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red-xl);
}

/* ========================================
   TRATAMENTOS - VERMELHO
   ======================================== */
.treatments-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.treatment-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red-xl);
    border-color: var(--primary-color);
}

.treatment-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-red);
}

.treatment-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-red);
}

.treatment-icon {
    font-size: 2.5rem;
}

.treatment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.treatment-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.treatment-features {
    list-style: none;
    padding: 0;
}

.treatment-features li {
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

.treatment-features li:last-child {
    border-bottom: none;
}

/* ========================================
   CLÍNICAS - VERMELHO
   ======================================== */
.clinics-section {
    padding: 100px 0;
    background: var(--white);
}

.clinics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.clinic-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.clinic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red-xl);
    border-color: var(--primary-color);
}

.clinic-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--primary-color);
}

.clinic-icon {
    font-size: 3rem;
}

.clinic-location h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.clinic-name {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.clinic-address {
    margin-bottom: 24px;
    line-height: 1.7;
}

.clinic-address p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.clinic-address strong {
    color: var(--gray-900);
    font-weight: 600;
}

.clinic-reference {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
}

.clinic-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-clinic-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-red);
}

.btn-clinic-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-xl);
}

.btn-clinic-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-clinic-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   CTA FINAL - VERMELHO
   ======================================== */
.cta-final-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cta-final-content {
    position: relative;
    z-index: 10;
}

.cta-final-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-final-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-final {
    background: var(--white);
    color: var(--primary-color);
    padding: 20px 48px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-final:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-guarantee {
    margin-top: 32px;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-cities {
    text-align: right;
}

.footer-cities p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   WHATSAPP FLUTUANTE - VERDE (PADRÃO)
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ========================================
   MODAL DE AGENDAMENTO - VERMELHO
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-container {
    background: var(--white);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.4);
    border-top: 4px solid var(--primary-color);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.modal-header p {
    font-size: 1rem;
    color: var(--gray-600);
}

.modal-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-info-box {
    background: #fef2f2;
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
}

.form-info-box p {
    margin: 0;
    color: var(--primary-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

.btn-form-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.btn-form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-xl);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 1024px) {
    .container-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .clinics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .transformations-grid {
        grid-template-columns: 1fr;
    }
    
    .clinics-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-cities {
        text-align: center;
    }
    
    .modal-container {
        margin: 20px;
    }
    
    .modal-header,
    .modal-form {
        padding: 30px 24px;
    }
    
    .btn-header-cta {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}
