/* Estilos Modernos y Minimalistas para Cards de Planes */

.plan-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.plan-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

.plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: clamp(0.6rem, 1.5vw, 0.68rem);
    font-weight: 700;
    z-index: 10;
}

.plan-header {
    padding: 28px 16px 16px;
    text-align: center;
    color: white;
}

.plan-icon {
    font-size: clamp(2rem, 5vw, 2.4rem);
    margin-bottom: 8px;
    opacity: 0.95;
    color: white;
}

.plan-title {
    font-size: clamp(0.95rem, 2.3vw, 1.1rem);
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-subtitle {
    font-size: clamp(0.7rem, 1.75vw, 0.78rem);
    margin: 0;
    opacity: 0.9;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-body {
    padding: 16px;
}

.plan-price-box {
    text-align: center;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid;
}

.plan-price-label {
    font-size: clamp(0.65rem, 1.6vw, 0.72rem);
    margin-bottom: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.plan-price-amount {
    font-size: clamp(2rem, 5vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    margin: 6px 0;
}

.plan-price-period {
    font-size: clamp(0.65rem, 1.6vw, 0.72rem);
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 14px;
    padding: 0 2px;
}

.plan-features-title {
    font-size: clamp(0.7rem, 1.75vw, 0.78rem);
    margin-bottom: 8px;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 2px solid;
}

.plan-feature-item {
    font-size: clamp(0.68rem, 1.7vw, 0.76rem);
    color: #1f2937;
    margin-bottom: 7px;
    padding-left: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.plan-feature-icon {
    width: 16px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 11px;
    font-size: clamp(0.78rem, 1.95vw, 0.88rem);
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Colores específicos por plan */
.plan-cyan {
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.12);
    border-color: rgba(8, 145, 178, 0.2);
}

.plan-cyan .plan-badge {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    box-shadow: 0 3px 10px rgba(8, 145, 178, 0.3);
}

.plan-cyan .plan-header {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.plan-cyan .plan-price-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: #0891b2;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.1);
}

.plan-cyan .plan-price-label,
.plan-cyan .plan-price-period {
    color: #0f172a;
    font-weight: 600;
}

.plan-cyan .plan-price-amount {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plan-cyan .plan-features-title {
    color: #0f172a;
    border-color: #0891b2;
    font-weight: 700;
}

.plan-cyan .plan-feature-icon {
    color: #0891b2;
    font-weight: 600;
}

.plan-cyan .plan-button {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    box-shadow: 0 5px 16px rgba(8, 145, 178, 0.3);
}

.plan-orange {
    box-shadow: 0 8px 32px rgba(234, 88, 12, 0.12);
    border-color: rgba(234, 88, 12, 0.2);
}

.plan-orange .plan-badge {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    box-shadow: 0 3px 10px rgba(234, 88, 12, 0.3);
}

.plan-orange .plan-header {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.plan-orange .plan-price-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: #ea580c;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.1);
}

.plan-orange .plan-price-label,
.plan-orange .plan-price-period {
    color: #0f172a;
    font-weight: 600;
}

.plan-orange .plan-price-amount {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plan-orange .plan-features-title {
    color: #0f172a;
    border-color: #ea580c;
    font-weight: 700;
}

.plan-orange .plan-feature-icon {
    color: #ea580c;
    font-weight: 600;
}

.plan-orange .plan-button {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    box-shadow: 0 5px 16px rgba(234, 88, 12, 0.3);
}

.plan-green {
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.25);
    transform: scale(1.01);
}

.plan-green .plan-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
}

.plan-green .plan-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.plan-green .plan-header .plan-title,
.plan-green .plan-header .plan-subtitle,
.plan-green .plan-header .plan-icon {
    color: white !important;
}

.plan-cyan .plan-header .plan-title,
.plan-cyan .plan-header .plan-subtitle,
.plan-cyan .plan-header .plan-icon {
    color: white !important;
}

.plan-orange .plan-header .plan-title,
.plan-orange .plan-header .plan-subtitle,
.plan-orange .plan-header .plan-icon {
    color: white !important;
}

.plan-blue .plan-header .plan-title,
.plan-blue .plan-header .plan-subtitle,
.plan-blue .plan-header .plan-icon {
    color: white !important;
}

.plan-green .plan-price-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.plan-green .plan-price-label,
.plan-green .plan-price-period {
    color: #0f172a;
    font-weight: 600;
}

.plan-green .plan-price-amount {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plan-green .plan-features-title {
    color: #0f172a;
    border-color: #10b981;
    font-weight: 700;
}

.plan-green .plan-feature-icon {
    color: #10b981;
    font-weight: 600;
}

.plan-green .plan-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 5px 16px rgba(16, 185, 129, 0.35);
}

.plan-blue {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.plan-blue .plan-badge {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.plan-blue .plan-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.plan-blue .plan-price-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.plan-blue .plan-price-label,
.plan-blue .plan-price-period {
    color: #0f172a;
    font-weight: 600;
}

.plan-blue .plan-price-amount {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plan-blue .plan-features-title {
    color: #0f172a;
    border-color: #2563eb;
    font-weight: 700;
}

.plan-blue .plan-feature-icon {
    color: #2563eb;
    font-weight: 600;
}

.plan-blue .plan-button {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.3);
}

/* Badge especial para Virtual Exclusivo */
.plan-green .plan-header::before {
    content: '¡SÚPER PRECIO!';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: clamp(0.6rem, 1.5vw, 0.68rem);
    font-weight: 700;
    white-space: nowrap;
}

.plan-green .plan-icon {
    margin-top: 16px;
}
