.pricing-page-wrapper {
    padding: 50px 5% 80px; /* 120px arriba para librar el header fixed */
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    /* Crea columnas de al menos 280px, se ajusta solo */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

/* .pricing-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
} */

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* Estilo para la 4ta (Oro - Destacada) */
.pricing-card.featured {
    border: 2px solid #00b4d8;
    background: #fff;
    position: relative;
}

.badge-pop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00b4d8;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 15px;
    border-radius: 20px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin: 20px 0;
}



.feat-list i { color: #00b4d8; }

.btn-tier {
    text-align: center;
    padding: 12px;
    background: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-tier.active { background: #00b4d8; color: white; }
.btn-tier.dark { background: #1e293b; color: white; }





.title-display {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    text-align: center;
}



/* Contenedor principal */
.pricing-card {
    width: 300px;
    border-radius: 15px;
    overflow: hidden; /* Esto hace que el fondo del H3 respete las esquinas redondeadas */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    margin: 20px;
}

/* Estilo del Título (El H3 que pediste) */
.pricing-card h3 {
    /* background-color: #AED6F1; */
    margin: 0;           /* Eliminamos márgenes para que pegue arriba */
    padding: 10px;       /* Le damos aire al texto */
    text-align: center;
    /* color: #2C3E50; */
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lista de beneficios */
.feat-list {
    list-style: none;
    padding: 25px;
    margin: 0;
}

.feat-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
}

/* Icono de Check */
.fa-check {
    color: #27AE60;
    margin-right: 12px;
}




/* boton de contacto */
.pricing-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}

/* Estilo del Botón */
.btn-contact {
    display: inline-block;
    color: white;
    background-color: #2C3E50; /* Color oscuro elegante */
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 10px; /* Bordes redondeados */
    font-size: 12pt;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Efecto al pasar el mouse */
.btn-contact:hover {
    background-color: #AED6F1; /* El color azul que usaste en el título */
    color: #2C3E50;
    transform: translateY(-2px); /* Pequeño salto hacia arriba */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-contact i {
    margin-right: 8px; /* Espacio entre el icono y el texto */
}









