/* ==========================================================================
   HOME - Estilos específicos para la página de HOME
   ========================================================================== */
/* ----------------------------------------
   HOME PAGE CONTAINER
   ---------------------------------------- */
.home-page {
    overflow-x: hidden;
}

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */

/* --- SECCIÓN HERO --- */
.hero-section {
    background-color: #f5f6f8;
    padding: 60px 0;
    overflow: hidden;
}

    .hero-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

/* --- LAYOUT 2 COLUMNAS --- */
.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* --- COLUMNA IZQUIERDA (Texto) --- */
.hero-content {
    flex: 1;
    max-width: 500px;
}

    /* Título principal */
    .hero-content h1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 52px;
        color: #2C3D85;
        margin: 0 0 5px 0;
        line-height: 1.1;
        text-transform: uppercase;
    }

    /* Subtítulo */
    .hero-content .hero-subtitle {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 22px;
        color: #2C3D85;
        margin: 0 0 20px 0;
    }

    .hero-content .hero-dgii {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #2C3D85;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0 0 30px 0;
        line-height: 1.5;
    }

/* --- BOTONES --- */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Botón primario (PLANES) */
.hero-btn--primary {
    background-color: #9BB643;
    color: #ffffff;
    border: 2px solid #9BB643;
}

    .hero-btn--primary:hover {
        background-color: #8aa63a;
        border-color: #8aa63a;
        color: #ffffff;
    }

/* Botón secundario (AGENDAR DEMO) */
.hero-btn--secondary {
    background-color: transparent;
    color: #9BB643;
    border: 2px solid #9BB643;
}

    .hero-btn--secondary:hover {
        background-color: #9BB643;
        color: #ffffff;
    }

/* Icono flecha en botones */
.hero-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
}

.hero-btn--secondary .btn-icon {
    background-color: rgba(155, 182, 67, 0.15);
}

.hero-btn--secondary:hover .btn-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Carousel --- */
.hero-carousel {
    flex: 0 0 55%;
    max-width: 55%;
}

    /* Carousel Bootstrap */
    .hero-carousel .carousel {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .hero-carousel .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* --- INDICADORES DEL CAROUSEL (puntos) --- */
    .hero-carousel .carousel-indicators {
        margin-bottom: 15px;
    }

        .hero-carousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
        }

            .hero-carousel .carousel-indicators button.active {
                background-color: #ffffff;
            }

    /* --- CONTROLES PREV/NEXT (flechas) --- */
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 50px;
        height: 50px;
        background-color: #ffffff;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .hero-carousel:hover .carousel-control-prev,
    .hero-carousel:hover .carousel-control-next {
        opacity: 1;
    }

    .hero-carousel .carousel-control-prev {
        left: 15px;
    }

    .hero-carousel .carousel-control-next {
        right: 15px;
    }

    /* Iconos de flecha */
    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 24px;
        height: 24px;
        background-size: 100% 100%;
    }

    /* Flecha izquierda (prev) */
    .hero-carousel .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C3D85'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }

    /* Flecha derecha (next) */
    .hero-carousel .carousel-control-next-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C3D85'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

/* ===========================================
   RESPONSIVE - TABLET
   =========================================== */
@media (max-width: 992px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-wrapper {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content .hero-subtitle {
        font-size: 18px;
    }

    .hero-carousel {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

        .hero-content h1 {
            font-size: 36px;
        }

        .hero-content .hero-subtitle {
            font-size: 16px;
        }

        .hero-content .hero-dgii {
            font-size: 13px;
        }

    .hero-buttons {
        justify-content: center;
    }

    .hero-carousel {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

        .hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            opacity: 1;
            width: 40px;
            height: 40px;
        }

        .hero-carousel .carousel-control-prev {
            left: 10px;
        }

        .hero-carousel .carousel-control-next {
            right: 10px;
        }
}

/* ===========================================
   RESPONSIVE - MOBILE PEQUEÑO
   =========================================== */
@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .hero-subtitle {
        font-size: 14px;
    }

    .hero-content .hero-dgii {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ----------------------------------------
   WHY CHOOSE US SECTION
   ---------------------------------------- */

.why-choose-us {
    padding: 60px 0;
    background-color: #ffffff;
}

    .why-choose-us .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .why-choose-us .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .why-choose-us .section-header h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 42px;
            color: #2C3D85;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        .why-choose-us .section-header p {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #1a2b4a;
            margin: 0;
        }

    .why-choose-us .content-wrapper {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .why-choose-us .image-column {
        flex: 0 0 auto;
    }

        .why-choose-us .image-column img {
            display: block;
            width: 420px;
            max-width: 100%;
            height: auto;
        }

    .why-choose-us .reasons-column {
        flex: 1;
    }

.reason-box {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.reason-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 45px;
}

.reason-number {
    width: 45px;
    height: 45px;
    min-height: 45px;
    background-color: #9BB643;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.reason-line {
    width: 2px;
    flex-grow: 1;
    background-color: #d0d0d0;
    margin: 15px auto;
}

.reason-box:last-child .reason-line {
    display: none;
}

.reason-content {
    flex: 1;
    padding-top: 8px;
    padding-bottom: 35px;
}

.reason-box:last-child .reason-content {
    padding-bottom: 0;
}

.reason-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #9BB643;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.reason-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   RESPONSIVE - TABLET
   =========================================== */
@media (max-width: 992px) {
    .why-choose-us .section-header h1 {
        font-size: 36px;
    }

    .why-choose-us .content-wrapper {
        gap: 40px;
    }

    .why-choose-us .image-column img {
        width: 350px;
    }

    .reason-content h2 {
        font-size: 20px;
    }

    .reason-content p {
        font-size: 14px;
    }

    .reason-line {
        margin: 12px auto;
    }
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0;
    }

        .why-choose-us .section-header {
            margin-bottom: 30px;
        }

            .why-choose-us .section-header h1 {
                font-size: 28px;
            }

            .why-choose-us .section-header p {
                font-size: 16px;
            }

        .why-choose-us .content-wrapper {
            flex-direction: column;
            gap: 40px;
        }

        .why-choose-us .image-column {
            width: 100%;
            text-align: center;
        }

            .why-choose-us .image-column img {
                width: 280px;
                margin: 0 auto;
            }

        .why-choose-us .reasons-column {
            width: 100%;
        }

    .reason-number-wrapper {
        width: 40px;
    }

    .reason-number {
        width: 40px;
        height: 40px;
        min-height: 40px;
        font-size: 16px;
    }

    .reason-line {
        margin: 10px auto;
    }

    .reason-content {
        padding-top: 5px;
        padding-bottom: 28px;
    }

        .reason-content h2 {
            font-size: 20px;
        }

        .reason-content p {
            font-size: 14px;
            line-height: 1.6;
        }
}

/* ===========================================
   RESPONSIVE - MOBILE PEQUEÑO
   =========================================== */
@media (max-width: 480px) {
    .why-choose-us .container {
        padding: 0 20px;
    }

    .why-choose-us .section-header h1 {
        font-size: 24px;
    }

    .why-choose-us .image-column img {
        width: 220px;
    }

    .reason-box {
        gap: 15px;
    }

    .reason-number-wrapper {
        width: 35px;
    }

    .reason-number {
        width: 35px;
        height: 35px;
        min-height: 35px;
        font-size: 14px;
    }

    .reason-line {
        margin: 8px auto;
    }

    .reason-content h2 {
        font-size: 18px;
    }

    .reason-content p {
        font-size: 13px;
    }

    .reason-content {
        padding-bottom: 22px;
    }
}

/* ----------------------------------------
   FEATURES SECTION
   ---------------------------------------- */

.features-section {
    padding: 60px 0;
    background-color: #ffffff;
}

    .features-section .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 48px;
        color: #2C3D85;
        margin: 0 0 15px 0;
    }

    .section-title p {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 18px;
        color: #1a2b4a;
        margin: 0;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon .blob {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

        .feature-icon .blob path {
            fill: #e8e4f8;
        }

    .feature-icon span[class^="flaticon-"] {
        position: relative;
        z-index: 2;
    }

        .feature-icon span[class^="flaticon-"]:before,
        .feature-icon span[class*=" flaticon-"]:before {
            font-size: 32px !important;
            color: #2C3D85 !important;
        }

.feature-content {
    flex: 1;
}

    .feature-content h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 20px;
        color: #9BB643;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    .feature-content p {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 15px;
        color: #4a5568;
        line-height: 1.6;
        margin: 0;
    }

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 992px) {
    .section-title h1 {
        font-size: 40px;
    }

    .features-grid {
        gap: 30px 40px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h1 {
            font-size: 32px;
        }

        .section-title p {
            font-size: 16px;
        }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .section-title h1 {
        font-size: 28px;
    }

    .feature-box {
        gap: 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

        .feature-icon span[class^="flaticon-"]:before {
            font-size: 26px !important;
        }

    .feature-content h2 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }
}

/* ===========================================
   SECCIÓN "TE HACEMOS TODO"
   =========================================== */

.services-section {
    background-color: #f5f6f8;
    padding: 80px 0;
}

    .services-section .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .services-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .services-section .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 42px;
            color: #2C3D85;
            margin: 0 0 20px 0;
            line-height: 1.2;
        }

        .services-section .section-header p {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #4a5568;
            margin: 0 auto;
            max-width: 650px;
            line-height: 1.6;
        }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

.service-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
}

    .service-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #e8e4f8;
        border-radius: 50%;
        z-index: 1;
    }

    .service-icon span[class^="flaticon-"],
    .service-icon i {
        position: relative;
        z-index: 2;
        font-size: 40px;
        color: #9BB643;
    }

        .service-icon span[class^="flaticon-"]:before {
            font-size: 40px !important;
            color: #9BB643 !important;
        }

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2C3D85;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.service-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ===========================================
   RESPONSIVE - TABLET
   =========================================== */
@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }

        .services-section .section-header h2 {
            font-size: 36px;
        }

        .services-section .section-header p {
            font-size: 16px;
        }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

        .service-icon span[class^="flaticon-"]:before,
        .service-icon i {
            font-size: 35px !important;
        }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

        .services-section .section-header {
            margin-bottom: 40px;
        }

            .services-section .section-header h2 {
                font-size: 30px;
            }

            .services-section .section-header p {
                font-size: 15px;
            }

    /* Cambiar a 1 columna */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-card {
        padding: 35px 25px;
    }
}

/* ===========================================
   RESPONSIVE - MOBILE PEQUEÑO
   =========================================== */
@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

        .services-section .section-header h2 {
            font-size: 26px;
        }

        .services-section .section-header p {
            font-size: 14px;
        }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

        .service-icon span[class^="flaticon-"]:before,
        .service-icon i {
            font-size: 32px !important;
        }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* ===========================================
   SECCIÓN "OFERTA DE PLANES"
   =========================================== */

.plans-section {
    background-color: #ffffff;
    padding: 80px 0;
}

    .plans-section .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .plans-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .plans-section .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 42px;
            color: #2C3D85;
            margin: 0 0 20px 0;
            line-height: 1.2;
        }

        .plans-section .section-header p {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #4a5568;
            margin: 0 auto;
            max-width: 550px;
            line-height: 1.6;
        }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.plans-empty-state {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px dashed rgba(44, 61, 133, 0.18);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(44, 61, 133, 0.05);
}

.plans-empty-state__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef1fb 0%, #dce4f7 100%);
    color: #2C3D85;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.plans-empty-state__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2C3D85;
    margin: 0 0 0.4rem;
}

.plans-empty-state__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

.plan-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .plan-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

.plan-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2C3D85;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

    .plan-badge i,
    .plan-badge span[class^="flaticon-"] {
        font-size: 14px;
    }

.plan-header {
    background-color: #2C3D85;
    padding: 70px 30px 30px 30px;
    text-align: center;
    position: relative;
}

    .plan-header::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 30px;
        background-color: #ffffff;
        border-radius: 50% 50% 0 0;
    }

.plan-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 5px 0;
}

    .plan-name span {
        color: #9BB643;
    }

.plan-body {
    padding: 30px;
    text-align: center;
}

.plan-price {
    margin-bottom: 5px;
}

    .plan-price .currency {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 20px;
        color: #2C3D85;
        vertical-align: top;
    }

    .plan-price .amount {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 48px;
        color: #2C3D85;
        line-height: 1;
    }

.plan-type {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2C3D85;
    margin: 0 0 25px 0;
}

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #9BB643;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

    .plan-btn:hover {
        background-color: #8aa63a;
        color: #ffffff;
    }

    .plan-btn .btn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        font-size: 12px;
    }

.plan-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

    .plan-description strong {
        color: #2C3D85;
        font-weight: 600;
    }

    .plan-description .asterisk {
        color: #9BB643;
        font-weight: 700;
    }

.plans-cta {
    text-align: center;
}

    .plans-cta .btn-more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #2C3D85;
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 16px 35px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        .plans-cta .btn-more:hover {
            background-color: #1e2d66;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(44, 61, 133, 0.3);
        }

        .plans-cta .btn-more .btn-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            font-size: 12px;
        }

/* ===========================================
   VARIANTE: PLAN DESTACADO (opcional)
   =========================================== */
.plan-card.featured {
    border: 3px solid #9BB643;
}

    .plan-card.featured .plan-badge {
        background-color: #9BB643;
    }

/* ===========================================
   RESPONSIVE - TABLET
   =========================================== */
@media (max-width: 992px) {
    .plans-section {
        padding: 60px 0;
    }

        .plans-section .section-header h2 {
            font-size: 36px;
        }

    .plans-grid {
        gap: 30px;
        max-width: 750px;
    }

    .plan-price .amount {
        font-size: 42px;
    }
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */
@media (max-width: 768px) {
    .plans-section {
        padding: 50px 0;
    }

        .plans-section .section-header {
            margin-bottom: 40px;
        }

            .plans-section .section-header h2 {
                font-size: 30px;
            }

            .plans-section .section-header p {
                font-size: 16px;
            }

    /* 1 columna en mobile */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }

    .plan-header {
        padding: 60px 25px 25px 25px;
    }

    .plan-body {
        padding: 25px;
    }

    .plan-price .amount {
        font-size: 40px;
    }
}

/* ===========================================
   RESPONSIVE - MOBILE PEQUEÑO
   =========================================== */
@media (max-width: 480px) {
    .plans-section {
        padding: 40px 0;
    }

        .plans-section .section-header h2 {
            font-size: 26px;
        }

    .plan-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .plan-name {
        font-size: 16px;
    }

    .plan-price .currency {
        font-size: 18px;
    }

    .plan-price .amount {
        font-size: 36px;
    }

    .plan-type {
        font-size: 16px;
    }

    .plan-btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .plan-description {
        font-size: 12px;
    }

    .plans-cta .btn-more {
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 1.5rem 0 2rem;
    }

    .hero-content {
        text-align: center;
        padding: 1rem 0 2rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-carousel-container {
        padding: 0;
    }

    .why-image-block {
        order: 2;
        margin-top: 2rem;
    }

    .reasons-block {
        order: 1;
    }

    .feature-card,
    .service-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .plan-type {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

        .hero-cta .btn-cta {
            width: 100%;
            justify-content: center;
        }

    .reason-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .reason-icon-wrap {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .reason-line {
        width: auto;
        height: 3px;
        flex-grow: 1;
        margin-top: 0;
        background: linear-gradient(90deg, rgba(127, 190, 65, 0.2) 0%, var(--fe-primary) 50%, rgba(127, 190, 65, 0.2) 100%);
    }

    .reason-content {
        padding-top: 0;
    }

    .price-amount {
        font-size: 2rem;
    }

    .plan-type {
        font-size: 1.125rem;
    }

    .plan-card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title,
    .section-heading {
        font-size: 1.35rem;
    }
}
