/* Importar fuente de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

/* Estilos de la tarjeta */
.pricing-card {
    height: 85%;
    max-height: 85%;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Animación al pasar el cursor */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Efecto de borde animado */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #26394d, #26394d) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: transform 0.5s ease-in-out;
    transform: scale(0);
}

.pricing-card:hover::before {
    transform: scale(1);
}

/* Contenido de la tarjeta */
.card-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #444;
}

.tagline {
    font-size: 1rem;
    font-style: italic;
    color: #888;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 600;
    color: #26394d;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

ul li:last-child {
    border-bottom: none;
}

ul li i {
    margin-right: 10px;
    color: #28a745;
}

ul li.disabled {
    color: #aaa;
}

ul li.disabled i {
    color: #ccc;
}

.disabled i.fa-times {
    color: #dc3545;
}

.btnbtnpubli {
    display: block;
    padding: 12px 30px;
    background-color: #592d2e;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btnbtnpubli:hover {
    background-color: #592d2e;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Estilos de la tarjeta destacada */
.pricing-card.featured {
    transform: translateY(-20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #26394d;
    color: #fff;
}

.pricing-card.featured .card-content h2,
.pricing-card.featured .card-content .tagline,
.pricing-card.featured .card-content .price,
.pricing-card.featured .card-content .price span {
    color: #fff;
}

.pricing-card.featured .tagline {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured ul li {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured ul li i {
    color: #fff;
}

.pricing-card.featured .btnbtnpubli {
    background-color: #fff;
    color: #26394d;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .btnbtnpubli:hover {
    background-color: #eee;
    color: #26394d;
}