/* ============================================
   AUGUSTAFONTANEROS24H - ESTILOS PRINCIPALES
   Diseño Profesional y Moderno
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES / CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colores Primarios - Azul Profesional */
    --primary-900: #0a1628;
    --primary-800: #0d2240;
    --primary-700: #0f2d52;
    --primary-600: #1a4170;
    --primary-500: #2563eb;
    --primary-400: #3b82f6;
    --primary-300: #60a5fa;
    --primary-200: #93c5fd;
    --primary-100: #dbeafe;
    
    /* Colores Accent - Naranja/Dorado */
    --accent-600: #d97706;
    --accent-500: #f59e0b;
    --accent-400: #fbbf24;
    --accent-300: #fcd34d;
    --accent-200: #fde68a;
    
    /* Colores Neutros */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    
    /* Colores Semánticos */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Colores de Fondo */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: var(--primary-900);
    --bg-gradient: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 100%);
    
    /* Tipografía */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Tamaños de Fuente */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Espaciado */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Bordes */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
    
    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   HIDE SCROLLBAR - Ocultar barras de desplazamiento
   ============================================ */
/* Para navegadores Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

/* Para Firefox */
html {
    scrollbar-width: none;
}

/* Para IE/Edge antiguo */
body {
    -ms-overflow-style: none;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
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: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

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

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    overflow-x: hidden;
}

/* Prevent horizontal scroll */
main, section, footer, header {
    overflow-x: hidden;
    max-width: 100vw;
}

.container-sm {
    max-width: 768px;
}

.container-lg {
    max-width: 1536px;
}

section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-500);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background: transparent;
    transition: all var(--transition-base);
    overflow: visible;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.header.scrolled .logo-text {
    color: var(--primary-800);
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: white;
    transition: color var(--transition-base);
}

.logo-text span {
    color: var(--accent-400);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

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

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

.nav-cta {
    background: var(--accent-500);
    color: white !important;
    padding: var(--space-3) var(--space-6) !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.header.scrolled .mobile-toggle span {
    background: var(--gray-700);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile menu overlay - handled separately */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-20) var(--space-6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--accent-400);
}

.hero-badge span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--accent-400);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-10);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-12);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature i {
    font-size: var(--text-xl);
    color: var(--accent-400);
}

.hero-feature span {
    font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-500);
    color: white;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: var(--accent-600);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

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

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

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}

.service-icon i {
    font-size: var(--text-3xl);
    color: var(--primary-500);
}

.service-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-500);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: var(--space-3);
    color: var(--accent-500);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: white;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-500);
    color: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.about-content {
    padding-left: var(--space-8);
}

.about-text {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

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

.about-feature-icon i {
    font-size: var(--text-xl);
    color: var(--primary-500);
}

.about-feature-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.about-feature-text {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--bg-gradient);
    position: relative;
    padding: var(--space-16) 0;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
}

.contact-info {
    background: var(--bg-gradient);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.contact-info-title {
    font-size: var(--text-2xl);
    color: white;
    margin-bottom: var(--space-6);
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: var(--text-xl);
    color: var(--accent-400);
}

.contact-item-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-1);
}

.contact-item-value {
    font-weight: 600;
    color: white;
}

.contact-item-value a {
    color: white;
    transition: color var(--transition-fast);
}

.contact-item-value a:hover {
    color: var(--accent-400);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-8);
}

.contact-form {
    display: grid;
    gap: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.form-group select,
.form-select {
    width: 100%;
    padding: var(--space-4);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--gray-900);
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-500);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-500);
    cursor: pointer;
}

.form-checkbox label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 0;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary-500);
    text-decoration: underline;
}

.form-note {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-top: var(--space-3);
    text-align: center;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-900);
    color: white;
    padding-top: var(--space-20);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    padding-right: var(--space-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: white;
}

.footer-logo-text span {
    color: var(--accent-400);
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: white;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-500);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: var(--text-lg);
    color: white;
    margin-bottom: var(--space-6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-400);
    padding-left: var(--space-2);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-contact-item i {
    color: var(--accent-400);
    margin-top: 4px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--accent-400);
}

.footer-bottom {
    padding: var(--space-8) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-400);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--bg-gradient);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: var(--text-4xl);
    color: white;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--bg-gradient);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: var(--text-5xl);
    color: white;
    margin-bottom: var(--space-4);
}

.page-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.breadcrumb a,
.breadcrumb span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent-400);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: #25D366;
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp i {
    font-size: 1.6rem;
}

.floating-whatsapp span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-sm);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.6);
    }
}

/* ============================================
   ABOUT FULL SECTION (Quiénes Somos)
   ============================================ */
.about-full {
    padding: var(--space-20) 0;
    background: white;
    overflow-x: hidden;
}

.about-block {
    margin-bottom: var(--space-20);
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block .section-header {
    text-align: left;
    margin-bottom: var(--space-8);
}

.about-block-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-block.reverse .about-block-content {
    grid-template-columns: 1fr 1.5fr;
}

.about-block.reverse .about-block-content > *:first-child {
    order: 2;
}

.about-block.reverse .about-block-content > *:last-child {
    order: 1;
}

.about-block-text p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.about-block-text p.lead-text {
    font-size: var(--text-xl);
    color: var(--gray-700);
}

.about-block-text strong {
    color: var(--primary-600);
}

.about-block-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-block-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-block-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.feature-box {
    background: var(--bg-secondary);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--primary-200);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    font-size: var(--text-3xl);
    color: var(--primary-500);
    margin-bottom: var(--space-3);
}

.feature-box h4 {
    font-size: var(--text-lg);
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.feature-box p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

.about-block.highlight {
    background: var(--bg-secondary);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-12);
}

.about-block.highlight .section-header {
    text-align: center;
}

.about-block.highlight .about-block-content {
    display: block;
}

.about-block-text.full-width {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   COVERAGE SECTION - Cobertura Zaragoza
   ============================================ */
.coverage-section {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-16);
    margin-top: var(--space-16);
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.coverage-header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 1;
}

.coverage-header .section-label {
    color: var(--accent-400);
}

.coverage-header .section-title {
    color: white;
    font-size: var(--text-4xl);
}

.coverage-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Mapa Visual */
.coverage-map {
    position: relative;
}

.map-container {
    width: 100%;
    aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.map-central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    z-index: 10;
    animation: pulse-glow 2s ease-in-out infinite;
}

.map-central i {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.map-central span {
    font-size: 1.2rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(245, 158, 11, 0.6); }
}

.map-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: expand-circle 3s ease-out infinite;
}

.map-circle.circle-1 {
    width: 60%;
    height: 60%;
    animation-delay: 0s;
}

.map-circle.circle-2 {
    width: 80%;
    height: 80%;
    animation-delay: 1s;
}

.map-circle.circle-3 {
    width: 100%;
    height: 100%;
    animation-delay: 2s;
}

@keyframes expand-circle {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

.map-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.map-pin::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-500);
    border-radius: 50%;
    transform: rotate(45deg);
}

.map-pin span {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-pin:hover span {
    opacity: 1;
}

.map-pin:hover {
    transform: rotate(-45deg) scale(1.2);
    background: var(--accent-400);
}

.map-pin:hover::before {
    background: white;
}

/* Info de cobertura */
.coverage-info {
    color: white;
}

.coverage-highlight {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-text h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    color: white;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Zonas modernas */
.zones-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.zone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: default;
    text-align: center;
}

.zone-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-400);
}

.zone-card i {
    font-size: 1.2rem;
    color: var(--accent-400);
}

.zone-card span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
}

.zone-card-highlight {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
    border-color: transparent;
    grid-column: span 2;
}

.zone-card-highlight:hover {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-300));
    transform: translateY(-3px);
}

.zone-card-highlight i {
    color: white;
}

/* CTA de cobertura */
.coverage-cta {
    text-align: center;
}

.coverage-cta .btn {
    font-size: var(--text-lg);
    padding: var(--space-5) var(--space-10);
}

.coverage-cta-text {
    margin-top: var(--space-3);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

/* Legacy zones-grid para compatibilidad */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.zone-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: white;
    border-radius: var(--radius-lg);
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

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

.zone-item i {
    color: var(--accent-500);
}

.zone-item:hover i {
    color: white;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

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

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

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

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

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

.blog-category {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--accent-500);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-content {
    padding: var(--space-6);
}

.blog-card-title {
    font-size: var(--text-xl);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
}

.blog-card-meta span {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.blog-card-meta i {
    margin-right: var(--space-2);
}

.blog-read-more {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-500);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--accent-500);
    gap: var(--space-3);
}

.blog-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* AOS Custom Animations */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   RESPONSIVE DESIGN - COMPLETO
   ============================================ */

/* ===== TABLETS LANDSCAPE (1024px) ===== */
@media (max-width: 1024px) {
    /* Container */
    .container {
        padding: 0 var(--space-6);
    }
    
    /* About */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero */
    .hero {
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Block */
    .about-block-content {
        gap: var(--space-8);
    }
    
    .about-block-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== TABLETS PORTRAIT (768px) ===== */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        position: relative;
    }
    
    .container,
    .hero-content,
    .services-grid,
    .stats-grid,
    .about-block-content,
    .about-block-features,
    .blog-grid,
    .contact-wrapper,
    .footer-main,
    .zones-modern,
    .coverage-content {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix for rows that might overflow */
    .form-row {
        flex-wrap: wrap;
    }
    
    /* Typography Scale Down */
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
    }
    
    /* Sections Padding */
    section {
        padding: var(--space-12) 0;
    }
    
    .container {
        padding: 0 var(--space-5);
    }
    
    /* Mobile Navigation */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        padding: var(--space-24) var(--space-8) var(--space-8);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1000;
        transform: translateX(100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
        pointer-events: none;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-link {
        color: var(--gray-800);
        font-size: var(--text-lg);
        padding: var(--space-4) 0;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
        display: flex;
        align-items: center;
        gap: var(--space-3);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-500);
        background: transparent;
    }
    
    .nav-cta {
        margin-top: var(--space-6);
        text-align: center;
        display: flex;
        justify-content: center;
        background: var(--primary-500);
        color: white !important;
        border-radius: var(--radius-lg);
        padding: var(--space-4) !important;
    }
    
    /* Header Fixed */
    .header {
        padding: var(--space-3) 0;
    }
    
    .header.scrolled {
        padding: var(--space-2) 0;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: var(--text-lg);
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 100px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        padding: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: var(--space-10);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
    }
    
    /* Services */
    .services {
        padding: var(--space-12) 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .service-card {
        padding: var(--space-6);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: var(--text-lg);
    }
    
    /* Stats */
    .stats {
        padding: var(--space-10) 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
    
    .stat-item {
        padding: var(--space-5);
    }
    
    .stat-number {
        font-size: var(--text-3xl);
    }
    
    .stat-label {
        font-size: var(--text-sm);
    }
    
    /* About Full Section */
    .about-full {
        padding: var(--space-12) 0;
    }
    
    .about-block {
        margin-bottom: var(--space-10);
    }
    
    .about-block-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .about-block.reverse .about-block-content {
        grid-template-columns: 1fr;
    }
    
    .about-block.reverse .about-block-content > *:first-child,
    .about-block.reverse .about-block-content > *:last-child {
        order: unset;
    }
    
    .about-block .section-header {
        text-align: center;
    }
    
    .about-block-text {
        text-align: center;
    }
    
    .about-block-text .lead-text {
        font-size: var(--text-lg);
    }
    
    .about-block-image img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    
    .about-block-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .feature-box {
        padding: var(--space-5);
    }
    
    .feature-box i {
        font-size: 1.5rem;
    }
    
    .feature-box h4 {
        font-size: var(--text-base);
    }
    
    .about-block.highlight {
        padding: var(--space-8);
        margin-top: var(--space-10);
    }
    
    /* Coverage Section */
    .coverage-section {
        padding: var(--space-10) var(--space-5);
        margin-top: var(--space-10);
        border-radius: var(--radius-xl);
    }
    
    .coverage-header .section-title {
        font-size: var(--text-2xl);
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .coverage-map {
        order: 2;
    }
    
    .map-container {
        max-width: 260px;
    }
    
    .map-central {
        width: 80px;
        height: 80px;
    }
    
    .map-central i {
        font-size: 1.5rem;
    }
    
    .coverage-highlight {
        padding: var(--space-5);
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-text h3 {
        font-size: var(--text-lg);
    }
    
    .zones-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2);
    }
    
    .zone-card {
        padding: var(--space-3);
    }
    
    .zone-card i {
        font-size: 1rem;
    }
    
    .zone-card span {
        font-size: 0.75rem;
    }
    
    .zone-card-highlight {
        grid-column: span 3;
    }
    
    /* Blog */
    .blog-section {
        padding: var(--space-12) 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .blog-card-content {
        padding: var(--space-5);
    }
    
    .blog-card-title {
        font-size: var(--text-lg);
    }
    
    .blog-cta {
        margin-top: var(--space-8);
    }
    
    /* CTA Section */
    .cta-section {
        padding: var(--space-12) 0;
    }
    
    .cta-title {
        font-size: var(--text-2xl);
    }
    
    .cta-subtitle {
        font-size: var(--text-base);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Contact */
    .contact {
        padding: var(--space-12) 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .contact-info {
        padding: var(--space-8);
        text-align: center;
    }
    
    .contact-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item-icon {
        margin: 0 auto var(--space-3);
    }
    
    .contact-form-wrapper {
        padding: var(--space-6);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer {
        padding-top: var(--space-10);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
        padding-bottom: var(--space-6);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-brand-text {
        font-size: var(--text-sm);
        max-width: 300px;
        margin: 0 auto var(--space-5);
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: var(--space-4);
    }
    
    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-text {
        font-size: var(--text-lg);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
    
    .footer-column {
        padding: var(--space-4) 0;
    }
    
    .footer-column h4 {
        margin-bottom: var(--space-3);
        font-size: var(--text-base);
        color: var(--accent-400);
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }
    
    .footer-links a {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-3);
        display: inline-block;
    }
    
    .footer-links a:hover {
        padding-left: var(--space-3);
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        gap: var(--space-1);
        margin-bottom: var(--space-3);
    }
    
    .footer-contact-item i {
        font-size: 1.2rem;
        margin-top: 0;
    }
    
    .footer-contact-item span,
    .footer-contact-item a {
        font-size: var(--text-sm);
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
        padding: var(--space-5) var(--space-4);
        margin-top: var(--space-4);
    }
    
    .footer-copyright {
        font-size: var(--text-xs);
        line-height: 1.5;
    }
    
    .footer-legal {
        justify-content: center;
        gap: var(--space-4);
        flex-wrap: wrap;
    }
    
    .footer-legal a {
        font-size: var(--text-xs);
    }
    
    /* Floating WhatsApp Button */
    .floating-whatsapp {
        bottom: var(--space-5);
        right: var(--space-5);
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .floating-whatsapp span {
        display: none;
    }
    
    .floating-whatsapp i {
        font-size: 1.6rem;
    }
    
    /* Zones Grid Legacy */
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE PHONES (480px) ===== */
@media (max-width: 480px) {
    /* Typography */
    :root {
        --text-6xl: 2rem;
        --text-5xl: 1.875rem;
        --text-4xl: 1.5rem;
        --text-3xl: 1.25rem;
        --text-2xl: 1.125rem;
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    /* Hero */
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
    }
    
    .hero-features {
        gap: var(--space-3);
    }
    
    .hero-feature {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }
    
    /* Buttons */
    .btn {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-sm);
    }
    
    .btn-lg {
        padding: var(--space-4) var(--space-6);
    }
    
    /* Section Headers */
    .section-label {
        font-size: var(--text-xs);
    }
    
    .section-title {
        font-size: var(--text-xl);
    }
    
    .section-subtitle {
        font-size: var(--text-sm);
    }
    
    /* Services */
    .service-card {
        padding: var(--space-5);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-title {
        font-size: var(--text-base);
    }
    
    .service-description {
        font-size: var(--text-sm);
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }
    
    .stat-item {
        padding: var(--space-4);
    }
    
    .stat-number {
        font-size: var(--text-2xl);
    }
    
    .stat-label {
        font-size: var(--text-xs);
    }
    
    /* About Block */
    .about-block-features {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: var(--space-4);
    }
    
    .feature-box i {
        font-size: 1.25rem;
    }
    
    .about-block.highlight {
        padding: var(--space-6);
    }
    
    /* Coverage Section */
    .coverage-section {
        padding: var(--space-6) var(--space-4);
        border-radius: var(--radius-lg);
    }
    
    .coverage-header .section-title {
        font-size: var(--text-xl);
    }
    
    .coverage-highlight {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .highlight-text h3 {
        font-size: var(--text-base);
    }
    
    .highlight-text p {
        font-size: var(--text-sm);
    }
    
    .zones-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }
    
    .zone-card {
        padding: var(--space-2) var(--space-3);
    }
    
    .zone-card i {
        font-size: 0.9rem;
    }
    
    .zone-card span {
        font-size: 0.7rem;
    }
    
    .zone-card-highlight {
        grid-column: span 2;
        padding: var(--space-3);
    }
    
    .map-container {
        max-width: 200px;
    }
    
    .map-central {
        width: 60px;
        height: 60px;
    }
    
    .map-central i {
        font-size: 1.2rem;
    }
    
    .map-central span {
        font-size: 0.9rem;
    }
    
    .map-pin {
        width: 24px;
        height: 24px;
    }
    
    .map-pin::before {
        width: 6px;
        height: 6px;
    }
    
    .map-pin span {
        display: none;
    }
    
    .coverage-cta .btn {
        width: 100%;
        font-size: var(--text-sm);
    }
    
    /* Blog */
    .blog-card-image {
        height: 160px;
    }
    
    .blog-card-content {
        padding: var(--space-4);
    }
    
    .blog-card-title {
        font-size: var(--text-base);
    }
    
    .blog-card-excerpt {
        font-size: var(--text-sm);
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: var(--space-2);
        align-items: flex-start;
    }
    
    /* CTA Section */
    .cta-section {
        padding: var(--space-10) 0;
    }
    
    .cta-title {
        font-size: var(--text-xl);
    }
    
    .cta-subtitle {
        font-size: var(--text-sm);
    }
    
    /* Contact */
    .contact-info {
        padding: var(--space-6);
    }
    
    .contact-items {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: var(--space-5);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: var(--space-3);
        font-size: var(--text-sm);
    }
    
    .form-checkbox label {
        font-size: var(--text-xs);
    }
    
    /* Footer Small Mobile */
    .footer {
        padding-top: var(--space-8);
    }
    
    .footer-main {
        gap: var(--space-5);
    }
    
    .footer-brand {
        padding-bottom: var(--space-5);
    }
    
    .footer-brand-text {
        font-size: var(--text-xs);
        max-width: 280px;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo-text {
        font-size: var(--text-base);
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .footer-column {
        padding: var(--space-3) 0;
    }
    
    .footer-column h4 {
        font-size: var(--text-sm);
        margin-bottom: var(--space-2);
    }
    
    .footer-links a {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }
    
    .footer-links a:hover {
        padding-left: var(--space-2);
    }
    
    .footer-contact-item i {
        font-size: 1rem;
    }
    
    .footer-contact-item span,
    .footer-contact-item a {
        font-size: var(--text-xs);
    }
    
    .footer-bottom {
        padding: var(--space-4) var(--space-3);
    }
    
    .footer-copyright {
        font-size: 0.65rem;
    }
    
    .footer-legal {
        gap: var(--space-3);
    }
    
    .footer-legal a {
        font-size: 0.65rem;
    }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: var(--space-4);
        right: var(--space-4);
    }
    
    .floating-whatsapp i {
        font-size: 1.4rem;
    }
    
    /* Zones Grid Legacy */
    .zones-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2);
    }
    
    .zone-item {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
    }
}

/* ===== VERY SMALL PHONES (360px) ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 var(--space-3);
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .zones-modern {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-block-features {
        gap: var(--space-3);
    }
    
    .contact-info {
        padding: var(--space-5);
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp i {
        font-size: 1.3rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-whatsapp {
        animation: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-500);
    color: white;
    padding: var(--space-2) var(--space-4);
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .footer,
    .floating-whatsapp,
    .hero-cta,
    .contact-form-wrapper {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero {
        background: white;
        color: black;
        min-height: auto;
        padding: var(--space-8) 0;
    }
    
    .hero-title,
    .hero-subtitle {
        color: black;
    }
}
