/* Estilos para las tarjetas de planes de Titan Email */
.plans {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 96, 254, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.plans .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.plans .section-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0060fe;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.plans .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.plans .section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Estilos para las tarjetas de planes */
.plans .row {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
    flex-wrap: nowrap;
}

.plans .plan {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 96, 254, 0.1);
}

.plans .plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 96, 254, 0.3);
}

/* Estilos para el plan destacado/popular */
.plans .popular-plan {
    border: 2px solid #0060fe;
    position: relative;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 96, 254, 0.15);
}

.plans .popular-plan::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0060fe;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}

.plans .popular-plan:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 96, 254, 0.2);
}

.plans .plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.plans .plan-sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.plans .plan-price {
    font-size: 36px;
    font-weight: 800;
    color: #0060fe;
    text-align: center;
    margin-bottom: 5px;
}

.plans .plan-price-sub {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.plans hr {
    margin: 20px 0;
    border-color: rgba(0, 96, 254, 0.1);
}

.plans .theme-btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #0060fe;
    color: white;
    text-decoration: none;
    max-width: 200px;
}

.plans .theme-btn:hover {
    background-color: #0050d5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 96, 254, 0.3);
}

.plans .theme-btn .icon {
    width: 20px;
    margin-right: 8px;
}

.plans .fea-sec {
    margin-top: 25px;
    flex-grow: 1;
}

.plans .fea-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.plans .fea-sec .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.plans .fea-sec .item img {
    width: 18px;
    margin-right: 10px;
    margin-top: 3px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .plans .row {
        flex-wrap: wrap;
    }
    
    .plans .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        margin-bottom: 30px;
    }
    
    .plans .plan {
        height: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .plans {
        padding: 40px 0;
    }
    
    .plans .section-title h2 {
        font-size: 28px;
    }
    
    .plans .row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .plans .col-md-4 {
        flex: 0 0 90%;
        max-width: 90%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .plans .plan {
        padding: 20px;
        height: 100%;
    }
    
    .plans .plan-title {
        font-size: 22px;
    }
    
    .plans .plan-price {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .plans {
        padding: 30px 0;
    }
    
    .plans .section-title h2 {
        font-size: 24px;
    }
    
    .plans .section-title h3 {
        font-size: 16px;
    }
    
    .plans .section-title p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .plans .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .plans .plan {
        padding: 15px;
    }
    
    .plans .plan-title {
        font-size: 20px;
    }
    
    .plans .plan-sub {
        font-size: 14px;
    }
    
    .plans .plan-price {
        font-size: 28px;
    }
    
    .plans .plan-price-sub {
        font-size: 13px;
    }
    
    .plans .theme-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}