.whatsapp-btn {
    border-radius: 50%!important;
    width: 50px;
    height: 50px;
    padding: 8px;
    margin: 5px;
    font-size: 35px;
    text-align: center;
    color: #ffffff;
    background-color: #25D366;
    position: fixed;
    right: 30px;
    bottom: 45px;
    z-index: 9999;
    box-shadow: 1px 2px 8px #6a6a6a;
}

.mb-3{
    margin-bottom: 30px;
}

/* 🔹 Estilos generales para la tarjeta */
.card {
    border: 1px solid #ddd;
    border-radius: 10px!important;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    background: #fff;
}

/* 🔹 Efecto al pasar el mouse */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* 🔹 Cabecera de la tarjeta */
.card-header {
    background: #d9ecff;
    color: white;
    font-weight: bold;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

/* 🔹 Cuerpo de la tarjeta */
.card-body {
    padding: 20px;
    color: #333;
}

/* 🔹 Título dentro de la tarjeta */
.card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
}

/* 🔹 Subtítulo */
.card-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
    margin-bottom: 15px;
}

/* 🔹 Texto */
.card-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* 🔹 Pie de la tarjeta */
.card-footer {
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ddd;
}

/* 🔹 Imágenes dentro de la tarjeta */
.card-img-top {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-img-bottom {
    width: 100%;
    height: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* 🔹 Variantes de color */
.card.primary {
    border-color: #007bff;
}

.card.success {
    border-color: #28a745;
}

.card.danger {
    border-color: #dc3545;
}

.card.warning {
    border-color: #ffc107;
}

/* index */
.product-card {
    position: relative; /* Necesario para la cinta */
    border-radius: 15px;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 350px!important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* 📌 Contenedor de la imagen */
.product-image {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    width: 100%;
}

.product-card img {
    width: 100%;
    height: unset;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    padding: 10px;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* 📌 Cuerpo de la tarjeta */
.product-card .card-body {
    padding: 15px;
    background: #fff;
    text-align: center;
    flex-grow: 1; /* Permite que el contenido ocupe el espacio disponible */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* 📌 Botón */
.product-card .btn {
    background: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.product-card .btn:hover {
    background: #0056b3;
}

/* 📌 Cinta de "Destacado" */
.ribbon {
    position: absolute;
    top: 10px;
    left: -10px;
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(-20deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* 📌 Diseño responsivo */
@media (max-width: 992px) {
    .product-card {
        margin-bottom: 20px;
    }

    /* .product-card img {
        height: 200px;
    } */

    .product-card .card-title {
        font-size: 16px;
    }

    .ribbon {
        font-size: 11px;
        padding: 4px 12px;
    }
}

@media (max-width: 768px) {
    .product-card {
        width: 100%;
    }

    /* .product-card img {
        height: 180px;
    } */

    .product-card .card-title {
        font-size: 15px;
    }

    .ribbon {
        font-size: 10px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    /* .product-card img {
        height: 160px;
    } */

    .product-card .card-title {
        font-size: 14px;
    }

    .ribbon {
        font-size: 9px;
        padding: 3px 8px;
    }
}

/* 🔹 Contenedor principal */
.features-section {
    padding: 30px;
    background: linear-gradient(to right, #f9f9f9, #eef2f5);
    margin-bottom: 30px;
}

/* 🔹 Tarjetas de características */
.feature-card {
    background: white;
    padding: 20px;
    border-radius: 12px!important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    /* margin: 15px; 💡 Separa los elementos */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    margin-bottom: 30px
}

/* 🔹 Efecto hover */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 🔹 Íconos */
.feature-icon {
    font-size: 50px;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* 🔹 Títulos */
.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

/* 🔹 Descripción */
.feature-content p {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

/* 🔹 Diseño responsivo */
@media (max-width: 768px) {
    .feature-card {
        padding: 25px 15px;
        margin: 20px auto; /* 💡 Más espacio en móviles */
    }
}
