html, body {
    margin: 0;
    padding: 0;
    background-color: #377fc6  !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* ESTRUCTURA Y FONDO AZUL ACERO */
.pricing-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
    background-color: #377fc6 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-title { 
    color: white; 
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 10px;
    /* Correcciones para evitar la línea en la carga */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.main-subtitle { color: white; font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; }

/* SECCIÓN CLASE MUESTRA (BOTÓN NARANJA) */
.trial-section { margin-bottom: 50px; }
.trial-text { color: white; font-size: 1.3rem; max-width: 800px; margin: 0 auto 25px; line-height: 1.6; }
.trial-button {
    display: inline-block;
    background-color: #f28c33 !important;
    color: white !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.trial-button:hover { transform: scale(1.08); background-color: #ff9d4d !important; }

/* CONTENEDOR DE TARJETAS */
.card-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* TARJETAS BLANCAS SÓLIDAS */
.white-plan-card {
    background: white !important;
    padding: 45px;
    border-radius: 40px;
    width: 460px;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}
.white-plan-card:hover { transform: translateY(-15px); }

.pro-border { border: 6px solid #f28c33 !important; }

.badge-recommended {
    background: #f28c33;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* TEXTOS INTERNOS TARJETA */
.plan-name { color: #112953; font-weight: 800; font-size: 2rem; margin: 0; }
.plan-price { color: #112953; font-size: 3.5rem; font-weight: 900; margin: 10px 0; }
.plan-price small { font-size: 1rem; opacity: 0.6; }
.divider { border: 0; border-top: 1px solid #eee; margin: 20px 0; }

/* ICONOS VERDES */
.benefit-item {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.check-circle {
    background: #27ae60 !important;
    color: white !important;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
}

/* BOTONES VERDES (GRANDES) */
.btn-action {
    background-color: #27ae60 !important;
    color: white !important;
    text-align: center;
    padding: 22px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: background 0.3s ease;
}
.btn-action:hover { background-color: #219150 !important; }

/* FOOTER Y BOTÓN BLANCO */
.footer-alert {
    width: 100%;
    max-width: 960px;
    margin: 80px auto 0;
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed #fcf6e6;
    border-radius: 40px;
    padding: 40px;
    color: white;
}
.footer-title { color: #f28c33; font-weight: 800; margin-bottom: 15px; }

/* EL BOTÓN BLANCO DEL FOOTER CON HOVER */
.btn-footer-trial {
    display: inline-block !important;
    background-color: white !important;
    color: #112953 !important;
    padding: 15px 45px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    margin-top: 20px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important; /* Suaviza la transición */
}

.btn-footer-trial:hover {
    background-color: #fcf6e6 !important; /* Cambio sutil a crema */
    color: #f28c33 !important;           /* El texto cambia a naranja */
    transform: scale(1.05) !important;    /* Crece un poco */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
}

/* MÓVIL (RESPONSIVO) */
@media (max-width: 992px) {
    .card-container { flex-direction: column !important; align-items: center !important; }
    .white-plan-card { width: 100% !important; max-width: 400px; min-height: auto; }
    .main-title { font-size: 2.2rem; }
}
