/* Estilos de todas las secciones de contenido */

/* Sección Problema */
.problema {
    background: #0A2342;
    position: relative;
    overflow: hidden;
}

.problema::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.problema::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.problema .container {
    position: relative;
    z-index: 2;
}

.problema .section-title {
    color: #e74c3c;
}

.problema-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.problemas-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.problema-item {
    background: rgba(231, 76, 60, 0.1);
    padding: 25px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-left: 5px solid #e74c3c;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.problema-item:hover {
    background: rgba(231, 76, 60, 0.15);
    transform: translateX(10px);
    border-left-width: 8px;
}

.problema-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.problema-content {
    flex: 1;
}

.problema-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.problema-item p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Sección Propuesta - MEJORADO CON MÁS CONTRASTE */
.propuesta {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.propuesta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.propuesta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.propuesta .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 80px 20px;
}

.propuesta .section-title {
    color: #0A2342;
    text-align: center;
    margin-bottom: 20px;
}

.propuesta-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    font-size: 1.15rem;
    color: #0A2342;
    font-weight: 500;
}

.propuesta .detalle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.propuesta .detalle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    transition: all 0.4s ease;
    text-align: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.propuesta .detalle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00B8A9 0%, #FFC857 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.propuesta .detalle-item:hover::before {
    opacity: 0.05;
}

.propuesta .detalle-item:hover {
    background: #ffffff;
    border-color: #00B8A9;
    border-width: 3px;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 184, 169, 0.2);
}

.propuesta .detalle-contenido {
    position: relative;
    z-index: 2;
}

.propuesta .detalle-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.propuesta .detalle-item:hover .detalle-icon {
    transform: scale(1.15);
}

.propuesta .detalle-item h3 {
    font-size: 1.3rem;
    color: #0A2342;
    margin-bottom: 12px;
    font-weight: 700;
}

.propuesta .detalle-item p {
    color: #1e293b;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}


/* Sección Cómo Funciona */
.como-funciona {
    background: linear-gradient(135deg, #0A2342 0%, #0a3a5a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="50" x2="100" y2="50" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.como-funciona .container {
    position: relative;
    z-index: 2;
}

.como-funciona .section-title {
    color: white;
}

.como-funciona .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pasos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.paso {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.paso:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.paso-numero {
    width: 60px;
    height: 60px;
    background: #FFC857;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A2342;
    box-shadow: 0 5px 20px rgba(255, 200, 87, 0.4);
}

.paso-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFC857;
    display: block;
}

.paso h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.4rem;
}

.paso p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Hardware Reacondicionado */
.hardware-reacondicionado {
    background: linear-gradient(135deg, #fff7e6 0%, #ffe9c2 100%);
    position: relative;
    overflow: hidden;
}

.hardware-reacondicionado::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hardware-reacondicionado::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hardware-reacondicionado .container {
    position: relative;
    z-index: 2;
}

.hardware-reacondicionado .section-title {
    color: #0A2342;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hardware-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(255, 200, 87, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.hardware-item:hover {
    transform: translateY(-10px);
    border-color: #FFC857;
    box-shadow: 0 10px 40px rgba(255, 200, 87, 0.3);
}

.hardware-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hardware-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0A2342;
}

.hardware-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Características */
.caracteristicas {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.caracteristicas::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.caracteristicas::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.caracteristicas .container {
    position: relative;
    z-index: 2;
}

.caracteristicas .section-title {
    color: white;
}

.caracteristicas .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.caracteristicas-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 700px;
    margin: 0 auto;
    max-width: 900px;
}

.caracteristica-central {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFC857, #ff9a3c);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 10px 50px rgba(255, 200, 87, 0.5);
}

.caracteristica-central-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.caracteristica-central-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2342;
    text-align: center;
}

.caracteristica-orbital {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    top: 50%;
    left: 50%;
}

.caracteristica-orbital:hover {
    background: rgba(0, 184, 169, 0.3);
    border-color: #00B8A9;
    box-shadow: 0 10px 40px rgba(0, 184, 169, 0.5);
    z-index: 5;
    transform: scale(1.15);
}

.caracteristica-orbital-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.caracteristica-orbital-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 0 10px;
    line-height: 1.3;
}

.orbital-1 {
    margin-left: -75px;
    margin-top: calc(-75px - 280px);
}

.orbital-2 {
    margin-left: calc(-75px + 242px);
    margin-top: calc(-75px - 140px);
}

.orbital-3 {
    margin-left: calc(-75px + 242px);
    margin-top: calc(-75px + 140px);
}

.orbital-4 {
    margin-left: -75px;
    margin-top: calc(-75px + 280px);
}

.orbital-5 {
    margin-left: calc(-75px - 242px);
    margin-top: calc(-75px + 140px);
}

.orbital-6 {
    margin-left: calc(-75px - 242px);
    margin-top: calc(-75px - 140px);
}

.caracteristicas-contenedor::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotar 40s linear infinite;
    z-index: 1;
}

@keyframes rotar {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Casos Educación */
.casos-educacion {
    background: white;
    color: #0A2342;
    position: relative;
    overflow: hidden;
}

.casos-educacion::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 184, 169, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.casos-educacion::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 35, 66, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.casos-educacion .container {
    position: relative;
    z-index: 2;
}

.casos-educacion .section-title {
    color: #00B8A9;
}

.casos-educacion .section-subtitle {
    color: #4a5568;
}

.casos-edu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.casos-edu-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1100px;
}

.caso-edu-destacado {
    max-width: 500px;
    width: 100%;
}

.caso-edu {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f3 100%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.caso-edu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00B8A9, #FFC857);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.caso-edu:hover::before {
    transform: scaleX(1);
}

.caso-edu:hover {
    transform: translateY(-10px);
    border-color: #00B8A9;
    background: white;
    box-shadow: 0 15px 60px rgba(0, 184, 169, 0.2);
}

.caso-edu-destacado .caso-edu {
    background: linear-gradient(135deg, #fff7e6 0%, #ffe9c2 100%); /* Dorado muy claro */
    color: #0A2342;
    border: 3px solid #FFC857;
    box-shadow: 0 8px 30px rgba(255, 200, 87, 0.4);
    transform: scale(1.1);
}

.caso-edu-destacado .caso-edu::before {
    background: linear-gradient(90deg, #0A2342, #00B8A9);
}

.caso-edu-destacado .caso-edu:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 25px 80px rgba(255, 200, 87, 0.6);
}

.caso-edu-destacado .caso-edu-icon {
    color: #0A2342;
    font-size: 5rem;
}

.caso-edu-destacado h3 {
    color: #0A2342;
    font-size: 1.8rem;
    font-weight: 700;
}

.caso-edu-destacado p {
    color: #0A2342;
    font-weight: 500;
    font-size: 1.05rem;
}

.caso-edu-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #00B8A9;
    display: block;
    transition: transform 0.3s ease;
}

.caso-edu:hover .caso-edu-icon {
    transform: scale(1.2) rotate(5deg);
}

.caso-edu h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FFC857;
    font-weight: 700;
}

.caso-edu p {
    color: #4a5568;
    line-height: 1.7;
}

/* Beneficios */
.beneficios {
    background: #f8f9fa;
    position: relative;
}

.beneficios .section-title {
    color: #0A2342;
}

.beneficios .section-subtitle {
    color: #4a5568;
}

.beneficios-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.beneficio {
    background: white;
    padding: 40px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.beneficio:last-child {
    border-bottom: none;
}

.beneficio:hover {
    padding-left: 50px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 184, 169, 0.1);
}

.beneficio:hover .beneficio-icon {
    transform: scale(1.1) rotate(5deg);
}

.beneficio-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFC857, #ff9a3c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A2342;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(255, 200, 87, 0.3);
    transition: all 0.3s ease;
}

.beneficio-content {
    flex: 1;
}

.beneficio h3 {
    margin-bottom: 12px;
    color: #0A2342;
    font-size: 1.5rem;
}

.beneficio p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #0A2342 0%, #00B8A9 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.95;
}

/* FAQ */
.faq {
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    border-color: #00B8A9;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0A2342;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #00B8A9;
    font-size: 1.2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pasos-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .propuesta .detalle-grid {
        grid-template-columns: 1fr; /* CAMBIAR de repeat(2, 1fr) a 1fr */
    }
    
    .propuesta .detalle-item {
        min-height: 250px;
        padding: 40px 20px;
    }
    
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hardware-item {
        padding: 30px 20px;
    }
    
    .beneficio {
        grid-template-columns: 80px 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .beneficio-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .beneficio h3 {
        font-size: 1.1rem;
    }
    
    .caracteristicas-contenedor {
        min-height: 550px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .caracteristica-central {
        width: 100px;
        height: 100px;
    }
    
    .caracteristica-central-icon {
        font-size: 2rem;
    }
    
    .caracteristica-central-text {
        font-size: 0.7rem;
    }
    
    .caracteristica-orbital {
        width: 80px;
        height: 80px;
    }
    
    .caracteristica-orbital-icon {
        font-size: 1.5rem;
    }
    
    .caracteristica-orbital-text {
        font-size: 0.65rem;
        padding: 0 5px;
    }
    
    .orbital-1 {
        margin-top: calc(-40px - 140px);
        margin-left: -40px;
    }
    
    .orbital-2 {
        margin-top: calc(-40px - 70px);
        margin-left: calc(-40px + 120px);
    }
    
    .orbital-3 {
        margin-top: calc(-40px + 70px);
        margin-left: calc(-40px + 120px);
    }
    
    .orbital-4 {
        margin-top: calc(-40px + 140px);
        margin-left: -40px;
    }
    
    .orbital-5 {
        margin-top: calc(-40px + 70px);
        margin-left: calc(-40px - 120px);
    }
    
    .orbital-6 {
        margin-top: calc(-40px - 70px);
        margin-left: calc(-40px - 120px);
    }
    
    .caracteristicas-contenedor::before {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .caracteristicas-contenedor {
        min-height: 500px;
    }
    
    .caracteristica-central {
        width: 80px;
        height: 80px;
    }
    
    .caracteristica-central-icon {
        font-size: 1.8rem;
    }
    
    .caracteristica-central-text {
        font-size: 0.65rem;
    }
    
    .caracteristica-orbital {
        width: 70px;
        height: 70px;
    }
    
    .caracteristica-orbital-icon {
        font-size: 1.3rem;
    }
    
    .caracteristica-orbital-text {
        font-size: 0.6rem;
    }
    
    .orbital-1 {
        margin-top: calc(-35px - 120px);
        margin-left: -35px;
    }
    
    .orbital-2 {
        margin-top: calc(-35px - 60px);
        margin-left: calc(-35px + 100px);
    }
    
    .orbital-3 {
        margin-top: calc(-35px + 60px);
        margin-left: calc(-35px + 100px);
    }
    
    .orbital-4 {
        margin-top: calc(-35px + 120px);
        margin-left: -35px;
    }
    
    .orbital-5 {
        margin-top: calc(-35px + 60px);
        margin-left: calc(-35px - 100px);
    }
    
    .orbital-6 {
        margin-top: calc(-35px - 60px);
        margin-left: calc(-35px - 100px);
    }
    
    .caracteristicas-contenedor::before {
        width: 240px;
        height: 240px;
    }
}
    
    .casos-edu-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .caso-edu {
        padding: 35px 25px;
    }
    
    .caso-edu-icon {
        font-size: 3rem;
    }
    
    .caso-edu h3 {
        font-size: 1.2rem;
    }
    
    .caso-edu p {
        font-size: 0.95rem;
    }
    
    .caso-edu-destacado {
        max-width: 100%;
    }
    
    .caso-edu-destacado .caso-edu {
        transform: scale(1);
        padding: 40px 30px;
    }
    
    .caso-edu-destacado .caso-edu-icon {
        font-size: 4rem;
    }
    
    .caso-edu-destacado h3 {
        font-size: 1.5rem;
    }
    
    .caso-edu-destacado .caso-edu:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .problemas-grid {
        gap: 15px;
    }
    
    .problema-item {
        padding: 20px 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .problema-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
    
    .cta-final p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .propuesta .detalle-grid {
        grid-template-columns: 1fr;
    }
}