* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #0f3460;
    --accent-light: #533483;
    --text-dark: #0f1419;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --success: #059669;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    padding-top: 70px;
    overflow-x: hidden;
}

.container-header {
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    position: relative;
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.container-hero,
.container-form,
.container-contact {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-articles {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    display: flex;
    gap: 0px;
    margin-right: auto;
    margin-left: -10px;
    font-style: normal;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.isapre-img {
    height: 25px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.isapre-header-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-left: -15px;
}

.logo:hover .logo-img,
.logo:hover .isapre-img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    background: -webkit-linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    background: none;
    border: none;
    padding: 5px 10px;
    margin-left: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.03);
}

.hamburger-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-lines span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-lines span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active .hamburger-lines span:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-lines span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.hamburger.active .hamburger-label {
    opacity: 0.7;
}

/* Mobile Navigation */


/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    color: white;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    scroll-margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.5) 0%, rgba(26, 42, 78, 0.5) 50%, rgba(15, 52, 96, 0.5) 100%);
    z-index: 1;
}

.hero-features {
    position: absolute;
    bottom: 20px;
    right: 24px;
    left: auto;
    display: flex;
    gap: 8px;
    z-index: 3;
    flex-wrap: nowrap;
    max-width: 100%;
    justify-content: flex-end;
}

.feature-box {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 5px 10px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    animation: slideInUp 0.6s ease-out both;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.feature-box:nth-child(1) { animation-delay: 0.4s; }
.feature-box:nth-child(2) { animation-delay: 0.5s; }
.feature-box:nth-child(3) { animation-delay: 0.6s; }

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.feature-icon {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon-img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero .container-hero {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 0;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
}



.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 32px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

.hero-benefits {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    animation: slideInLeft 0.5s ease-out both, fadeOutWait 6s ease-in-out 2s infinite;
}

.benefit-item:nth-child(1) { animation-delay: 0.3s, 2s; }
.benefit-item:nth-child(2) { animation-delay: 0.8s, 2s; }
.benefit-item:nth-child(3) { animation-delay: 1.3s, 2s; }

.benefit-icon {
    font-size: 1rem;
    flex-shrink: 0;
    animation: scaleIn 0.4s ease-out both, fadeOutWait 6s ease-in-out 2s infinite;
}

.benefit-item:nth-child(1) .benefit-icon { animation-delay: 0.3s, 2s; }
.benefit-item:nth-child(2) .benefit-icon { animation-delay: 0.8s, 2s; }
.benefit-item:nth-child(3) .benefit-icon { animation-delay: 1.3s, 2s; }

.benefit-text {
    opacity: 0.95;
}

/* Hero Benefit Items */
.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.75rem;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.hero-benefit-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    color: #25D366;
}

.hero-benefit-text {
    opacity: 0.95;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutWait {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.benefit-text {
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
    width: fit-content;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botones */
.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    30% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.modal .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.modal .btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1eaa50;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 1rem;
    margin-top: -45px;
    margin-left: auto;
    margin-right: 150px;
}

.btn-block {
    width: 100%;
    padding: 12px;
}

.service-cta-container {
    text-align: left;
    padding: 0px 24px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-cta-container {
        padding: 25px 24px 10px 24px; /* Aumentado de 15px a 25px para bajar el botón en móvil */
        justify-content: center;
    }

    .service-cta-container .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    width: auto;
    max-width: 280px;
}

/* Artículos */
.articulos {
    padding: 20px 0 60px 0;
    background: #fdfaf7;
    position: relative;
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.articles-header {
    text-align: center;
    margin-bottom: 15px;
}

.articles-header-label {
    display: inline-flex;
    align-items: center;
    color: #0f1419;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    gap: 8px;
}

.articles-header-label::before,
.articles-header-label::after {
    content: '';
    width: 5px;
    height: 5px;
    background: #E8833A;
    border-radius: 50%;
}

.articles-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    letter-spacing: -0.8px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.highlight-text {
    color: #E8833A;
}

.articles-header p {
    font-size: 0.8rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}

.why-card {
    background: white;
    border-radius: 10px;
    padding: 15px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02);
    min-height: 200px;
}

.why-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.why-icon-wrapper {
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, #f0f7ff 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon-img-new {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-card-title-group {
    margin-bottom: 0;
}

.why-card h3 {
    font-size: 0.82rem;
    color: #001a4d;
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.05;
}

.title-underline {
    width: 12px;
    height: 1.2px;
    background: #3b82f6;
    border-radius: 1px;
}

.why-card-description {
    font-size: 0.65rem;
    color: #4b5563;
    line-height: 1.15;
    margin-bottom: 6px;
    font-weight: 500;
    margin-left: 55px;
    text-wrap: balance;
}

.why-card-footer-new {
    background: #f1f5f9;
    border-radius: 5px;
    padding: 3px 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.footer-check-wrapper {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.check-svg {
    width: 100%;
    height: 100%;
}

.why-card-footer-new p {
    margin: 0;
    font-size: 0.68rem;
    color: #001a4d;
    font-weight: 700;
}

.highlight-blue {
    color: #3b82f6;
}

/* Closing Section New */
.why-section-closing-new {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 10px 25px;
    margin-top: 10px;
    margin-bottom: 5px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.03);
}

.closing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    max-width: 800px;
    margin: 0 auto;
}

.closing-top-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    width: 100%;
}

.closing-icon {
    font-size: 1.8rem;
    color: #1a1a2e;
    padding: 8px;
    background: #f8fafc;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.closing-text {
    flex: 1;
    margin-left: 20px;
}

.closing-text h3 {
    font-size: 1.05rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.closing-text p {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.3;
}

.closing-cta-wrapper {
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* WhatsApp Large Button */
.btn-whatsapp-large {
    background: #25D366;
    color: white;
    border: none;
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    background: #20ba5a;
}

.whatsapp-icon-large {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.438 9.889-9.886.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.353-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.526l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z"/></svg>') no-repeat center;
    background-size: contain;
}

.whatsapp-icon-png {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
}

.btn-arrow {
    font-size: 1.1rem;
    line-height: 1;
    margin-left: auto;
}

/* Modificadores de color para tarjetas */
.icon-orange { background: radial-gradient(circle, #fff7ed 0%, #ffffff 100%); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.05); }
.icon-green { background: radial-gradient(circle, #f0fdf4 0%, #ffffff 100%); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.05); }

.num-orange { background: #f59e0b !important; }
.num-green { background: #10b981 !important; }

.underline-orange { background: #f59e0b; }
.underline-green { background: #10b981; }

.footer-orange { background: #fff7ed; }
.footer-green { background: #f0fdf4; }

.highlight-orange { color: #f59e0b; }
.highlight-green { color: #10b981; }

.why-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
}

.footer-phone-wrapper {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.phone-svg {
    width: 100%;
    height: 100%;
}





@keyframes slideInCardUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInNumber {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.articulos-carousel-section {
    padding: 20px 0 30px 0;
    background: #fcfdfd;
    position: relative;
    scroll-margin-top: 70px;
}

.benefits-badge {
    display: block;
    text-align: center;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.benefits-main-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #1a1a2e;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.benefits-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.benefits-intro p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.6;
}

.highlight-green {
    color: #10b981;
    font-weight: 700;
}

.articles-carousel::-webkit-scrollbar {
    height: 6px;
}

.articles-carousel::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.articles-carousel::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.articles-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

.article-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-width: 320px;
    max-width: 320px;
    cursor: pointer;
    scroll-snap-align: start;
    animation: fadeInUp 0.8s ease-out both;
}

.article-card:nth-child(1) { animation-delay: 0s; }
.article-card:nth-child(2) { animation-delay: 0.1s; }
.article-card:nth-child(3) { animation-delay: 0.2s; }
.article-card:nth-child(4) { animation-delay: 0.3s; }
.article-card:nth-child(5) { animation-delay: 0.4s; }
.article-card:nth-child(6) { animation-delay: 0.5s; }

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.article-card:hover::before {
    left: 100%;
}

.article-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.04);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.1);
}

.modal-header {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
    align-items: center;
    padding: 12px 18px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.7rem;
}

.modal-date {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
    margin-left: auto;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Modal Contact - Formulario */
.modal-contact {
    max-width: 360px;
    width: 95%;
    min-height: auto; /* Quitamos altura mínima fija */
    background: #ffffff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden !important; /* Forzamos a que no haya scroll */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    position: relative;
    padding-top: 2px;
}

.modal-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.btn-back {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-counter {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Progress Bar */
.form-progress {
    padding: 0 14px;
    margin-top: 6px;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: #f1f5f9;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress-width, 25%);
    background: #2563eb;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.step-title h3 {
    font-size: 0.95rem;
    color: #0f172a;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.step-desc {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 0px;
    margin-bottom: 8px;
}

/* Options Grid */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.options-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.options-grid-split .option-card {
    flex-direction: column;
    text-align: center;
    padding: 4px 8px;
    height: auto;
}

.options-grid-split .option-icon img {
    width: 24px;
    height: 24px;
}

.options-grid-split .option-icon {
    margin-right: 0;
    margin-bottom: 2px;
}

.options-grid-split .option-text {
    font-size: 0.8rem;
    line-height: 1.2;
}

.step-sub-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    display: block;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
    position: relative;
}

.option-card:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

/* Toast de contacto temprano */
.contact-toast {
    background: #059669;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    display: none;
    align-items: center;
    gap: 6px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    position: fixed;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    white-space: nowrap;
}

/* Nuevo diseño WhatsApp según imagen */
.whatsapp-form-group {
    margin-bottom: 20px;
}

/* Renta Cards - Paso 3 */
.renta-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.renta-card {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    gap: 14px;
}

.renta-card:hover {
    border-color: #2563eb;
    background: #f0f7ff;
}

.renta-card.selected {
    border-color: #2563eb;
    background: #f0f7ff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.renta-icon-circle {
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: 1.5px solid #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.renta-text {
    flex-grow: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.renta-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.renta-card.selected .renta-radio {
    border-color: #2563eb;
    background: #2563eb;
}

.renta-card.selected .renta-radio::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.renta-card.selected .renta-icon-circle {
    background: #2563eb;
    color: #ffffff;
}

/* Paso 4 - Finalización */
.objetivo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.objetivo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 4px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    text-align: center;
    gap: 2px;
}

.objetivo-card span {
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.1;
    color: #1e293b;
}

.objetivo-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
}

.objetivo-card:hover {
    border-color: #2563eb;
}

.objetivo-card.selected {
    border-color: #2563eb;
    background: #f0f7ff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
}

.objetivo-card.selected .objetivo-icon {
    color: #2563eb;
}

.form-group-final {
    margin-bottom: 6px;
}

.form-group-final label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1px;
    color: #1e293b;
}

.form-group-final input {
    width: 100%;
    padding: 7px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.88rem;
    background: #f8fafc;
}

.step-title-small h3 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
    margin-top: 2px;
}

.plazo-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.plazo-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    gap: 10px;
    transition: all 0.2s ease;
}

.plazo-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.plazo-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
}

.plazo-item.selected {
    border-color: #2563eb;
    background: #f0f7ff;
}

.plazo-item.selected .plazo-radio {
    border-color: #2563eb;
    background: #2563eb;
}

.plazo-item.selected .plazo-radio::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    padding: 0 4px;
}

.form-actions-final {
    text-align: center;
}

.btn-final-submit {
    width: 100%;
    background: #059669;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    margin-bottom: 6px;
}

.btn-final-submit:hover {
    background: #047857;
    transform: translateY(-1px);
}

.final-footer-text {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 4px;
}

.whatsapp-display-box {
    border: 2px solid #25D366;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: center; /* Centrar icono */
    margin-bottom: 12px;
    background: #f0fff4; /* Fondo verde muy claro */
    min-height: 60px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.whatsapp-icon-large {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1; /* Borde más visible */
    border-radius: 10px;
    background: #f8fafc; /* Fondo sutil */
}

.phone-inputs-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
}

.prefix-box, .number-box {
    border: 1px solid #94a3b8; /* Borde más oscuro para visibilidad */
    border-radius: 10px;
    padding: 8px 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    height: 46px;
    transition: all 0.2s ease;
}

.prefix-box {
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    justify-content: center;
}

.prefix-box .flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.number-box input {
    border: none !important;
    padding: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important; /* Más grueso */
    width: 100%;
    color: #1e293b !important; /* Color más oscuro */
    background: transparent;
}

.number-box input::placeholder {
    color: #94a3b8; /* Placeholder más oscuro */
}

.number-box input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.whatsapp-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #475569;
}

/* Estado de error para el nuevo diseño */
.whatsapp-form-group.error .whatsapp-display-box,
.whatsapp-form-group.error .prefix-box,
.whatsapp-form-group.error .number-box {
    border-color: #ef4444 !important;
}


.privacy-note {
    display: flex;
    gap: 4px;
    margin-top: 10px;
    color: #64748b;
    font-size: 0.6rem;
    line-height: 1.3;
}

.privacy-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.option-card.selected {
    border-color: #2563eb;
    border-width: 2px;
    background: #f0f7ff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.option-icon {
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.option-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(32%) sepia(95%) saturate(1982%) hue-rotate(202deg) brightness(96%) contrast(101%);
}

.option-card.selected .option-icon {
    transform: scale(1.1);
}

.option-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    flex: 1;
    transition: all 0.2s;
}

.option-card.selected .option-text {
    color: #1d4ed8;
    font-weight: 700;
}

.option-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent; /* Oculto por defecto */
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.option-card.selected .option-check {
    background: #2563eb;
    border-color: #2563eb;
    color: white; /* Aparece el check blanco */
    transform: scale(1.1);
}

.modal-contact .form-group {
    margin-bottom: 10px;
}

.modal-contact label {
    font-size: 0.75rem;
    margin-bottom: 3px;
}

.modal-contact input,
.modal-contact select {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.modal-contact .btn-primary {
    border-radius: 8px;
    padding: 10px;
    font-size: 0.875rem;
}

#modalBody {
    padding: 18px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

#modalBody p {
    margin-bottom: 12px;
}

#modalBody strong {
    color: var(--primary);
}

/* Trigger Bio Button */
.btn-bio-trigger {
    background: white;
    border: 2px solid var(--border);
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-bio-trigger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.bio-trigger-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent);
}

.btn-bio-trigger span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}

/* Modal Bio Profesional */
.modal-bio {
    max-width: 900px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

.bio-layout {
    display: flex;
    flex-direction: row;
    min-height: 500px;
    gap: 0;
}

.bio-left-side {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #0f3460 0%, #1a2a4e 100%);
    background-image: url('./manos.jpg');
    background-size: cover;
    background-position: center -80px;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    padding: 10px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    position: relative;
    overflow: hidden;
}

.bio-left-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 52, 96, 0.7) 0%, rgba(15, 52, 96, 0.85) 30%, rgba(15, 52, 96, 0.95) 70%, rgba(15, 52, 96, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.bio-shield-icon {
    font-size: 3.5rem;
    margin-bottom: 0;
    margin-left: 80px;
    margin-top: -20px;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
    position: relative;
    z-index: 2;
}

.bio-shield-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.bio-left-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    margin-top: -30px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    margin-left: 70px;
    position: relative;
    z-index: 2;
}

.bio-highlight {
    color: #3b82f6;
}

.bio-left-items {
    display: none;
}

.bio-left-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.bio-left-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bio-left-item p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    color: white;
}

.bio-left-item strong {
    font-weight: 700;
    color: white;
}

.bio-experience-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 15px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.bio-exp-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bio-exp-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.bio-exp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bio-exp-header {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.bio-exp-years {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: white;
}

.bio-exp-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

.bio-exp-desc {
    font-size: 0.7rem;
    line-height: 1.3;
    opacity: 0.9;
}

.bio-right-side {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
}

.bio-label {
    display: inline-block;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.bio-title {
    font-size: 3.5rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    font-weight: 800;
}

.bio-quote {
    font-size: 0.95rem;
    color: #3b82f6;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    border-left: 3px solid #3b82f6;
    position: relative;
    top: 15px;
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 15px;
    margin-left: 15px;
    position: relative;
    top: 30px;
}

.bio-stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 8px;
}

.bio-stat-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.bio-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bio-stat-number {
    font-size: 1rem;
    font-weight: 800;
    color: #1f2937;
    font-family: 'Playfair Display', serif;
}

.bio-stat-label {
    font-size: 0.55rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.bio-benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
    padding-bottom: 20px;
    position: relative;
    top: 35px;
}

.bio-benefit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.3;
}

.bio-check {
    font-size: 0.9rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 1px;
    background: #d1fae5;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-message-box {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    position: relative;
    top: 25px;
}

.bio-heart {
    font-size: 1rem;
    flex-shrink: 0;
    color: #3b82f6;
}

.bio-message-box p {
    font-size: 0.8rem;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.btn-whatsapp {
    background: #10b981;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 40px;
    margin-bottom: -20px;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.arrow {
    margin-left: 5px;
}

.bio-footer-badges {
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-size: 0.7rem;
    color: #6b7280;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    background: #f3f4f6;
    border-radius: 20px;
    font-weight: 500;
}

/* Responsive Bio Modal */






/* Scrollbar del modal */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
    background-clip: padding-box;
}

.article-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.article-card:hover .article-category {
    transform: scale(1.05);
}

.article-date {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
}

.article-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.article-card:hover h3 {
    color: var(--accent);
}

.article-card p {
    color: var(--text-light);
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.7;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.article-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.article-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.article-link:hover::after {
    width: 100%;
}

/* Formulario Section */
.formulario-section {
    padding: 70px 0;
    background: #fef5e7;
    position: relative;
    overflow: hidden;
}

.formulario-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(210, 180, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
}

.formulario-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 165, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Playfair Display', serif;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out 0.1s both;
    font-family: 'Inter', sans-serif;
}

.formulario {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
    padding: 6px 14px 12px;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.step-title h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    letter-spacing: 0.2px;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-white);
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #d1d5db;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.1);
    background: var(--bg-white);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Controls */
.form-controls {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 20px;
}

.form-controls .btn {
    flex: 1;
    padding: 11px 20px;
    font-size: 0.9rem;
}

/* Progress Bar */
.form-progress {
    margin-bottom: 30px;
    padding: 0 10px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #9ca3af;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step.active {
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.step.completed {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress-width, 0%);
    background: #10b981;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Resultado */
.resultado {
    margin-top: 24px;
    padding: 24px;
    border-radius: 8px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    display: none;
}

.resultado.hidden {
    display: none;
}

.resultado.show {
    display: block;
    animation: slideInDown 0.4s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resultado h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--success);
    font-weight: 700;
}

.resultado h4 {
    font-size: 0.95rem;
    margin-top: 16px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.resultado-item {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.resultado-item:last-child {
    border-bottom: none;
}

.plan-card {
    background: white;
    padding: 16px;
    margin: 12px 0;
    border-radius: 6px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateX(4px);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 8px;
}

.plan-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.plan-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.plan-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 4px 0;
}

.plan-coverage {
    font-size: 0.8rem;
    color: var(--text-light);
}

.plan-savings {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 70px 0;
    background: #f8fafc;
    position: relative;
    scroll-margin-top: 70px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #64748b;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.faq-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.faq-header p {
    font-size: 1rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: fit-content;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #E8833A;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1.4;
}

.faq-question:hover {
    color: #d67329;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #E8833A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-item.active .faq-question {
    color: #E8833A;
    padding-bottom: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #1a1a2e;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

.modal-body {
    padding: 24px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.modal-body p {
    margin: 0;
}

.contacto {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contacto h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Playfair Display', serif;
}

.contacto-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.info-item {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.info-item:nth-child(1) { animation-delay: 0s; }
.info-item:nth-child(2) { animation-delay: 0.1s; }
.info-item:nth-child(3) { animation-delay: 0.2s; }

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-item:hover::before {
    transform: scaleX(1);
}

.info-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.15) rotate(5deg);
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-family: 'Inter', sans-serif;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

/* Geographic Section Wrapper */
.presencia-real-section {
    padding: 5px 0 60px 0;
    position: relative;
    scroll-margin-top: 70px;
    background: linear-gradient(to bottom, 
        #ffffff 0%, 
        #fdfaf7 15%, 
        #fdfaf7 100%
    );
}

.geographic-section-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: -50px;
    position: relative;
}

.geographic-text-side {
    flex: 1;
    text-align: left;
    padding-left: 40px;
    margin-top: -190px;
}

.geo-label {
    display: inline-block;
    color: #693082;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.45rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(105, 48, 130, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 65px;
}

.geo-main-title {
    font-size: 2.4rem;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    line-height: 1.1;
    font-weight: 800;
    margin-left: 35px;
}

.geo-highlight {
    color: #E8833A;
}

.geo-highlight-purple {
    color: #693082;
}

.geo-black {
    color: #1a1a2e;
}

.geo-subtitle {
    font-size: 1rem;
    color: #5d3a3a;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    line-height: 1.3;
    font-style: normal;
    font-weight: 600;
    margin-left: 50px;
}

.geo-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
    max-width: 480px;
}

.geo-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #5d3a3a;
    font-family: 'Playfair Display', serif;
}

.stat-desc {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.btn-outline-geo {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-geo:hover {
    background: #1a1a2e;
    color: white;
}

.presencial-cta {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

/* Map Container */
.geographic-map-container {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 550px;
    width: 100%;
    padding-right: 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
}

.map-chile-zones {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    object-fit: contain;
}

/* Tarjetas de Zonas */
.map-cards {
    position: absolute;
    top: 0;
    right: -110px;
    width: 140px;
    height: 100%;
    z-index: 20;
}

.map-zone-card {
    background: white;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: absolute;
    width: 135px; /* Reducido un poco más la anchura */
}

/* Eliminar líneas punteadas ya que están sobrepuestas */
.map-zone-card::before {
    display: none !important;
}



.map-zone-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.card-norte { 
    border-left: 4px solid #F2994A;
    top: 90px;
    left: -30px;
}
.card-centro { 
    border-left: 4px solid #27AE60; 
    top: 220px;
    left: -50px;
}
.card-sur { 
    border-left: 4px solid #2D9CDB; 
    top: 375px;
    left: -40px;
}

.card-total {
    position: absolute;
    top: 460px;
    left: -70px;
    background: white;
    border: 1px solid rgba(105, 48, 130, 0.1);
    border-radius: 12px;
    width: 230px;
    padding: 10px 12px;
    box-shadow: 0 8px 24px rgba(105, 48, 130, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-total .zone-icon {
    width: 36px;
    height: 36px;
    background: #693082;
    color: white;
    font-size: 1rem;
}

.zone-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.icon-norte { background: rgba(242, 153, 74, 0.1); }
.icon-centro { background: rgba(39, 174, 96, 0.1); }
.icon-sur { background: rgba(45, 156, 219, 0.1); }
.icon-total { 
    background: #693082; 
    color: white;
}

.zone-info h4 {
    font-size: 0.65rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1px 0;
    letter-spacing: 0.3px;
}

.zone-info p {
    font-size: 0.55rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.2;
}

.card-total .zone-info h4 {
    color: #693082;
    font-size: 0.75rem;
    margin-bottom: 4px;
    white-space: nowrap;
}

.card-total .zone-info p {
    font-size: 0.6rem;
    line-height: 1.3;
}

.card-total .zone-info strong {
    color: #693082;
    display: block;
    margin-top: 2px;
}

/* Pins (solo puntos) */
.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20; /* Subido para que tape el inicio de la línea */
}

/* Línea de conexión */
.map-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10; /* Bajado para que quede detrás del pin */
    overflow: visible;
}

.connection-line {
    stroke: #FF006E;
    stroke-width: 2;
    stroke-dasharray: 6 4;
    stroke-linecap: round;
    fill: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.pin-dot {
    width: 16px; /* Aumentado de 14px */
    height: 16px;
    background: #FF006E;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.5); /* Glow más suave */
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.map-pin:hover .pin-dot {
    transform: scale(1.4);
}

.pin-norte { top: 18%; left: 47%; }
.pin-centro { top: 40%; left: 50%; }
.pin-sur { top: 65%; left: 55%; }










/* Modal Comparativo Nuevo - Ultra Compacto y Ancho */
.modal-content.modal-comparison {
    max-width: 1150px !important;
    padding: 8px 20px;
    background: #fcfdfd;
    max-height: 98vh;
    overflow-y: hidden;
}

.modal-header-comparison {
    text-align: center;
    margin-bottom: 5px;
}

.comparison-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 0px;
    font-weight: 800;
}

.text-fonasa { color: #059669; }
.text-isapre { color: #2563eb; }

.comparison-subtitle {
    font-size: 0.8rem;
    color: #4b5563;
    margin-bottom: 3px;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #eff6ff;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    color: #1e40af;
}

.table-responsive-new {
    overflow-x: auto;
    margin-bottom: 8px;
    border-radius: 8px;
}

.comparison-table-new {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
}

/* Headers */
.comparison-table-new th {
    padding: 6px 4px;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
}

.col-feature {
    background: #1a1a2e;
    color: white;
    text-align: left !important;
    font-size: 0.65rem;
    letter-spacing: 0.2px;
    border-top-left-radius: 8px;
    width: 20%;
}

.col-fonasa {
    background: #059669;
    color: white;
    width: 25%;
}

.col-isapre {
    background: #2563eb;
    color: white;
    width: 25%;
}

.col-recommended {
    background: #6366f1;
    color: white;
    border-top-right-radius: 8px;
    width: 30%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.header-icon, .header-icon-star {
    font-size: 0.8rem;
}

.header-main {
    font-size: 0.7rem;
    line-height: 1;
}

.header-sub {
    font-size: 0.55rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Cells */
.comparison-table-new td {
    padding: 3px 6px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.7rem;
    color: #4b5563;
    line-height: 1.1;
}

.cell-feature {
    text-align: left !important;
    font-weight: 700;
    color: #1a1a2e !important;
    background: #f9fafb;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.feature-icon {
    margin-right: 3px;
    font-size: 0.75rem;
}

.cell-recommended {
    background: #f5f3ff;
    color: #4338ca !important;
    font-weight: 600;
}

.recommended-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.check-icon {
    background: #6366f1;
    color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
}

.heart-icon {
    font-size: 0.8rem;
}

/* Footer Modal */
.modal-footer-new {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.trust-bar-modal {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 5px 0;
    border-top: 1px dashed #e5e7eb;
}

.trust-modal-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-modal-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.icon-check { background: #d1fae5; color: #059669; }
.icon-lock { background: #dbeafe; color: #2563eb; }
.icon-handshake { background: #ede9fe; color: #6366f1; }

.trust-modal-text {
    display: flex;
    flex-direction: column;
    font-size: 0.55rem;
    line-height: 1;
}

.trust-modal-text strong { color: #1a1a2e; }
.trust-modal-text span { color: #6b7280; }

.btn-whatsapp-modal {
    background: #10b981;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.1);
}

.btn-whatsapp-modal:hover {
    transform: translateY(-1px);
    background: #059669;
}





/* Footer - Compacto */
/* ===== FOOTER - LIMPIO Y REORGANIZADO ===== */

.footer {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 50%, #138d75 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 12px 24px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.footer-brand {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logos-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-logos-container img {
    height: 35px;
    width: auto;
}

.footer-logos-container img[src*="isapre"] {
    height: 28px;
}

.footer-brand p {
    font-size: 0.55rem;
    line-height: 1.1;
    opacity: 0.9;
    margin: 0;
    margin-right: 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.footer-section:last-child {
    margin-left: auto;
}

.footer-section:nth-child(2) {
    margin-left: auto;
}

.footer-section:nth-child(3) {
    margin-left: auto;
}

.footer-section h4 {
    font-size: 0.55rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.55rem;
    line-height: 1.1;
    opacity: 0.85;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-size: 0.55rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    color: #fff;
}

.footer-contact {
    font-size: 0.55rem;
    opacity: 0.85;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    color: white;
    text-decoration: none;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.btn-footer-legal {
    background: none;
    border: none;
    color: white;
    font-size: 0.55rem;
    cursor: pointer;
    opacity: 0.85;
    transition: all 0.3s ease;
    padding: 0;
    text-decoration: underline;
}

.btn-footer-legal:hover {
    opacity: 1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.5rem;
    opacity: 0.7;
    margin: 0;
}

/* ===== MEDIA QUERIES FOOTER ===== */

@media (max-width: 992px) {
    .footer-content {
        gap: 20px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 10px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 16px;
    }

    .footer-brand {
        width: 100%;
        text-align: center;
    }

    .footer-logos-container {
        justify-content: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-bottom {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 8px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        padding: 8px 12px;
    }

    .footer-logos-container img {
        height: 30px;
    }

    .footer-logos-container img[src*="isapre"] {
        height: 24px;
    }

    .footer-section h4 {
        font-size: 0.5rem;
    }

    .footer-section p {
        font-size: 0.5rem;
    }

    .footer-links li a {
        font-size: 0.5rem;
    }

    .footer-bottom p {
        font-size: 0.45rem;
    }
}
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10b981;
    border-color: #10b981;
    transform: translateY(-2px);
}

.social-link svg {
    width: 10px;
    height: 10px;
}

.btn-footer-legal {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.5rem;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    margin-right: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.5rem;
    opacity: 0.7;
    margin: 0;
}





/* Responsive Generales */



.why-section-intro {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -25px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.why-section-intro p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.why-section-text {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.why-section-text h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.why-section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin: 30px auto;
    border-radius: 1px;
}

.why-section-closing {
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
    animation: fadeInSlideUp 1s ease-out 0.3s both;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-section-closing p {
    font-size: 0.9rem;
    color: var(--primary);
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.closing-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 1px;
}

.why-section-cta {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
    animation: fadeInSlideUp 1s ease-out 0.4s both;
}


/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    max-width: 1250px;
    margin: 0 auto;
    align-items: start;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.logo-text strong {
    color: #10b981;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 8px;
}

.benefits-list-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-item-new {
    display: flex !important;
    background: white !important;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.benefit-item-new:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.benefit-num-new {
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-main-new {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    gap: 12px;
}

.benefit-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-svg-new {
    width: 18px;
    height: 18px;
}

.benefit-text-new {
    flex: 1;
}

.benefit-text-new h3 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 2px;
    font-weight: 700;
}

.benefit-text-new p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.3;
}

.benefit-arrow-new {
    font-size: 1.2rem;
    font-weight: 300;
}

.arrow-blue { color: #2563eb; }
.arrow-orange { color: #f97316; }
.arrow-green { color: #10b981; }
.arrow-purple { color: #8b5cf6; }
.arrow-pink { color: #ec4899; }

.num-blue { background: #2563eb !important; }
.num-orange { background: #f97316 !important; }
.num-green { background: #10b981 !important; }
.num-purple { background: #8b5cf6 !important; }
.num-pink { background: #ec4899 !important; }

.bg-light-blue { background-color: #eff6ff; }
.bg-light-orange { background-color: #fff7ed; }
.bg-light-green { background-color: #f0fdf4; }
.bg-light-purple { background-color: #f5f3ff; }
.bg-light-pink { background-color: #fdf2f8; }

.icon-blue { color: #2563eb; }
.icon-orange { color: #f97316; }
.icon-green { color: #10b981; }
.icon-purple { color: #8b5cf6; }
.icon-pink { color: #ec4899; }

/* Right Column CTA */
.benefits-cta-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.cta-urgent-card-new {
    background: white;
    border: 2px solid #d1fae5;
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 320px;
    margin: 0;
}

.cta-urgent-card-new:hover {
    transform: scale(1.02);
}

.cta-lightning-icon {
    width: 45px;
    height: 45px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.cta-urgent-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.cta-urgent-body p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
}

.highlight-green-text {
    color: #059669;
    font-weight: 700;
}

.btn-comparison {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
    max-width: 280px;
    width: 100%;
    margin: 0 20px 0 0;
}

.btn-comparison:hover {
    background: #059669;
}

.btn-comparison-icon {
    background: white;
    color: #10b981;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-comparison-arrow {
    font-size: 1.4rem;
}

.trust-indicators {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 0 5px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.55rem;
    color: #10b981;
    font-weight: 500;
}

.trust-icon {
    font-size: 0.65rem;
    color: #10b981;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(125deg) brightness(90%) contrast(101%);
}





.benefits-sidebar {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideInCardUp 0.6s ease-out 0.3s both;
    overflow: hidden;
    width: 220px;
    height: 280px;
}

.benefits-sidebar-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px 12px 0 0;
}

.benefits-sidebar-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.benefits-sidebar-header h4 {
    font-size: 1rem;
    color: white;
    margin: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.benefits-sidebar p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 16px 20px;
}

/* Benefits Carousel Wrapper */
.benefits-carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: -20px;
}

/* Benefits Carousel */
.benefits-carousel {
    width: 100%;
    max-width: 280px;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    animation: slideInCardUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    margin-left: 0;
    margin-top: 20px;
}

.carousel-benefits-track {
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: carouselSlideUp 16s ease-in-out infinite;
}

.carousel-benefits-item {
    background: var(--bg-white);
    padding: 24px 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
}

.carousel-benefits-item:nth-child(1) {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.carousel-benefits-item:nth-child(2) {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.carousel-benefits-item:nth-child(3) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.carousel-benefits-item:nth-child(4) {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.carousel-benefits-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.carousel-benefits-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.carousel-benefits-header h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.carousel-benefits-item p {
    font-size: 0.9rem;
    color: white;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    margin: 0;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.carousel-benefits-badge {
    margin-top: auto;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    font-size: 0.8rem;
    color: white;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Tarjeta de Acción Urgente */
.cta-highlight-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%) !important;
    border: none !important;
    position: relative;
    animation: pulseCard 2s infinite;
}

.cta-highlight-card h4, 
.cta-highlight-card p {
    color: white !important;
}

.cta-highlight-card .carousel-benefits-icon {
    background: white !important;
    color: var(--accent) !important;
}

.urgent-badge {
    background: white !important;
    color: var(--accent) !important;
    border-color: white !important;
}

@keyframes pulseCard {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(232, 131, 58, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 10px 25px rgba(232, 131, 58, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(232, 131, 58, 0.3); }
}

@keyframes carouselSlideUp {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-320px);
    }
    50% {
        transform: translateY(-640px);
    }
    75% {
        transform: translateY(-960px);
    }
    100% {
        transform: translateY(0);
    }
}




/* Testimonials Carousel Header */
.testimonials-carousel-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
}

.testimonials-carousel-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.testimonials-carousel-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

/* Testimonials Carousel */
.testimonials-carousel {
    width: 60%;
    overflow: hidden;
    margin-top: -240px;
    margin-bottom: 30px;
    background: transparent;
    padding: 10px 0;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scrollLeftInfinite 50s linear infinite;
    width: fit-content;
    padding: 10px 0;
    will-change: transform;
}

.testimonials-carousel:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-item {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
}

/* Overlay removed for cleaner look */
/* .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    opacity: 0.6;
    transition: opacity 0.3s ease;
} */

.carousel-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    border-color: var(--accent);
}

/* .carousel-item:hover::after {
    opacity: 0.2;
} */

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item:hover img {
    transform: scale(1.15);
}

@keyframes scrollLeftInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Movimiento por las 4 imágenes originales (sin duplicadas) */
        transform: translateX(calc(-140px * 4 - 30px * 4));
    }
}





/* Benefits Intro */
.benefits-intro {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 0;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.benefits-intro p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Carousel Indicators */
.carousel-benefits-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Benefits CTA */
.benefits-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    width: 100%;
    padding-right: 0;
}

.benefits-cta .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    width: auto;
    max-width: 250px;
}

/* Hover Effect on Carousel Items */
.carousel-benefits-item {
    transition: all 0.3s ease;
}

.benefits-carousel:hover .carousel-benefits-item {
    filter: brightness(1.05);
}

/* Responsive Benefits */



/* Botón Palpitante */
.btn-pulse {
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    animation: pulseRing 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Modal de Beneficios */
.benefits-modal-body {
    padding: 16px;
}

.benefits-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.benefits-modal-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--accent);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.benefits-modal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.benefits-modal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left-color: var(--accent-light);
}

.benefits-modal-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    line-height: 1;
}

.benefits-modal-item h3 {
    font-size: 0.85rem;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.2px;
}

.benefits-modal-item p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.benefits-modal-duration {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 14px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: fit-content;
    margin-top: 1px;
}

.benefits-modal-footer {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    padding: 12px 16px;
    border-radius: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    margin: 0 16px 16px;
}

.benefits-modal-footer p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.benefits-modal-footer .btn {
    margin-top: 0;
    padding: 8px 20px;
    font-size: 0.8rem;
}




/* Service Section */
/* ¿Para quién es este servicio? - Nueva Versión */
.service-section {
    padding: 5px 0 30px;
    background: #fdfaf7;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 70px;
}

.service-header-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 10px;
}

.service-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef2ff;
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.badge-user-icon {
    font-size: 0.8rem;
}

.service-title-new {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.service-subtitle-new {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.highlight-blue-text {
    color: #3b82f6;
    font-weight: 700;
}

.service-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.service-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    position: relative;
    height: 150px;
    overflow: visible;
    border-radius: 15px 15px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.card-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: relative;
    top: -15px;
}

.service-card-new:hover .card-main-img {
    transform: scale(1.1);
}

.card-icon-circle {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    margin: 0 auto;
    top: -30px;
}

.card-icon-inner {
    font-size: 1.4rem;
    color: white;
}

.bg-blue-icon { background: #3b82f6; }
.bg-red-icon { background: #ef4444; }
.bg-purple-icon { background: #8b5cf6; }
.bg-green-icon { background: #10b981; }
.bg-orange-icon { background: #f59e0b; }

.card-body-new {
    padding: 0px 15px 0px;
    text-align: center;
    flex: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 0;
}

.card-body-new h3 {
    font-size: 0.85rem;
    color: #1a1a2e;
    margin-bottom: 0px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 0;
    line-height: 1;
    position: relative;
    top: -15px;
}

.card-body-new p {
    font-size: 0.65rem;
    color: #6b7280;
    line-height: 1;
    margin-bottom: 0px;
    margin-top: 0;
}

.card-arrow-footer {
    margin-top: auto;
    margin-bottom: 5px;
}

.footer-arrow-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card-new:hover .footer-arrow-icon {
    transform: translateX(5px);
}

.arrow-blue-text { color: #3b82f6; }
.arrow-red-text { color: #ef4444; }
.arrow-purple-text { color: #8b5cf6; }
.arrow-green-text { color: #10b981; }
.arrow-orange-text { color: #f59e0b; }

/* Barra de confianza inferior */
.service-trust-bar-new {
    background: #3b82f6;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin: 0;
    border-radius: 15px;
    color: white;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    margin-left: 90px;
}

.trust-bar-main-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-shield-icon {
    font-size: 1.2rem;
}

.trust-main-text {
    display: flex;
    flex-direction: column;
}

.trust-main-text strong {
    font-size: 0.65rem;
    color: white;
    font-weight: 700;
}

.trust-main-text span {
    font-size: 0.55rem;
    color: white;
}

.trust-bar-divider {
    width: 1px;
    height: 20px;
    background: white;
    margin: 0 10px;
}

.trust-bar-small-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-small-icon {
    font-size: 0.75rem;
}

.trust-bar-small-item span {
    font-size: 0.55rem;
    color: white;
    font-weight: 500;
}

/* Responsividad Servicios */




/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (768px - 1024px) */


/* Mobile Landscape (768px and below) */


/* Small Mobile (480px and below) */


/* Extra Small Mobile (320px and below) */



.contact-methods-small {
    margin-top: 8px;
    padding: 4px;
    background: #f8f8f8;
    border-radius: 8px;
}

.contact-methods-small-title {
    text-align: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-methods-small-grid {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.contact-method-small-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 4px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    min-width: 65px;
    text-align: center;
}

.contact-icon-small {
    font-size: 0.9rem;
}

.contact-method-small-item p {
    font-size: 0.45rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Inter', sans-serif;
}


.partner-banner {
    margin-top: -35px;
    padding: 6px 14px;
    background: #5B3EAF;
    border-radius: 14px;
    text-align: left;
    max-width: 380px;
    margin-left: 210px;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.partner-banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.partner-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-icon svg {
    width: 16px;
    height: 16px;
}

.partner-text {
    text-align: left;
}

.partner-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1px 0;
    font-family: 'Inter', sans-serif;
}

.partner-subtitle {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.partner-highlight {
    color: #FFB347;
    font-weight: 700;
}

/* ========= Responsive Rebuild (mobile-first adjustments) ========= */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 4px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1199px) {
    .nav {
        gap: 24px;
    }

    .hero .container-hero {
        padding-left: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .benefits-cta-container {
        align-items: flex-start;
    }

    .service-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .geographic-section-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        margin-top: 0;
    }

    .geographic-text-side {
        margin-top: 0;
        padding-left: 0;
    }

    .testimonials-carousel {
        width: 100%;
        margin-top: 8px;
    }

    .partner-banner {
        margin: 24px auto 0;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 64px;
    }

    .container-header {
        height: 64px;
        padding: 0 16px;
    }

    .logo-img {
        height: 44px;
    }

    .isapre-header-img {
        height: 30px;
        margin-left: -8px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        margin: 0;
        padding: 12px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        box-shadow: 0 16px 30px rgba(15, 20, 25, 0.12);
        display: flex;
        flex-direction: column;
        gap: 4px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 30;
    }

    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        padding: 10px 12px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: #f8fafc;
    }

    .hero {
        min-height: calc(100vh - 70px);
        min-height: calc(100dvh - 70px);
        display: flex;
        align-items: center;
        padding: 40px 0;
        scroll-margin-top: 64px;
    }

    .articulos,
    .articulos-carousel-section,
    .presencia-real-section,
    .service-section,
    .faq-section {
        scroll-margin-top: 64px;
    }

    .hero .container-hero {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .articles-header h2,
    .benefits-main-title,
    .service-title-new,
    .geo-main-title {
        font-size: 2rem;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .service-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-trust-bar-new {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

    .geographic-map-container {
        min-height: auto;
        padding-right: 0;
        justify-content: center;
    }

    .map-wrapper {
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-chile-zones {
        max-width: 220px;
        margin: 0 auto;
    }

    .map-cards {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .map-zone-card,
    .card-norte,
    .card-centro,
    .card-sur,
    .card-total {
        position: static;
        width: 100%;
        left: auto;
        top: auto;
        padding: 8px 10px;
    }

    .map-connections,
    .map-pin {
        display: none;
    }
}

@media (max-width: 767px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        background: #ffffff;
    }

    .header,
    .hero,
    .articulos,
    .presencia-real-section,
    .articulos-carousel-section,
    .service-section,
    .faq-section,
    .footer {
        width: 100%;
        max-width: 100%;
    }

    .container-hero,
    .container-form,
    .container-contact,
    .container-articles {
        padding: 0 14px;
    }

    .logo {
        margin-left: 0;
    }

    .hero {
        min-height: calc(100vh - 64px);
        min-height: calc(100dvh - 64px);
        display: flex;
        align-items: center;
        padding: 30px 0;
        scroll-margin-top: 64px;
    }

    .articulos,
    .articulos-carousel-section,
    .presencia-real-section,
    .service-section,
    .faq-section {
        scroll-margin-top: 64px;
    }

    .hero-label {
        font-size: 0.68rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-benefit-item {
        align-items: flex-start;
        font-size: 0.82rem;
    }

    .btn,
    .btn-primary,
    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
    }

    .btn-comparison {
        width: calc(100% - 20px);
        margin-left: 20px;
        justify-content: center;
    }

    .closing-top-group {
        flex-direction: column;
        text-align: center;
    }

    .articles-header-label {
        font-size: 0.68rem;
        letter-spacing: 0.8px;
    }

    .articles-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .why-card-header {
        justify-content: flex-start;
        position: relative;
    }

    .header-left-group {
        justify-content: flex-start;
        width: 100%;
    }

    .why-number {
        position: absolute;
        right: 0;
        top: 0;
    }

    .why-card-title-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        margin-right: 35px;
    }

    .title-underline {
        margin: 0 auto;
    }

    .why-card {
        padding: 16px;
        min-height: auto;
    }

    .why-card h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .service-cta-container {
        padding-top: 70px; /* Bajado significativamente más en modo responsive */
        padding-left: 110px; /* Movido un poquito a la izquierda (de 120px a 110px) */
        justify-content: flex-start; /* Alineado a la izquierda */
        display: flex;
    }

    .service-cta-container .btn {
        width: auto; /* Quitado el 100% para que se pueda mover a la izquierda */
        margin-left: 0;
    }

    .why-card-description {
        margin-left: 0;
        font-size: 0.86rem;
        line-height: 1.45;
        margin-top: 6px;
        margin-bottom: 10px;
        text-align: center;
        text-wrap: balance;
    }

    .why-card-footer-new {
        padding: 8px 10px;
        gap: 8px;
    }

    .why-card-footer-new p {
        font-size: 0.8rem;
    }

    .closing-text {
        margin-left: 0;
    }

    .benefit-main-new {
        align-items: flex-start;
    }

    .benefit-text-new h3 {
        font-size: 0.92rem;
    }

    .benefit-text-new p {
        font-size: 0.74rem;
    }

    .service-grid-new {
        grid-template-columns: 1fr;
    }

    .card-image-wrapper {
        height: 180px;
    }

    .contact-methods-small-grid {
        gap: 6px;
    }

    .contact-method-small-item {
        min-width: 72px;
    }

    .presencia-real-section .container-articles {
        padding-left: 8px;
        padding-right: 8px;
    }

    .map-wrapper {
        position: relative;
        width: 100%;
        max-width: 340px;
        min-height: 300px;
        margin: 0 auto;
        display: block;
        overflow: visible;
    }

    .map-chile-zones {
        width: 285px;
        max-width: 285px;
        margin: 0;
        margin-left: 6px;
    }

    .map-cards {
        position: absolute;
        top: 6px;
        right: 0;
        width: 138px;
        max-width: 138px;
        height: auto;
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        overflow: visible;
    }

    .map-zone-card,
    .card-norte,
    .card-centro,
    .card-sur {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        padding: 2px 6px;
    }

    /* Control independiente por tarjeta (mueve cada una sin afectar las otras) */
    .card-norte,
    .card-centro,
    .card-sur,
    .card-total {
        --card-x: 0px;
        --card-y: 0px;
        transform: translate(var(--card-x), var(--card-y));
    }

    .card-norte { --card-x: 0px; --card-y: 0px; }
    .card-centro { --card-x: 0px; --card-y: 120px; }
    .card-sur { --card-x: 0px; --card-y: 220px; }
    .card-total { --card-x: -70px; --card-y: 280px; }

    .card-norte {
        position: absolute;
        left: var(--norte-left, -125px);
        top: var(--norte-top, 0px);
        transform: none;
        border-left: 4px solid #ff8a65;
    }

    .card-centro {
        border-left: 4px solid #34c759;
    }

    .card-sur {
        border-left: 4px solid #3b82f6;
    }

    .card-total {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        padding: 9px 11px;
        margin-top: 4px;
    }

    .card-norte .zone-info h4,
    .card-centro .zone-info h4,
    .card-sur .zone-info h4 {
        font-size: 0.64rem;
        line-height: 1.1;
    }

    .card-norte .zone-info p,
    .card-centro .zone-info p,
    .card-sur .zone-info p {
        font-size: 0.54rem;
        line-height: 1.15;
    }

    .map-zone-card .zone-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .map-connections,
    .map-pin {
        display: none;
    }

    .modal-content {
        width: 95%;
    }

    .modal-content.modal-comparison {
        padding: 8px;
        overflow-y: auto;
        max-height: 92vh;
    }

    .trust-bar-modal {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .container-header {
        height: 60px;
    }

    .logo-img {
        height: 38px;
    }

    .isapre-header-img {
        height: 26px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero {
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
        scroll-margin-top: 60px;
    }

    .articulos,
    .articulos-carousel-section,
    .presencia-real-section,
    .service-section,
    .faq-section {
        scroll-margin-top: 60px;
    }

    .articles-header h2,
    .benefits-main-title,
    .service-title-new,
    .geo-main-title,
    .faq-header h2 {
        font-size: 1.45rem;
    }

    .articles-header p,
    .service-subtitle-new,
    .benefits-intro p,
    .geo-subtitle {
        font-size: 0.78rem;
    }

    .btn-lg {
        margin-right: 0;
        width: 100%;
    }

    .phone-inputs-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .faq-question {
        padding: 14px;
        font-size: 0.92rem;
    }

    .faq-answer p {
        padding: 0 14px 14px;
        font-size: 0.86rem;
    }
}


/* Responsive para modal-bio */
@media (max-width: 768px) {
    .modal-bio {
        max-width: 95%;
        width: 95%;
        margin: 10px auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .bio-layout {
        flex-direction: column;
        min-height: auto;
    }

    .bio-left-side {
        flex: none;
        min-height: 200px;
        padding: 20px;
        background-position: center;
    }

    .bio-right-side {
        flex: none;
        padding: 20px;
    }

    .bio-header h2 {
        font-size: 1.5rem;
    }

    .bio-header .bio-subtitle {
        font-size: 0.9rem;
    }

    .bio-features {
        gap: 10px;
    }

    .bio-feature {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .bio-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-bio {
        max-width: 98%;
        width: 98%;
        margin: 5px auto;
        max-height: 95vh;
    }

    .bio-left-side {
        min-height: 150px;
        padding: 15px;
    }

    .bio-right-side {
        padding: 15px;
    }

    .bio-header h2 {
        font-size: 1.3rem;
    }

    .bio-header .bio-subtitle {
        font-size: 0.8rem;
    }

    .bio-feature {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .bio-cta-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}