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

:root {
    /* Paleta de colores corporativa profesional */
    --color-primary: #0a3d7a;
    --color-primary-dark: #052a56;
    --color-primary-light: #0d4a8f;
    --color-primary-lighter: #e3ebf5;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #6b6b6b;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-section: #f1f3f5;
    --color-border: #dee2e6;
    --color-border-light: #e9ecef;
    --color-success: #0d7d3a;
    --color-success-light: #0f9d4a;
    --color-success-dark: #0a5d2a;
    --color-accent: #ff6b35;
    --max-width: 1280px;
    --spacing: 2rem;
    /* Sombras más sutiles y profesionales */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 10px 15px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.12);
    /* Transiciones suaves */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Header y navegación */
header {
    background-color: var(--color-bg);
    border-bottom: 3px solid var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-top {
    background: linear-gradient(135deg, #0a3d7a 0%, #052a56 100%);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 1rem;
}

.header-divider {
    width: 1px;
    height: 1.25rem;
    background-color: rgba(255, 255, 255, 0.2);
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.header-phone:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.header-phone-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.header-phone-number {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.125rem;
}

.header-info-label {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 500;
    margin-left: 0.25rem;
}

.header-time-icon,
.header-location-icon {
    font-size: 0.875rem;
    opacity: 0.9;
}

.header-time-text,
.header-location-text {
    font-weight: 500;
    font-size: 0.875rem;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

nav {
    padding: 1.25rem var(--spacing);
    background-color: var(--color-bg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 0;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 0 3px 12px rgba(10, 61, 122, 0.25), 0 1px 3px rgba(10, 61, 122, 0.15);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.75rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 0.125rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.125rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    padding: 0.875rem 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
}

.nav-menu a.btn-phone {
    color: #ffffff !important;
    margin-left: 0.5rem;
}

/* Menu Toggle (Hamburguesa) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.menu-toggle:hover span {
    background-color: var(--color-primary-dark);
}

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

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

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

.nav-menu a:hover {
    color: var(--color-primary);
    background-color: rgba(13, 71, 161, 0.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: calc(100% - 2.5rem);
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.625rem;
    transition: transform var(--transition-base);
    margin-left: 0.25rem;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    background-color: white;
    min-width: 280px;
    box-shadow: var(--shadow-xl);
    border-radius: 8px;
    margin-top: 0;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 10001;
    border: 1px solid var(--color-border-light);
    animation: fadeInDown 0.2s ease;
}

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

/* Desktop: hover funciona - CSS puro como respaldo */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu:hover {
        display: block !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
}

/* Desktop y móvil: clase active */
.dropdown.active .dropdown-menu {
    display: block !important;
}

/* Móvil: dropdown siempre visible cuando está activo */
@media (max-width: 768px) {
    .dropdown.active .dropdown-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        border: none;
        background-color: var(--color-bg-light);
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        border-left: 3px solid transparent;
    }
    
    .dropdown-menu a:hover {
        border-left-color: var(--color-primary);
        background-color: rgba(10, 61, 122, 0.05);
    }
}

/* Asegurar que el menú persista cuando se hace hover sobre él */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.875rem 1.75rem;
    display: block;
    color: var(--color-text);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-primary);
    transform: scaleY(0);
    transition: transform var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--color-primary-lighter);
    color: var(--color-primary);
    padding-left: 2rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a::after {
    display: none;
}

/* CTA Button principal */
.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-dark) 100%);
    color: #ffffff !important;
    padding: 1.125rem 2.25rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(13, 125, 58, 0.3), 0 2px 6px rgba(13, 125, 58, 0.2);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-phone,
.btn-phone * {
    color: #ffffff !important;
}

.btn-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-phone:hover::before {
    left: 100%;
}

.btn-phone:hover {
    background: linear-gradient(135deg, var(--color-success-light) 0%, var(--color-success) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 125, 58, 0.4), 0 4px 10px rgba(13, 125, 58, 0.3);
    color: #ffffff !important;
}

.btn-phone:hover,
.btn-phone:hover * {
    color: #ffffff !important;
}

.btn-phone:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(13, 125, 58, 0.3);
}

.btn-phone-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.btn-phone-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 30%, #f1f3f5 60%, #e9ecef 100%);
    padding: 8rem var(--spacing) 9rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -1px 0 rgba(10, 61, 122, 0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 30%, rgba(10, 61, 122, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 70%, rgba(10, 61, 122, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(10, 61, 122, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(10, 61, 122, 0.015) 2px, rgba(10, 61, 122, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(10, 61, 122, 0.015) 2px, rgba(10, 61, 122, 0.015) 4px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero h1,
.hero h2 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    font-weight: 900;
    line-height: 1.1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1::after,
.hero h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.lead {
    font-size: 1.5rem;
    color: var(--color-text-light);
    max-width: 850px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
    letter-spacing: -0.01em;
}

.hero-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-cta .btn-phone {
    font-size: 1.125rem;
    padding: 1.375rem 3rem;
    box-shadow: 0 6px 24px rgba(13, 125, 58, 0.35), 0 3px 10px rgba(13, 125, 58, 0.25);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 4rem var(--spacing);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.0625rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Servicios */
.services {
    padding: 7rem var(--spacing);
    background-color: var(--color-bg);
    position: relative;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-text);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.services-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 3rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--color-primary);
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
}

.service-card h3 {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    font-weight: 600;
}

.service-card h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.service-card h3 a:hover {
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.75;
    flex-grow: 1;
    font-size: 1rem;
}

.service-card .btn-phone {
    align-self: flex-start;
    width: 100%;
    justify-content: center;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-text-light) 0%, #2a2a2a 100%);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, var(--color-text-light) 100%);
    box-shadow: var(--shadow-md);
}

/* Why us */
.why-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 7rem var(--spacing);
    border-top: 1px solid var(--color-border-light);
    position: relative;
}

.why-us h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-text);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.why-us-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.why-us ul {
    list-style: none;
}

.why-us li {
    padding: 1.125rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--color-text);
    font-size: 1.0625rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--color-border);
}

.why-us li:last-child {
    border-bottom: none;
}

.why-us li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.5rem;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 94, 32, 0.1);
    border-radius: 50%;
}

.why-us-cta {
    text-align: center;
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.why-us-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

.why-us-cta p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

/* Trust Section */
.trust-section {
    background-color: var(--color-bg);
    padding: 5rem var(--spacing);
    border-top: 1px solid var(--color-border-light);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-weight: 600;
}

.trust-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #e0e0e0;
}

.footer-main {
    padding: 5rem var(--spacing) 3.5rem;
    border-top: 4px solid var(--color-primary);
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.2fr 1.2fr;
    gap: 3.5rem;
}

.footer-section {
    min-width: 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.875rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--color-primary);
}

.footer-section a:hover::before {
    opacity: 1;
    left: -8px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.footer-logo h3 {
    margin: 0;
    padding: 0;
    font-size: 1.375rem;
}

.footer-logo h3::after {
    display: none;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
}

.footer-contact-icon {
    font-size: 1.25rem;
    opacity: 0.9;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-label {
    font-size: 0.8125rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-success-light);
    display: block;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: var(--color-success);
    transform: translateX(4px);
}

.footer-contact-value {
    font-size: 0.9375rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Footer Services List */
.footer-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.footer-services-column {
    display: flex;
    flex-direction: column;
}

.footer-services-list li {
    margin-bottom: 0.625rem;
}

/* Footer Trust Badges */
.footer-trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
    color: #b0b0b0;
}

.footer-badge-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Footer Certifications */
.footer-certifications {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-cert-item {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-cert-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-cert-item span {
    color: #b0b0b0;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0a0a0a;
    padding: 2rem var(--spacing);
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-copyright {
    flex: 1;
    min-width: 250px;
}

.footer-copyright p {
    margin: 0;
    color: #888;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-copyright strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-copyright-note {
    margin-top: 0.375rem !important;
    font-size: 0.8125rem !important;
    color: #666 !important;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--color-primary);
}

.footer-separator {
    color: #444;
    font-size: 0.875rem;
}

/* Landing pages específicas */
.service-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #041f3d 100%);
    color: white;
    padding: 8rem var(--spacing) 9rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -15px 40px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    background-size: 50px 50px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 4.25rem;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.service-hero h1::after {
    content: '';
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.service-hero p {
    font-size: 1.5rem;
    opacity: 0.98;
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.service-hero-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-hero-cta .btn-phone {
    font-size: 1.125rem;
    padding: 1.375rem 3rem;
    box-shadow: 0 8px 30px rgba(13, 125, 58, 0.4), 0 4px 12px rgba(13, 125, 58, 0.3);
    background: linear-gradient(135deg, var(--color-success-light) 0%, var(--color-success) 100%);
}

.service-content,
.page-content {
    padding: 5rem var(--spacing);
    background-color: var(--color-bg);
}

.service-content h2,
.page-content h2 {
    font-size: 2.625rem;
    margin-bottom: 2rem;
    margin-top: 4rem;
    color: var(--color-text);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.25rem;
}

.service-content h2:first-child,
.page-content h2:first-child {
    margin-top: 0;
}

.service-content h2::after,
.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(10, 61, 122, 0.2);
}

.service-content p,
.page-content p {
    margin-bottom: 1.75rem;
    color: var(--color-text-light);
    line-height: 1.85;
    font-size: 1.0625rem;
}

/* Page Content Specific Styles */
.content-intro {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--color-border);
}

.intro-text {
    font-size: 1.1875rem !important;
    line-height: 1.8 !important;
    color: var(--color-text) !important;
    max-width: 900px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.content-card {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.content-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--color-primary);
    background: #ffffff;
}

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

.content-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
}

.content-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Why Choose Section */
.why-choose-section {
    margin: 5rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-large {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-large:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-large-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.feature-large h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

.feature-large p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.team-section {
    margin: 4rem 0;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--color-bg-section);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.team-feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.team-feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 600;
}

.team-feature-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    margin: 4rem 0;
}

.commitment-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.commitment-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.commitment-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.commitment-box p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    grid-column: span 1;
}

.contact-card-primary .contact-card-header {
    margin-bottom: 2rem;
}

.contact-card-primary h3 {
    color: white;
    margin: 0;
}

.contact-card-primary .contact-card-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-phone-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin: 1.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone-large:hover {
    transform: scale(1.05);
    color: #ffffff;
}

.contact-card-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin: 1rem 0;
}

.contact-card {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--color-primary);
    background: #ffffff;
}

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

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-section);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--color-text);
    font-weight: 600;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-item strong {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9375rem;
}

.contact-info-item span {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Contact CTA Box */
.contact-cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 5rem 4rem;
    border-radius: 12px;
    margin: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta-content h3 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
    line-height: 1.75;
}

/* Contact Process Timeline */
.contact-process {
    margin: 4rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-weight: 600;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.faq-item {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer {
    padding-left: 2.5rem;
}

.faq-answer p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Help CTA Box */
.help-cta-box {
    background-color: var(--color-bg-section);
    padding: 3rem;
    border-radius: 8px;
    margin: 4rem 0;
    text-align: center;
    border: 2px solid var(--color-primary);
}

.help-cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.help-cta-content p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin: 3.5rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: var(--color-text);
    font-weight: 600;
}

.legal-info-box {
    background-color: var(--color-bg-section);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--color-primary);
}

.legal-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
}

.legal-info-item:last-child {
    border-bottom: none;
}

.legal-info-item strong {
    color: var(--color-text);
    font-weight: 600;
    min-width: 200px;
}

.legal-info-item span {
    color: var(--color-text-light);
    text-align: right;
}

.legal-info-item a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.legal-info-item a:hover {
    text-decoration: underline;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--color-border);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background-color: var(--color-bg-section);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.right-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.right-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.cookie-type-box {
    background-color: var(--color-bg-section);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--color-primary);
}

.cookie-type-box h3 {
    margin-top: 0;
    color: var(--color-primary);
}

.browser-config {
    margin: 2rem 0;
}

.browser-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.browser-item {
    background-color: white;
    padding: 1.25rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.browser-item strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.legal-contact-box {
    background-color: var(--color-bg-section);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--color-primary);
}

.legal-contact-box p {
    margin-bottom: 0.75rem;
}

.legal-contact-box p:last-child {
    margin-bottom: 0;
}

.legal-contact-box a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.legal-contact-box a:hover {
    text-decoration: underline;
}

.service-content ul,
.service-content ol {
    margin-left: 2rem;
    margin-bottom: 1.75rem;
    color: var(--color-text-light);
    line-height: 1.85;
}

.service-content li {
    margin-bottom: 0.875rem;
    font-size: 1.0625rem;
}

/* Service Features Section */
.service-features {
    background-color: var(--color-bg-section);
    padding: 4rem var(--spacing);
    border-top: 1px solid var(--color-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--color-primary);
    background: #ffffff;
}

.feature-box:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.feature-box p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Services List */
.service-services {
    margin: 4rem 0;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item-box {
    background-color: var(--color-bg-section);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.service-item-box:hover {
    background-color: #eeeeee;
    box-shadow: var(--shadow-sm);
}

.service-item-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.service-item-box p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Advantages */
.service-advantages {
    margin: 4rem 0;
    background-color: var(--color-bg-section);
    padding: 3rem;
    border-radius: 8px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 6px;
}

.advantage-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.advantage-item span:last-child {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Service Process */
.service-process {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.process-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Benefits */
.service-benefits {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--color-primary);
    background: #ffffff;
}

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

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Service Zones */
.service-zones {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--color-bg-section);
    border-radius: 8px;
    text-align: center;
}

.service-zones h2 {
    margin-bottom: 1rem;
}

.service-zones p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Intro */
.service-intro {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--color-border);
}

.service-intro h2 {
    margin-top: 0;
}

.service-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.service-section-text {
    margin: 3rem 0;
}

.service-section-text h2 {
    margin-top: 0;
}

/* Service Pricing */
.service-pricing {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--color-bg-section);
    border-radius: 8px;
}

.service-pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-pricing > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
}

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

.pricing-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.pricing-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 6px;
    border-left: 4px solid var(--color-primary);
}

.pricing-disclaimer p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.pricing-disclaimer a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Service Testimonials */
.service-testimonials {
    margin: 4rem 0;
}

.service-testimonials h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.service-testimonials > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 1.0625rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.testimonial-rating {
    color: #FFA500;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--color-bg-section);
    border-radius: 8px;
}

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

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-box .stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 6rem var(--spacing);
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-section p {
    margin-bottom: 3.5rem;
    font-size: 1.375rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
    line-height: 1.75;
}

.cta-section .btn-phone {
    box-shadow: 0 8px 30px rgba(13, 125, 58, 0.4), 0 4px 12px rgba(13, 125, 58, 0.3);
    position: relative;
    z-index: 1;
}

/* Floating CTA (sticky) */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    animation: pulse-subtle 3s infinite;
    filter: drop-shadow(0 4px 12px rgba(13, 125, 58, 0.3));
}

@keyframes pulse-subtle {
    0%, 100% {
        filter: drop-shadow(0 4px 12px rgba(13, 125, 58, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 6px 18px rgba(13, 125, 58, 0.4));
        transform: scale(1.02);
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* Tablet and Medium Screens (max-width: 992px) */
@media (max-width: 992px) {
    .header-top-content {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: center;
    }
    
    /* Ocultar "Servicio 24/7" y "Toda España" en tablet también */
    .header-info-item:nth-child(3),
    .header-info-item:nth-child(5) {
        display: none;
    }
    
    .header-divider {
        display: none;
    }
    
    .header-top-right {
        display: none;
    }
    
    .nav-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo-wrapper {
        width: 100%;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --spacing: 1.5rem;
    }
    
    /* Header Top - Mobile */
    .header-top {
        padding: 0.5rem 0;
        font-size: 0.8125rem;
    }
    
    .header-top-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        text-align: center;
        padding: 0 1rem;
    }
    
    .header-top-left {
        flex-direction: row;
        gap: 0;
        width: auto;
        justify-content: center;
        align-items: center;
    }
    
    /* Ocultar dividers en móvil */
    .header-divider {
        display: none;
    }
    
    /* Ocultar "Servicio 24/7" y "Toda España" en móvil */
    .header-info-item:nth-child(3),
    .header-info-item:nth-child(5) {
        display: none;
    }
    
    /* Mostrar solo el teléfono y "Llamada Gratuita" */
    .header-info-item:first-child {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.25rem 0.75rem;
        width: auto;
        justify-content: center;
        align-items: center;
        font-size: 0.8125rem;
    }
    
    .header-phone-number {
        font-size: 1rem;
    }
    
    .header-info-label {
        font-size: 0.75rem;
        margin-left: 0.25rem;
    }
    
    /* Ocultar badge "Profesionales Certificados" en móvil */
    .header-top-right {
        display: none;
    }
    
    .header-badge {
        display: none;
    }
    
    /* Navigation - Mobile */
    nav {
        padding: 0.875rem 1rem;
    }
    
    .nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        position: relative;
    }
    
    .logo-wrapper {
        flex: 1;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .logo-tagline {
        font-size: 0.625rem;
    }
    
    /* Menu Toggle visible en móvil */
    .menu-toggle {
        display: flex;
    }
    
    /* Menú oculto por defecto en móvil */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem;
        margin: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right var(--transition-base);
        z-index: 1000;
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Overlay cuando el menú está abierto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn var(--transition-base);
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--color-border-light);
    }
    
    .nav-menu a {
        width: 100%;
        justify-content: flex-start;
        padding: 1.125rem 1.5rem;
        text-align: left;
        border-radius: 0;
        font-size: 0.9375rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a.btn-phone {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
        justify-content: center;
        border-radius: 8px;
    }
    
    /* Dropdown en móvil */
    .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0;
        background-color: var(--color-bg-light);
        width: 100%;
        margin: 0;
        border-radius: 0;
        min-width: auto;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .dropdown-menu li {
        display: block !important;
        visibility: visible !important;
    }
    
    .dropdown-menu a {
        padding-left: 2.5rem;
        font-size: 0.875rem;
        display: block !important;
        visibility: visible !important;
    }
    
    .dropdown-arrow {
        margin-left: auto;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Hero Sections */
    .hero {
        padding: 3rem var(--spacing) 4rem;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .lead {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .service-hero {
        padding: 3rem var(--spacing) 4rem;
    }
    
    .service-hero h1 {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .service-hero p {
        font-size: 1.125rem;
    }
    
    /* Content Sections */
    .service-content,
    .page-content {
        padding: 3rem var(--spacing);
    }
    
    .service-content h2,
    .page-content h2 {
        font-size: 1.875rem;
        margin-top: 2.5rem;
    }
    
    .services h2,
    .why-us h2 {
        font-size: 2rem;
    }
    
    .why-us {
        padding: 4rem var(--spacing);
    }
    
    /* Grids */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .services-list-grid,
    .advantages-grid,
    .process-steps,
    .benefits-grid,
    .pricing-cards,
    .testimonials-grid,
    .testimonials-stats,
    .content-grid,
    .features-grid-large,
    .team-features,
    .commitment-boxes,
    .contact-cards-grid,
    .process-timeline,
    .faq-grid,
    .rights-grid,
    .browser-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Service Sections */
    .service-features,
    .service-advantages,
    .service-process,
    .service-zones,
    .service-pricing {
        padding: 2rem 1.5rem;
    }
    
    .service-features {
        padding: 3rem 1.5rem;
    }
    
    .pricing-card,
    .testimonial-card,
    .content-card,
    .contact-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .contact-card-primary {
        padding: 2rem 1.5rem;
    }
    
    .contact-phone-large {
        font-size: 2rem;
    }
    
    .why-choose-section,
    .contact-cta-box,
    .help-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-cta-box {
        padding: 3rem 1.5rem;
    }
    
    /* CTA Sections */
    .cta-section {
        padding: 3rem var(--spacing);
    }
    
    .cta-section h2 {
        font-size: 1.875rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-services-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-bottom {
        padding: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    /* Legal Content */
    .legal-section {
        margin: 2.5rem 0;
        padding-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.75rem;
    }
    
    .legal-info-box,
    .cookie-type-box,
    .legal-contact-box {
        padding: 1.5rem;
    }
    
    .legal-info-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-info-item strong {
        min-width: auto;
    }
    
    .legal-info-item span {
        text-align: left;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        padding: 1.25rem 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    
    .cookie-banner-btn {
        flex: 1;
        width: 100%;
        min-width: auto;
    }
    
    /* Floating CTA */
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .floating-cta .btn-phone {
        width: 100%;
        justify-content: center;
    }
    
    /* Timeline */
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin: 0 auto 1rem;
    }
    
    /* Feature Large */
    .feature-large-number {
        font-size: 2.5rem;
    }
    
    /* Contact Cards */
    .contact-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    /* Team Features */
    .team-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .team-feature-icon {
        margin: 0 auto;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --spacing: 1rem;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 1.875rem;
    }
    
    .service-hero h1 {
        font-size: 1.875rem;
    }
    
    .service-content h2,
    .page-content h2 {
        font-size: 1.625rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-large-number {
        font-size: 2rem;
    }
    
    .contact-phone-large {
        font-size: 1.75rem;
    }
    
    .footer-phone {
        font-size: 1.25rem;
    }
    
    .btn-phone-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.875rem;
    }
}

/* SEO: Mejorar legibilidad y espaciado 
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

/* Mejorar contraste para accesibilidad */
a {
    color: var(--color-primary);
}

a:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 1.5rem var(--spacing);
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--color-success-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-banner-btn-accept {
    background-color: var(--color-success);
    color: white;
}

.cookie-banner-btn-accept:hover {
    background-color: var(--color-success-light);
}

.cookie-banner-btn-reject {
    background-color: transparent;
    color: #e0e0e0;
    border: 1px solid #444;
}

.cookie-banner-btn-reject:hover {
    background-color: #333;
    border-color: #555;
}

.cookie-banner-btn-settings {
    background-color: transparent;
    color: #e0e0e0;
    border: 1px solid #444;
}

.cookie-banner-btn-settings:hover {
    background-color: #333;
    border-color: #555;
}
