/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    margin-top: 70px; /* Ajusta este valor según la altura del header */
}

#page-title img {
    max-height: 100px; /* Limita la altura máxima del logo */
    width: auto; /* Ajusta el ancho automáticamente para mantener la proporción */
    object-fit: contain; /* Asegura que la imagen no se distorsione */
}

header {
    position: fixed; /* Hace que el header permanezca fijo en la parte superior */
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(52, 58, 64, 0.9); /* Fondo oscuro con 90% de opacidad */
    height: 60px; /* Altura fija del header */
    padding: 0 20px; /* Ajusta el padding para centrar el contenido */
    display: flex;
    align-items: center; /* Centra verticalmente los elementos */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px; /* Espaciado entre los elementos */
}

header nav {
    flex-grow: 1; /* Permite que el menú ocupe el espacio restante */
    text-align: center; /* Centra los enlaces de navegación */
}

header .dropdown {
    flex-shrink: 0; /* Evita que el botón de idioma se reduzca */
}

/*cambiar opacidad*/
header.transparent {
    opacity: 0.5; /* Reduce la opacidad al desplazarse */
}

header .no-opacity {
    opacity: 1 !important; /* Mantiene la opacidad al 100% */
    pointer-events: auto; /* Permite la interacción con estos elementos */
}

header:hover {
    background-color: #f8f9fa; /* Cambia ligeramente el color al pasar el cursor */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra más intensa */
}

header h1 {
    font-size: 24px;
    color: #333;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6b35;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ff6b35, #ffb400);
    color: #fff;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero button {
    background-color: #fff;
    color: #ff6b35;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero button:hover {
    background-color: #ff6b35;
    color: #fff;
}

.products {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    height: 100%;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 220px;
    object-fit: contain;
    background-color: #000;
    padding: 25px;
    transition: all 0.5s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 220px);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
    position: relative;
    padding-bottom: 0.5rem;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.card:hover .card-title::after {
    width: 100px;
}

.card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.text-dark.fw-bold {
    font-size: 1.4rem;
    color: #28a745 !important;
    font-weight: 700 !important;
    position: relative;
    display: inline-block;
}

.text-dark.fw-bold::before {
    content: '$';
    font-size: 0.8em;
    position: absolute;
    left: -15px;
    top: 0;
    color: #28a745;
}

.btn-primary {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #0056b3, #0099ff);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Animación de entrada para las tarjetas */
.card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicar retraso a cada tarjeta */
.col-md-4:nth-child(1) .card {
    animation-delay: 0.1s;
}

.col-md-4:nth-child(2) .card {
    animation-delay: 0.3s;
}

.col-md-4:nth-child(3) .card {
    animation-delay: 0.5s;
}

/* Estilos para el modal de pago */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.modal-body {
    padding: 2rem;
}

#paypal-button-container {
    margin-top: 1.5rem;
}

/* Estilos para la boleta */
.invoice-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
}

.invoice-container h4 {
    color: #007bff;
    font-weight: 700;
}

.invoice-container h5 {
    color: #212529;
    font-weight: 600;
}

.invoice-container .table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.invoice-container .table th {
    background: #f8f9fa;
    font-weight: 600;
}

.invoice-container .table td, 
.invoice-container .table th {
    padding: 1rem;
}

.invoice-container .table tfoot th {
    background: #e9ecef;
    font-weight: 700;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product button {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.product button:hover {
    background-color: #ff4500;
}

.featured-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.stats {
    display: flex;
    flex-direction: column; /* Cambia a diseño vertical */
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    gap: 20px; /* Espaciado entre elementos */
}

.stats div {
    width: 100%; /* Asegura que cada elemento ocupe todo el ancho */
}

.featured-content {
    display: flex;
    flex-direction: column; /* Cambia a diseño vertical */
    gap: 30px; /* Espaciado entre productos */
    align-items: center; /* Centra los elementos */
}

.featured-item {
    width: 100%; /* Ocupa todo el ancho disponible */
    max-width: 600px; /* Limita el ancho máximo */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centra el contenido */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.featured-item img {
    width: 100%; /* Imagen ocupa todo el ancho del contenedor */
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.featured-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.featured-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.featured-item ul {
    margin-bottom: 15px;
    padding-left: 20px;
    text-align: left; /* Alinea el texto de las listas a la izquierda */
    color: #666;
    font-size: 14px;
}

.featured-item ul li {
    margin-bottom: 5px;
}

.featured-item button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.featured-item button:hover {
    background-color: #0056b3;
}

.description {
    background-color: #f9f9f9;
}

.description h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.description .btn-primary {
    background-color: #ff6b35;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.description .btn-primary:hover {
    background-color: #ff4500;
}

.description img {
    max-width: 300px; /* Ajusta el tamaño de la imagen */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-info {
    font-size: 14px;
    color: #333;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Mantén la sombra para un diseño limpio */
}

.product-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-info ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.more-products {
    background: linear-gradient(135deg, #4caf50, #2e7d32); /* Fondo degradado verde */
    padding: 50px 0;
    color: #fff;
}

.more-products h2 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

.more-products p {
    font-size: 16px;
    color: #d4edda;
}

.more-products .product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.more-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.more-products .product-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.more-products .product-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.more-products .product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.more-products .product-card span {
    font-size: 16px;
    font-weight: bold;
}

.more-products .invisible-btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.more-products .invisible-btn:hover {
    background-color: #fff;
    color: #4caf50;
}

/*testimonios*/

.testimonials {
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.testimonial-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-card img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* Cuadro de testimonios */
.testimonial-box {
    border: 1px solid #ddd; /* Borde del cuadro */
    border-radius: 10px; /* Bordes redondeados */
    background-color: #fff; /* Fondo blanco */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px); /* Efecto de elevación */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Sombra más intensa */
}

.testimonial-box .stars {
    color: #ffc107; /* Color de las estrellas */
    font-size: 18px;
}

.testimonial-box img {
    border-radius: 50%; /* Imagen circular */
    width: 50px;
    height: 50px;
}

/* Espaciado adicional entre testimonios y flechas */
.testimonials .carousel-inner {
    margin-bottom: 30px; /* Espacio entre los testimonios y las flechas */
}

/* Ajustar la posición de las flechas */
.custom-carousel-control {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: absolute; /* Posición absoluta para colocarlas sobre el carrusel */
    top: 50%; /* Centrar verticalmente */
    transform: translateY(-50%); /* Ajustar el centro vertical */
    z-index: 10; /* Asegurar que estén por encima del contenido */
}

.carousel-control-prev {
    left: -60px; /* Ajustar la posición horizontal de la flecha izquierda */
}

.carousel-control-next {
    right: -60px; /* Ajustar la posición horizontal de la flecha derecha */
}

.custom-carousel-control:hover {
    background-color: #000;
    border-color: #000;
}

.custom-carousel-control .carousel-control-prev-icon,
.custom-carousel-control .carousel-control-next-icon {
    filter: invert(1); /* Cambia el color del ícono */
}

.custom-carousel-control:hover .carousel-control-prev-icon,
.custom-carousel-control:hover .carousel-control-next-icon {
    filter: invert(0); /* Cambia el color del ícono al pasar el cursor */
}
/* Sección de suscripción */
.subscribe {
    background-color: #f77f00; /* Color de fondo naranja */
    color: #fff;
    border-radius: 10px;
    padding: 40px 20px;
}

.subscribe h3 {
    font-size: 24px;
    font-weight: bold;
}

.subscribe p {
    font-size: 16px;
    margin-bottom: 0;
}

.subscribe .form-control {
    border-radius: 5px;
}

.subscribe .btn-dark {
    border-radius: 5px;
}

/* Pie de página */
.footer {
    background-color: #333;
    color: #fff;
}

.footer h5, .footer h6 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #f77f00 !important;
}

.footer .social-icons a {
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #f77f00 !important;
}

/* Estilos para la sección de historia */
.history {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.history-content {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.history-content:hover {
    transform: translateY(-5px);
}

.timeline-item {
    position: relative;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bs-primary);
}

.timeline-content {
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-primary);
}

.stat-box {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    padding: 15px 25px;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #0056b3 0%, var(--bs-primary) 100%);
}

.stat-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-box small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.historia-img {
    transition: transform 0.3s ease;
}

.historia-img:hover {
    transform: scale(1.02);
}

.badge {
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

/* Estilo para el botón de idioma */
#language-toggle {
    width: auto;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#language-toggle:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

/* Estilo para el menú desplegable */
.dropdown-menu {
    min-width: 120px;
    text-align: center;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
}

/* carrito */

.cart-container {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cart-container:hover {
    transform: scale(1.1);
}

.cart-icon {
    transition: color 0.2s ease;
}

.cart-icon:hover {
    color: var(--bs-primary) !important;
}

.cart-count {
    transition: transform 0.2s ease;
}

.cart-container:hover .cart-count {
    transform: scale(1.2);
}

/* Carrito lateral */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.cart-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    padding: 15px 0;
}

.cart-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid #eee;
    background: white;
}

.cart-sidebar.open {
    right: 0;
}

#cart-button {
    position: relative;
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
}

#cart-count {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
}

#whatsapp-order {
    display: block;
    text-align: center;
    padding: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

#whatsapp-order:hover {
    background: #128C7E;
    color: white;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.tech-badge i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.tech-badge:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Estilos para la sección de equipo */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--bs-primary);
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.tech-stack .badge {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack .badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #0056b3 0%, var(--bs-primary) 100%);
}

.team-card h4 {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.team-card p.text-muted {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card p.small {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Estilos para las tarjetas de productos */
.product-card {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(72, 191, 227, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(100, 255, 218, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

.product-img {
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 25, 47, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08) rotate(2deg);
}

.product-card:hover .product-img::after {
    opacity: 1;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64ffda 0%, #48bfe3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #64ffda, #48bfe3);
    transition: width 0.3s ease;
}

.product-card:hover .product-title::after {
    width: 100px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price::before {
    content: '$';
    font-size: 1.2rem;
    opacity: 0.8;
}

.product-description {
    color: #8892b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tech-stack .badge {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.tech-stack .badge:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

.cart-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.cart-container:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

.cart-icon {
    font-size: 1.25rem;
    color: #64ffda;
    transition: transform 0.3s ease;
}

.cart-container:hover .cart-icon {
    transform: scale(1.2) rotate(5deg);
}

.cart-count {
    background: #64ffda;
    color: #0a192f;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cart-container:hover .cart-count {
    transform: scale(1.1);
    background: #48bfe3;
    color: #fff;
}