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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-img {
    height: 58px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f59e0b;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    color: #fbbf24;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight-yellow {
    color: #fbbf24;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

/* Por Qué Solaris Section */
.por-que-solaris {
    padding: 80px 20px;
    background-image: url('images/fondo-solaris-todas.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 24px;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Misión y Visión Section */
.mision-vision {
    padding: 60px 20px;
    background-image: url('images/fondo-solaris-todas.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
}

.mision-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
    justify-content: center;
}

.mision-box {
    flex: 1;
    background-image: url('images/misión-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 600px;
    max-width: 500px;
}

.vision-box {
    flex: 1;
    background-image: url('images/visión-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 600px;
    max-width: 500px;
}

.mision-title-box {
    background: #fbbf24;
    padding: 15px 30px;
    text-align: center;
    border-bottom: 3px solid #1e3a8a;
    position: relative;
    z-index: 2;
    display: inline-block;
    align-self: center;
    margin-top: 20px;
    border-radius: 8px;
}

.vision-title-box {
    background: #1e3a8a;
    padding: 15px 30px;
    text-align: center;
    border-bottom: 3px solid #fbbf24;
    position: relative;
    z-index: 2;
    display: inline-block;
    align-self: center;
    margin-top: 20px;
    border-radius: 8px;
}

.mision-title {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.vision-title {
    color: #fbbf24;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.mision-content, .vision-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.mision-text, .vision-text {
    color: white;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ¿Quienes Somos? Section */
.quienes-somos {
    padding: 80px 20px;
    background-image: url('images/fondo-solaris-todas.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
}

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

.quienes-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.quienes-text {
    flex: 1;
    text-align: left;
}

.quienes-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: left;
}

.quienes-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.quienes-images {
    flex: 1.2;
    max-width: 750px;
}

.image-single {
    position: relative;
    width: 100%;
    height: 600px;
}

.single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ─── Líneas de Negocio ─── */
.lineas-negocio {
    position: relative;
    padding: 90px 20px 0;
    background-color: #080f1e;
    background-image: url('images/fondo-pag-5.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.lineas-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 25, 0.45);
    pointer-events: none;
}

.lineas-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lineas-header {
    text-align: center;
    margin-bottom: 56px;
}

.lineas-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 14px;
}

.lineas-title {
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.05;
}

/* ─── Slider wrapper ─── */
.ln-slider-wrap {
    position: relative;
}

/* ─── Track: 3 vertical cards side by side ─── */
.ln-track {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow: visible;
}

/* Individual slide — aspect ratio 9:16 */
.ln-slide {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.ln-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.7);
    cursor: default;
}

/* Dark gradient overlay */
.ln-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4,12,30,0.92) 0%,
        rgba(4,12,30,0.45) 50%,
        rgba(4,12,30,0.05) 100%
    );
    border-radius: 20px;
}
.ln-slide-overlay--center {
    background: linear-gradient(
        to top,
        rgba(4,12,30,0.92) 0%,
        rgba(4,12,30,0.45) 50%,
        rgba(4,12,30,0.05) 100%
    );
}

/* Slide content — bottom aligned */
.ln-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}
.ln-slide-content--center {
    width: 100%;
    left: 0;
    text-align: left;
    align-items: flex-start;
}

.ln-slide-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
}
.ln-slide-badge--gold { color: rgba(251,191,36,0.6); }

.ln-slide-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(59,130,246,0.2);
    border: 1px solid rgba(96,165,250,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    margin-bottom: 16px;
}
.ln-slide-icon--gold {
    background: rgba(251,191,36,0.15);
    border-color: rgba(251,191,36,0.35);
    color: #fbbf24;
}

.ln-slide-title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 10px;
}
.ln-slide-title--gold { color: #fde68a; }

.ln-slide-desc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
    margin: 0 0 18px;
}

/* Hide list & desc on inactive slides */
.ln-slide:not(.active) .ln-slide-list,
.ln-slide:not(.active) .ln-slide-desc {
    display: none;
}

.ln-slide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ln-slide-list li {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}
.ln-slide-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fbbf24;
}

/* ─── Arrow buttons ─── */
.ln-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.ln-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ln-arrow:hover {
    background: rgba(251,191,36,0.15);
    border-color: rgba(251,191,36,0.5);
    transform: scale(1.08);
}

/* ─── Dots ─── */
.ln-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.ln-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, width 0.25s;
    padding: 0;
}
.ln-dot.active {
    background: #fbbf24;
    width: 24px;
    border-radius: 4px;
    transform: none;
}

/* ─── Thumbnail nav ─── */
.ln-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 0;
}

.ln-thumb {
    position: relative;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.07);
    padding: 20px 24px 22px;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s;
    overflow: hidden;
}
.ln-thumb:last-child { border-right: none; }
.ln-thumb:hover { background: rgba(255,255,255,0.03); }

.ln-thumb-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.25);
    transition: color 0.25s;
}
.ln-thumb.active .ln-thumb-num { color: #fbbf24; }

.ln-thumb-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    line-height: 1.3;
    transition: color 0.25s;
}
.ln-thumb.active .ln-thumb-label { color: #fff; }

/* animated bottom bar */
.ln-thumb-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #fbbf24;
    width: 0%;
    transition: width 0s;
}
.ln-thumb.active .ln-thumb-bar {
    width: 100%;
    transition: width 5s linear;
}

/* Color Bands */
.blue-band {
    height: 8px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    width: 100%;
}

.yellow-band {
    height: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    width: 100%;
}

/* FAQ Accordion Styles */
.faq-question-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
    will-change: transform;
}

.faq-question-header:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    flex: 1;
    pointer-events: none;
}

.faq-toggle {
    font-size: 18px;
    font-weight: bold;
    color: #f59e0b;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg) scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
    padding: 0 20px 0 95px;
    will-change: max-height;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 20px 20px 95px;
}

.faq-answer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-top: 15px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-image: url('images/fondo-solaris-todas.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-icon {
    flex-shrink: 0;
}

.faq-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
}

/* Beneficios Reales Section */
.beneficios-reales {
    padding: 0;
    margin: 0;
}

.beneficios-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.beneficios-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.beneficios-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beneficios-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.beneficios-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.beneficios-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.beneficios-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.beneficios-cards {
    padding: 60px 20px;
    background: #f8fafc;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
}

.beneficio-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1d4ed8;
    transition: background 0.3s, transform 0.3s;
}

.beneficio-card:hover .beneficio-icon {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff;
    transform: scale(1.08);
}

.beneficio-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.beneficio-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    padding: 60px 20px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #1e3a8a;
}

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

.footer-column {
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-line {
    width: 50px;
    height: 3px;
    background: white;
    margin-bottom: 20px;
}

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

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-list a:hover {
    opacity: 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #f59e0b;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quienes-content {
        gap: 40px;
    }
    
    .quienes-images {
        max-width: 400px;
    }
    
    .mision-vision-container {
        gap: 40px;
    }
    
    .mision-box, .vision-box {
        min-height: 550px;
    }
    
    .ln-track { gap: 12px; }
    .ln-slide-title { font-size: 17px; }
    .ln-slide-content { padding: 22px 18px; }
    .ln-thumbs { display: none; }
    
    .beneficios-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .mision-vision-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .mision-box, .vision-box {
        min-height: 450px;
        max-width: 100%;
        width: 100%;
    }
    
    .mision-title, .vision-title {
        font-size: 22px;
    }
    
    .mision-text, .vision-text {
        font-size: 16px;
    }
    
    .quienes-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .quienes-text {
        text-align: center;
    }
    
    .quienes-title {
        text-align: center;
    }
    
    .quienes-description {
        text-align: center;
    }
    
    .quienes-images {
        max-width: 100%;
    }
    
    .ln-track {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 0;
    }
    .ln-slide {
        display: none;
        aspect-ratio: 9 / 16;
    }
    .ln-slide.active {
        display: block;
        transform: scale(1);
        opacity: 1;
    }
    .ln-slide-content { padding: 24px 20px; }
    .ln-slide-title { font-size: 20px; }
    .ln-slide-desc { font-size: 13px; }
    .lineas-title { font-size: 34px; }
    
    .beneficios-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
    }
    
    .beneficio-card {
        padding: 25px;
    }
    
    .beneficios-title {
        font-size: 28px;
    }
    
    .beneficios-header {
        height: 250px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-line {
        margin: 15px auto;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .beneficios-title {
        font-size: 32px;
    }
    
    .collage-img {
        border-radius: 5px;
    }
    
    .beneficio-card {
        padding: 20px;
    }
}