/* ============ ESTILOS BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

/* ============ HEADER & NAV ============ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
}

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

.logo {
    font-size: 36px;
    font-weight: 700;
    color: #63a0da;
}

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

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* ============ HERO SECTION ============ */
.hero {
    margin-top: 70px;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 70px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-rotating {
    font-size: 70px;
    font-weight: 700;
    color: #63a0da;
    margin-bottom: 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-word {
    position: absolute;
    opacity: 0;
    animation: rotateWords 12s infinite;
}

.rotating-word:nth-child(1) {
    animation-delay: 0s;
}

.rotating-word:nth-child(2) {
    animation-delay: 2.4s;
}

.rotating-word:nth-child(3) {
    animation-delay: 4.8s;
}

.rotating-word:nth-child(4) {
    animation-delay: 7.2s;
}

.rotating-word:nth-child(5) {
    animation-delay: 9.6s;
}

@keyframes rotateWords {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.hero p {
    font-size: 24px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background: #63a0da;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

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

.btn-secondary {
    background: white;
    color: #63a0da;
    border: 2px solid #63a0da;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

/* ============ HERO FEATURES ============ */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.hero-feature-icon {
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 20px;
}

/* ============ SECTION TITLE ============ */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.section-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.section-intro p:last-child {
    margin-bottom: 0;
}

.intro-link {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 24px;
    background: #63a0da;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.intro-link:hover {
    background: #727777;
    transform: translateY(-2px);
}

/* ============ ESTADÍSTICAS EN RECUADROS ============ */
.stats-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-box {
    background: #f0f7ff;
    border: 2px solid #63a0da;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.stats-box-number {
    font-size: 32px;
    font-weight: 700;
    color: #63a0da;
    margin-bottom: 8px;
}

.stats-box-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ============ FEATURES SUBTITLE ============ */
.features-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 50px 0 40px;
    display: block;
}

/* ============ FEATURES ============ */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.feature-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.feature-list li:before {
    content: "•";
    color: #63a0da;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* ============ RENTA PUNTUAL ============ */
.renta-puntual {
    background: white;
}

.renta-puntual-subtitle {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.renta-puntual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.renta-card {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.renta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.renta-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.renta-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ============ COTIZADOR ============ */
.cotizador {
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 50%);
    padding: 80px 20px;
}

.cotizador-header {
    text-align: center;
    margin-bottom: 50px;
}

.cotizador-label {
    display: inline-block;
    background: #25C6E3;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cotizador-subtitle {
    font-size: 20px;
    color: #666;
    margin-top: 10px;
}

.cotizador-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* BENEFICIOS BOX */
.beneficios-box {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.beneficios-box h3 {
    color: #0B1E31;
    font-size: 20px;
    margin-bottom: 20px;
}

.beneficios-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficios-column span {
    display: block;
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

/* TABLA COTIZADOR */
.cotizador-table {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cotizador-row {
    display: grid;
    gap: 20px;
}

.inputs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.input-cell {
    display: flex;
    flex-direction: column;
}

.input-cell label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.currency {
    font-weight: 700;
    color: #63a0da;
    font-size: 20px;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.input-wrapper input:focus {
    outline: none;
}

.input-wrapper input::placeholder {
    color: #999;
}

.currency-label {
    font-size: 12px;
    color: #999;
}

.input-cell select {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    color: #666;
}

.input-cell select:focus {
    outline: none;
    border-color: #63a0da;
    box-shadow: 0 0 0 3px rgba(99, 160, 218, 0.1);
}

.input-cell select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

/* PLANES ROW */
.planes-row {
    grid-template-columns: repeat(3, 1fr);
}

.plan-cotizador {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-cotizador:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.plan-cotizador.featured {
    border-color: #63a0da;
    background: linear-gradient(135deg, rgba(99, 160, 218, 0.05) 0%, rgba(37, 198, 227, 0.05) 100%);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #25C6E3;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-cotizador h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.precio-cotizador {
    font-size: 36px;
    font-weight: 700;
    color: #63a0da;
    margin-bottom: 5px;
}

.precio-periodo {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 20px;
}

.beneficios-adicionales {
    margin-bottom: 20px;
    flex-grow: 1;
}

.beneficios-adicionales p {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.beneficios-adicionales ul {
    list-style: none;
    padding: 0;
}

.beneficios-adicionales li {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.beneficios-adicionales li:last-child {
    margin-bottom: 0;
}

.protege-box {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.shield-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.protege-box strong {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.meses {
    font-size: 24px;
    font-weight: 700;
    color: #25C6E3;
    display: block;
}

.meses-label {
    font-size: 11px;
    color: #999;
    display: block;
}

.btn-contratar {
    width: 100%;
    padding: 12px;
    background: #63a0da;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-contratar:hover {
    background: #727777;
    transform: translateY(-2px);
}

.precio-incluye-iva {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 15px;
    font-style: italic;
}


/* ============ POR QUÉ ELEGIR JURIDIXIA (Recuadros) ============ */
.por-que-juridixia {
    background: #f5f5f5;
}

.por-que-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.por-que-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.por-que-intro p strong {
    color: #63a0da;
    font-weight: 600;
}

.por-que-intro p:last-child {
    margin-bottom: 0;
}

/* ========== COMPARATIVA SECTION ========== */
.comparativa-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.comparativa-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.comparativa-subtitulo {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.comparativa-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparativa-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #e8e8e8;
    position: relative;
}

.comparativa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Card destacado (Juridixia) */
.comparativa-card.featured {
    border: 2px solid #63a0da;
    background: #f9f9f9;
    transform: scale(1);
}

.comparativa-card.featured:hover {
    transform: scale(1) translateY(-8px);
    border-color: #63a0da;
}

/* Card headers */
.card-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.comparativa-card.featured .card-header h4 {
    color: #63a0da;
}

.card-badge {
    display: inline-block;
    background: #63a0da;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card items list */
.card-items {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.card-items li {
    padding: 14px 0 14px 25px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    position: relative;
}

.card-items li:last-child {
    border-bottom: none;
    padding-bottom: 14px;
}

/* ========== ESTILOS ESPECÍFICOS POR TIPO ========== */

/* JURIDIXIA - Solo el resaltado */
.comparativa-card.juridixia .card-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    color: #63a0da;
}

/* PÓLIZA TRADICIONAL y APPS - Símbolos grises */
.comparativa-card.tradicional .card-items li::before,
.comparativa-card.apps .card-items li::before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    color: #999;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .comparativa-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .comparativa-card.featured {
        transform: scale(1.02);
    }
    
    .comparativa-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .comparativa-section {
        padding: 60px 15px;
    }
    
    .comparativa-titulo {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .comparativa-subtitulo {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .comparativa-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparativa-card {
        padding: 30px 20px;
    }
    
    .comparativa-card.featured {
        transform: scale(1);
    }
    
    .comparativa-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .card-header h4 {
        font-size: 1.4rem;
    }
    
    .card-items li {
        font-size: 0.9rem;
        padding: 12px 0 12px 25px;
    }
}


/* ============ TESTIMONIALS ============ */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #63a0da;
}

.testimonial-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.testimonial-role {
    font-size: 12px;
    color: #999;
}

/* ============ FAQ ============ */
.faq {
    background: white;
}

.faq-item {
    background: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ============ CTA SECTION ============ */
.cta {
    background: linear-gradient(135deg, #63a0da 0%, #727777 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-white {
    background: white;
    color: #63a0da;
}

.btn-white:hover {
    background: #f0f0f0;
}

/* ============ FOOTER ============ */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 50px 20px;
    text-align: center;
    font-size: 16px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #63a0da;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .planes-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        padding: 60px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-secondary {
        display: block;
        margin: 10px auto 0;
    }

    section {
        padding: 50px 20px;
    }

    .hero-features {
        gap: 20px;
        margin-top: 40px;
    }

    .hero-feature-item {
        font-size: 12px;
    }

    .hero-feature-icon {
        font-size: 28px;
    }

    .stats-boxes {
        gap: 15px;
        margin: 30px 0;
    }

    .stats-box {
        padding: 20px;
    }

    .stats-box-number {
        font-size: 24px;
    }

    .features-subtitle {
        font-size: 20px;
        margin: 30px 0 30px;
    }

    .feature-card p {
        font-size: 16px;
    }

    .feature-list li {
        font-size: 12px;
    }

    .renta-puntual-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .renta-puntual-grid {
        gap: 15px;
    }

    .renta-card {
        padding: 20px;
    }

    .renta-card h3 {
        font-size: 20px;
    }

    .renta-card p {
        font-size: 16px;
    }

    .cotizador {
        padding: 50px 20px;
    }

    .beneficios-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .beneficios-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inputs-row {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .input-cell {
        margin-bottom: 0;
    }

    .planes-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .plan-cotizador {
        padding: 20px;
    }

    .plan-cotizador h3 {
        font-size: 20px;
    }

    .precio-cotizador {
        font-size: 28px;
    }

    .input-wrapper {
        padding: 10px;
    }

    .input-wrapper input {
        font-size: 16px;
    }

    .currency {
        font-size: 16px;
    }

    .currency-label {
        font-size: 11px;
    }

    .intro-link {
        display: block;
        text-align: center;
        margin: 20px auto;
    }

    .por-que-intro p {
        font-size: 16px;
    }

    .cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .cotizador {
        padding: 40px 15px;
    }

    .cotizador-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .cotizador-subtitle {
        font-size: 16px;
    }

    .beneficios-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .beneficios-box h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .beneficios-column span {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .inputs-row {
        padding: 15px;
        gap: 15px;
    }

    .input-cell label {
        font-size: 12px;
    }

    .plan-cotizador {
        padding: 15px;
    }

    .plan-cotizador h3 {
        font-size: 15px;
    }

    .precio-cotizador {
        font-size: 24px;
    }

    .precio-periodo {
        font-size: 11px;
    }

    .beneficios-adicionales p {
        font-size: 12px;
    }

    .beneficios-adicionales li {
        font-size: 11px;
    }

    .protege-box {
        padding: 12px;
    }

    .shield-icon {
        font-size: 20px;
    }

    .meses {
        font-size: 20px;
    }

    .meses-label {
        font-size: 10px;
    }

    .btn-contratar {
        padding: 10px;
        font-size: 16px;
    }
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    background: #f5f5f5;
    padding: 80px 0;
}

.how-it-works-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 50px;
    line-height: 1.6;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: white;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.step:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #63a0da;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.step-icon {
    display: block;
    font-size: 40px;
    margin: 10px 0 15px 0;
}

.step h3 {
    font-size: 18px;
    margin: 20px 0 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ver-detalles-btn {
    background: none;
    border: none;
    color: #63a0da;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.ver-detalles-btn:hover {
    color: #008080;
    text-decoration: underline;
}

.step-details {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0;
    text-align: left;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.step-details li {
    padding: 10px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.step-details li:before {
    content: "·  ";
    color: #63a0da;
    font-weight: bold;
    margin-right: 8px;
}

.step-details.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 0;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step h3 {
        font-size: 16px;
    }
}

/* ============ INVESTIGACIÓN SECTION ============ */
.investigacion {
    padding: 80px 0;
    background: white;
}

.investigacion-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 50px;
    line-height: 1.6;
}

/* TABS */
.investigacion-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #63a0da;
    color: #63a0da;
}

.tab-btn.active {
    background: #63a0da;
    color: white;
    border-color: #63a0da;
}

/* DOCUMENTACIÓN TÍTULO */
.documentacion-titulo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 40px 0 15px;
    margin-top: 60px;
}

.documentacion-subtitulo {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* GRID DE DOCUMENTOS */
.documentos-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.documentos-grid.active-docs {
    display: grid;
}

/* TARJETA DE DOCUMENTO */
.doc-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.doc-card:hover {
    border-color: #63a0da;
    box-shadow: 0 4px 20px rgba(0, 168, 168, 0.1);
    transform: translateY(-5px);
}

.doc-icon {
    display: block;
    font-size: 45px;
    margin-bottom: 15px;
}

.doc-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 10px;
}

.doc-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .documentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .investigacion {
        padding: 50px 0;
    }

    .investigacion-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        padding: 15px;
    }

    .documentos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ============ CÓMO INVESTIGAMOS ============ */
.como-investigamos {
    padding: 80px 0;
    background: white;
}

.como-investigamos-intro {
    text-align: center;
    color: #666;
    font-size: 14px;
    max-width: 700px;
    margin: 20px auto 50px;
    line-height: 1.6;
}

/* Grid de Items de Investigación */
.investigacion-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.investigacion-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.investigacion-item:hover {
    border-color: #63a0da;
    box-shadow: 0 4px 20px rgba(0, 168, 168, 0.1);
    transform: translateY(-5px);
}

.investigacion-item-icon {
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
}

.investigacion-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 15px;
}

.investigacion-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.investigacion-item li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    line-height: 1.5;
}

.investigacion-item li:before {
    content: "• ";
    color: #63a0da;
    font-weight: bold;
    margin-right: 6px;
}

/* Botón Ver Variables */
.ver-variables-container {
    text-align: center;
    margin-top: 40px;
}

.ver-variables-btn {
    background: white;
    border: 2px solid #63a0da;
    color: #63a0da;
    padding: 12px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ver-variables-btn:hover {
    background: #63a0da;
    color: white;
}

/* MODAL POPUP */
.variables-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.variables-modal.active {
    display: block;
}

.variables-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    position: relative;
    animation: slideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #63a0da;
}

.variables-modal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.variables-list {
    max-height: 600px;
    overflow-y: auto;
}

.variable-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.variable-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.variable-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #63a0da;
    margin-bottom: 15px;
}

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

.variable-section li {
    font-size: 14px;
    color: #555;
    padding: 8px 0 8px 20px;
    line-height: 1.6;
    position: relative;
}

.variable-section li:before {
    content: "−";
    position: absolute;
    left: 5px;
    color: #63a0da;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
    .investigacion-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .como-investigamos {
        padding: 50px 0;
    }

    .investigacion-items-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .investigacion-item {
        padding: 20px;
    }

    .investigacion-item-icon {
        font-size: 35px;
    }

    .variables-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .variables-list {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .investigacion-item h4 {
        font-size: 14px;
    }

    .investigacion-item li {
        font-size: 12px;
    }

    .variables-modal-content h2 {
        font-size: 20px;
    }

    .variable-section h3 {
        font-size: 14px;
    }
}
