/* ===================================
   AssistAir - Aviation Platform Styles
   Colores: Aviación (Celestes/Azules)
   =================================== */

/* === Variables CSS === */
:root {
    /* Colores Principales - Aviación */
    --primary-color: #38BDF8;          /* Sky Blue */
    --primary-dark: #7DD3FC;           /* Ocean Blue */
    --primary-light: #BAE6FD;          /* Light Sky */
    --primary-lighter: #E0F2FE;        /* Pale Sky */
    
    /* Colores Secundarios */
    --secondary-color: #F59E0B;        /* Amber (safety orange) */
    --secondary-dark: #D97706;
    --secondary-light: #FCD34D;
    
    /* Colores de Estado */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Backgrounds - Light Mode */
    --bg-primary: #F0F9FF;
    --bg-secondary: #E0F2FE;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(186, 230, 253, 0.25);
    
    /* Neutros */
    --dark: #0C4A6E;
    --dark-secondary: #075985;
    --gray-dark: #0369A1;
    --gray: #0284C7;
    --gray-light: #0EA5E9;
    --gray-lighter: #38BDF8;
    --gray-lightest: #7DD3FC;
    --white: #FFFFFF;
    --off-white: #F0F9FF;
    
    /* Text Colors */
    --text-primary: #0C4A6E;
    --text-secondary: #0369A1;
    --text-tertiary: #0284C7;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #7DD3FC 0%, #38BDF8 100%);
    --gradient-hero: linear-gradient(135deg, #BAE6FD 0%, #7DD3FC 50%, #38BDF8 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(186, 230, 253, 0.5) 0%, transparent 70%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(125, 211, 252, 0.5);
    
    /* Borders */
    --border-color: rgba(186, 230, 253, 0.4);
    --border-light: rgba(224, 242, 254, 0.6);
    
    /* Tipograf��a */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: #0C4A6E;
    background-color: #F0F9FF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

/* === Container === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* === Main Content === */
.main-content {
    min-height: 100vh;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn i {
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(186, 230, 253, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: #7DD3FC;
    color: #0369A1;
}

.btn-outline:hover {
    background: #7DD3FC;
    color: #0C4A6E;
}

.btn-outline-white {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: #0369A1;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === Header & Navigation - Floating Design === */
.main-header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    top: 1rem;
    width: calc(100% - 6rem);
}

.header-container {
    background: rgba(224, 242, 254, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(186, 230, 253, 0.4);
    border-radius: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(186, 230, 253, 0.3), 0 2px 8px rgba(125, 211, 252, 0.15);
}

.main-header.scrolled .header-container {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0.875rem 2rem;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: inline-block;
    line-height: 0;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0C4A6E;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    display: block;
}

.logo-text:hover {
    color: #0284C7;
}

/* Navigation Menu */
.header-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-link {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #0369A1;
    background: rgba(186, 230, 253, 0.2);
}

/* Platform Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.platform-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 600px;
    max-width: 90vw;
    background: rgba(240, 249, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(186, 230, 253, 0.4);
    border-radius: 0.875rem;
    box-shadow: 0 20px 60px rgba(186, 230, 253, 0.4), 0 8px 24px rgba(125, 211, 252, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    padding: 1rem;
    pointer-events: none;
}

.platform-dropdown::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.nav-item-dropdown:hover .platform-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.platform-dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.platform-dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-section-header {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.375rem;
}

/* Aplicaci��n Principal */
.platform-main-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(186, 230, 253, 0.15);
    border: 1px solid rgba(125, 211, 252, 0.3);
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-main-item:hover {
    background: rgba(186, 230, 253, 0.3);
    border-color: rgba(125, 211, 252, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(186, 230, 253, 0.4);
}

.platform-main-image {
    width: 100%;
    height: 100px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
}

.platform-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platform-main-content {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.platform-main-icon {
    width: 34px;
    height: 34px;
    background: rgba(186, 230, 253, 0.3);
    border: 1px solid rgba(125, 211, 252, 0.5);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-main-icon i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.platform-main-text h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.platform-main-text p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.35;
}

/* Extensiones Grid */
.platform-extensions-grid {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.platform-extension-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.platform-extension-item:hover {
    background: rgba(186, 230, 253, 0.2);
    border-color: rgba(125, 211, 252, 0.4);
}

.platform-extension-icon {
    width: 32px;
    height: 32px;
    background: rgba(186, 230, 253, 0.25);
    border: 1px solid rgba(125, 211, 252, 0.4);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-extension-icon i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.platform-extension-text h4 {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.1rem;
}

.platform-extension-text p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.3;
}

/* Language/Country Selector */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(186, 230, 253, 0.2);
    border: 1px solid rgba(125, 211, 252, 0.4);
    color: var(--text-secondary);
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
}

.language-btn:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
    color: var(--text-primary);
}

.language-btn .fi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: block;
    clip-path: circle(50% at center);
    -webkit-clip-path: circle(50% at center);
}

.language-text {
    display: none;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    background: rgba(240, 249, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(186, 230, 253, 0.4);
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(186, 230, 253, 0.4), 0 4px 12px rgba(125, 211, 252, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    padding: 0.5rem;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-lightest);
    margin-bottom: 0.5rem;
}

.language-dropdown-header span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.language-option:hover {
    background: rgba(186, 230, 253, 0.2);
    color: #0369A1;
}

.language-option.active {
    background: rgba(186, 230, 253, 0.3);
    color: #0369A1;
    font-weight: 600;
}

.language-option .fi {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    overflow: hidden;
    clip-path: circle(50% at center);
}

/* CTA Buttons */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cta.mobile-only {
    display: none;
}

.header-btn-primary {
    background: linear-gradient(135deg, #0C4A6E 0%, #083344 100%) !important;
    color: #FFFFFF !important;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(12, 74, 110, 0.5);
    white-space: nowrap;
}

.header-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 74, 110, 0.7);
    background: linear-gradient(135deg, #083344 0%, #0C4A6E 100%) !important;
}

.header-btn-primary:active {
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #0369A1;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .main-header {
        top: 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .main-header.scrolled {
        top: 0.25rem;
        width: calc(100% - 1rem);
    }
    
    .header-container {
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
    }
    
    .header-nav {
        gap: 0.5rem;
        position: relative;
    }
    
    .header-logo {
        order: 1;
        flex: 1;
        text-align: left;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        padding: 0.25rem;
        order: 3;
        margin-left: auto;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .language-selector {
        order: 2;
        margin-right: 0.5rem;
        margin-left: 0;
    }
    
    .header-menu {
        position: fixed;
        top: 70px;
        left: 0.5rem;
        right: 0.5rem;
        background: rgba(240, 249, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        border-radius: 0.75rem;
        box-shadow: 0 20px 60px rgba(186, 230, 253, 0.4), 0 8px 24px rgba(125, 211, 252, 0.25);
        border: 1px solid rgba(186, 230, 253, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        z-index: 1000;
        order: 4;
    }
    
    .header-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.875rem;
        border-bottom: 1px solid var(--gray-lightest);
        font-size: 0.9rem;
    }
    
    .platform-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(186, 230, 253, 0.15);
        margin-top: 0.5rem;
        width: 100%;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .nav-item-dropdown.active .platform-dropdown {
        max-height: 1000px;
        padding: 0.5rem;
    }
    
    .platform-dropdown-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .platform-main-item {
        padding: 0.75rem;
    }
    
    .platform-main-image {
        height: 80px;
    }
    
    .platform-extension-item {
        padding: 0.5rem;
    }
    
    .header-cta.desktop-only {
        display: none;
    }
    
    .header-cta.mobile-only {
        display: flex;
    }
    
    .language-btn {
        width: 32px;
        height: 32px;
    }
    
    .language-btn .fi {
        width: 20px;
        height: 20px;
    }
    
    .header-btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .main-header {
        top: 0.25rem;
        width: calc(100% - 0.5rem);
    }
    
    .header-container {
        padding: 0.625rem 0.875rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .header-menu {
        top: 60px;
        left: 0.25rem;
        right: 0.25rem;
        padding: 0.75rem;
    }
    
    .nav-link {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .language-btn {
        width: 28px;
        height: 28px;
    }
    
    .language-btn .fi {
        width: 18px;
        height: 18px;
    }
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 50%, #7DD3FC 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(186, 230, 253, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(125, 211, 252, 0.4) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(224, 242, 254, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 230, 253, 0.5);
    border-radius: 50px;
    color: #0C4A6E;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-title {
    color: #0C4A6E;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #0369A1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0369A1;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-trust {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

/* === Section Styling === */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(186, 230, 253, 0.3) 0%, rgba(224, 242, 254, 0.3) 100%);
    border: 1px solid rgba(125, 211, 252, 0.4);
    border-radius: 50px;
    color: #0369A1;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
}

/* === Problem Section === */
.problem-section {
    background: var(--off-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.problem-icon.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #DC2626;
}

.problem-icon.orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #D97706;
}

.problem-icon.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #F59E0B;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.problem-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-lightest);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* === Solution Section === */
.solution-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: var(--white);
    border: 2px solid var(--gray-lightest);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.platform-card.featured::before {
    opacity: 1;
}

.platform-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(186, 230, 253, 0.3) 0%, rgba(224, 242, 254, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0369A1;
    flex-shrink: 0;
}

.platform-title-group h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.platform-title-group p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-item i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(186, 230, 253, 0.3) 0%, rgba(224, 242, 254, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369A1;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 992px) {
    .solution-platforms {
        grid-template-columns: 1fr;
    }
}

/* === Case Study Section === */
.case-study-section {
    background: linear-gradient(135deg, #BAE6FD 0%, #7DD3FC 100%);
    color: #0C4A6E;
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.case-study-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.case-study-title {
    color: #0C4A6E;
    margin-bottom: 1.5rem;
}

.case-study-intro {
    font-size: 1.125rem;
    color: #0369A1;
    margin-bottom: 3rem;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: rgba(186, 230, 253, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 211, 252, 0.4);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(224, 242, 254, 0.4);
    transform: translateY(-5px);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0C4A6E;
    margin: 0 auto 1rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0C4A6E;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #0369A1;
}

.case-study-quote {
    background: rgba(224, 242, 254, 0.4);
    backdrop-filter: blur(10px);
    border-left: 4px solid #FCD34D;
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
    text-align: left;
}

.case-study-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: #0C4A6E;
    margin-bottom: 1rem;
}

.case-study-quote cite {
    font-size: 0.95rem;
    color: #0369A1;
    font-style: normal;
}

/* === Why Section === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C4A6E;
    margin: 0 auto 1.5rem;
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.why-card p {
    color: var(--gray);
    margin: 0;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 50%, #7DD3FC 100%);
    color: #0C4A6E;
    text-align: center;
}

.cta-content h2 {
    color: #0C4A6E;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.125rem;
    color: #0369A1;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-note {
    color: #0369A1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* === Footer === */
.main-footer {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
    box-shadow: 0 -4px 20px rgba(14, 165, 233, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section h4 i {
    color: #7DD3FC;
    font-size: 1rem;
}

.footer-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-quick-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
}

.footer-quick-links li a:hover {
    color: #7DD3FC;
    border-left-color: #7DD3FC;
    padding-left: 1rem;
    transform: translateX(4px);
}

.footer-quick-links li a i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.footer-contact-info li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 211, 252, 0.2);
    border-radius: 6px;
    color: #7DD3FC;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact-info li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info li a:hover {
    color: #7DD3FC;
}

.footer-contact-info li span {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.footer-credit {
    font-weight: 500;
}

.footer-credit strong {
    color: #7DD3FC;
    font-weight: 700;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: #0369A1;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-quick-links li a,
    .footer-contact-info li {
        justify-content: flex-start;
    }
}

/* === Demo Modal === */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.demo-modal.active {
    display: flex;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.demo-modal-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.demo-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-lightest);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.demo-modal-close:hover {
    background: var(--error);
    color: var(--white);
}

.demo-modal-content {
    padding: 3rem;
}

.demo-modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.demo-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.demo-modal-header h2 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.demo-modal-header p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Form Styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-lightest);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.form-group-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.demo-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: -0.5rem;
}

.demo-form-note i {
    color: var(--info);
}

/* Success State */
.demo-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--success);
    margin: 0 auto 1.5rem;
}

.demo-success h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.demo-success p {
    color: var(--gray);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .demo-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
/* ===== SECCIÓN NOVEDADES/RECONOCIMIENTOS ===== */

.novedades-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
}

.novedades-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Badge superior */
.novedades-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
    }
}

.novedades-badge .material-icons {
    font-size: 20px;
}

/* Contenedor principal */
.novedades-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: start;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Imagen a la izquierda */
.novedades-imagen {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.noticia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.novedades-imagen:hover .noticia-img {
    transform: scale(1.05);
}

.imagen-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.overlay-tag {
    background: rgba(14, 165, 233, 0.95);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Contenido de texto a la derecha */
.novedades-texto {
    padding: 50px 50px 50px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Header de la noticia */
.noticia-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.noticia-categoria {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.noticia-fecha {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* Título */
.noticia-titulo {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}

/* Lead (destacado) */
.noticia-lead {
    padding: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(3, 105, 161, 0.1) 100%);
    border-left: 4px solid #0ea5e9;
    border-radius: 8px;
}

.noticia-lead p {
    font-size: 18px;
    line-height: 1.7;
    color: #1e293b;
    margin: 0;
}

.noticia-lead strong {
    color: #0284c7;
    font-weight: 700;
}

/* Cuerpo de la noticia */
.noticia-cuerpo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noticia-cuerpo p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

/* Destacados con íconos */
.noticia-destacados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 25px 0;
    margin: 15px 0;
}

.destacado-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.destacado-item:hover {
    background: #e0f2fe;
    transform: translateY(-2px);
}

.destacado-icon {
    color: #0ea5e9;
    font-size: 32px;
    flex-shrink: 0;
}

.destacado-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.destacado-item strong {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.destacado-item span {
    color: #64748b;
    font-size: 13px;
}

/* Quote/Cita */
.noticia-quote {
    position: relative;
    padding: 25px 30px 25px 70px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #0ea5e9;
}

.quote-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 48px;
    color: #0ea5e9;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.noticia-quote p {
    font-size: 17px;
    line-height: 1.7;
    color: #f8fafc;
    font-style: italic;
    margin: 0 0 15px 0;
}

.noticia-quote cite {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    font-style: normal;
    font-weight: 600;
}

/* Footer con CTA */
.noticia-footer {
    margin-top: 10px;
}

.btn-leer-mas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-leer-mas:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.btn-leer-mas .material-icons {
    transition: transform 0.3s ease;
}

.btn-leer-mas:hover .material-icons {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .novedades-content {
        grid-template-columns: 1fr;
    }
    
    .novedades-imagen {
        min-height: 400px;
    }
    
    .novedades-texto {
        padding: 40px 30px;
    }
    
    .noticia-titulo {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .novedades-section {
        padding: 60px 0;
    }
    
    .novedades-imagen {
        min-height: 300px;
    }
    
    .novedades-texto {
        padding: 30px 20px;
    }
    
    .noticia-titulo {
        font-size: 24px;
    }
    
    .noticia-lead p {
        font-size: 16px;
    }
    
    .noticia-destacados {
        grid-template-columns: 1fr;
    }
    
    .noticia-quote {
        padding: 20px 20px 20px 60px;
    }
}

@media (max-width: 480px) {
    .novedades-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .noticia-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .noticia-titulo {
        font-size: 22px;
    }
    
    .destacado-item {
        padding: 12px;
    }
}
