.elementor-1398 .elementor-element.elementor-element-0e71322{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overlay-opacity:0.5;--border-radius:15px 15px 15px 15px;}.elementor-1398 .elementor-element.elementor-element-0e71322:not(.elementor-motion-effects-element-type-background), .elementor-1398 .elementor-element.elementor-element-0e71322 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#00D401;}.elementor-1398 .elementor-element.elementor-element-0e71322::before, .elementor-1398 .elementor-element.elementor-element-0e71322 > .elementor-background-video-container::before, .elementor-1398 .elementor-element.elementor-element-0e71322 > .e-con-inner > .elementor-background-video-container::before, .elementor-1398 .elementor-element.elementor-element-0e71322 > .elementor-background-slideshow::before, .elementor-1398 .elementor-element.elementor-element-0e71322 > .e-con-inner > .elementor-background-slideshow::before, .elementor-1398 .elementor-element.elementor-element-0e71322 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#00D401;--background-overlay:'';}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-1398 .elementor-element.elementor-element-56296df{text-align:center;}.elementor-1398 .elementor-element.elementor-element-56296df .elementor-heading-title{font-family:"Roboto", Sans-serif;font-weight:700;-webkit-text-stroke-color:#000;stroke:#000;text-shadow:0px 0px 10px rgba(0,0,0,0.3);color:#FFFFFF;}.elementor-1398 .elementor-element.elementor-element-eac9df3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for heading, class: .elementor-element-56296df */.entry-title{
    display: none !important;
}
.main > .wrap > .row > section > article {
    width: 100%;
    display: inline-block;
    border-radius: 15px;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-f4a6c28 *//* ============================= */
/* GRID PLANES - MODERNIZADO */
/* ============================= */
.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================= */
/* CARD - DISEÑO PREMIUM */
/* ============================= */
.plan-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.04);
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,127,63,0.2);
    border-color: rgba(0,212,1,0.2);
}

/* ============================= */
/* IMAGE - EFECTO ZOOM */
/* ============================= */
.plan-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.95);
}

.plan-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.05) saturate(1.1);
}

/* Overlay gradiente mejorado */
.plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(
        to top, 
        rgba(0,0,0,0.6) 0%, 
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
}

.plan-card:hover::before {
    opacity: 0.7;
}

/* Badge "Nuevo" o "Popular" - opcional */
.plan-card::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #00d401;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(0,212,1,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============================= */
/* CONTENT - LAYOUT MEJORADO */
/* ============================= */
.plan-content {
    padding: 28px 24px 32px 24px;
    text-align: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.plan-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1b4332;
    letter-spacing: -0.3px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.plan-card:hover .plan-content h3 {
    color: #00a832;
}

.plan-content p {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Icono de duración */
.plan-content p::before {
    content: "⏱ ";
    opacity: 0.6;
    margin-right: 4px;
}

/* ============================= */
/* CTA BOTÓN - ULTRA LLAMATIVO */
/* ============================= */
.btn-plan {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00d401 0%, #00a832 100%);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 25px rgba(0,212,1,0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Efecto brillo animado */
.btn-plan::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;
}

.btn-plan:hover::before {
    left: 100%;
}

.btn-plan:hover {
    background: linear-gradient(135deg, #00a832 0%, #007f3f 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,127,63,0.5);
    border-color: rgba(255,255,255,0.3);
}

.btn-plan:active {
    transform: translateY(-1px) scale(1.02);
}

/* Icono de flecha en el botón */
.btn-plan::after {
    content: " →";
    margin-left: 6px;
    transition: margin-left 0.3s ease;
}

.btn-plan:hover::after {
    margin-left: 10px;
}

/* ============================= */
/* BADGE DE PRECIO (OPCIONAL) */
/* ============================= */
.plan-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,212,1,0.95);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================= */
/* EFECTOS ADICIONALES */
/* ============================= */

/* Línea decorativa superior */
.plan-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d401, #00a832, #007f3f);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.plan-card:hover::after {
    opacity: 1;
}

/* Borde brillante en hover */
.plan-card {
    outline: 3px solid transparent;
    outline-offset: -3px;
}

.plan-card:hover {
    outline-color: rgba(0,212,1,0.15);
}

/* ============================= */
/* RESPONSIVE MEJORADO */
/* ============================= */
@media (max-width: 768px) {
    .planes-grid {
        gap: 25px;
        padding: 40px 15px;
        grid-template-columns: 1fr;
    }
    
    .plan-card img {
        height: 240px;
    }
    
    .plan-content {
        padding: 24px 20px;
    }
    
    .plan-content h3 {
        font-size: 20px;
    }
    
    .btn-plan {
        padding: 13px 32px;
        font-size: 14px;
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .planes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================= */
/* ACCESIBILIDAD */
/* ============================= */
@media (prefers-reduced-motion: reduce) {
    .plan-card,
    .plan-card img,
    .btn-plan {
        transition: none;
    }
}

/* Focus para navegación por teclado */
.btn-plan:focus {
    outline: 3px solid #00d401;
    outline-offset: 3px;
}

.plan-card:focus-within {
    outline: 2px solid #00a832;
    outline-offset: 4px;
}/* End custom CSS */