.precios {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.precios h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.precio-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.precio-card:hover {
    transform: translateY(-10px);
}

.precio-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.precio-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.medida {
    color: #007bff;
    font-size: 1.2rem;
    font-weight: bold;
}

.precio-content {
    text-align: center;
}

.descuento {
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.precio-original {
    color: #666;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.precio-final {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .precios {
        padding: 4rem 1rem;
    }

    .precios h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .precios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
}

/* Efectos adicionales */
.precio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    border-radius: 15px;
    pointer-events: none;
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.precio-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.precio-card:nth-child(2) {
    animation-delay: 0.2s;
}

.precio-card:nth-child(3) {
    animation-delay: 0.4s;
}

.precio-card:nth-child(4) {
    animation-delay: 0.6s;
}

.precio-card:nth-child(5) {
    animation-delay: 0.8s;
}

.precio-card:nth-child(6) {
    animation-delay: 1s;
}

.precio-card:nth-child(7) {
    animation-delay: 1.2s;
}

.precio-card:nth-child(8) {
    animation-delay: 1.4s;
}

/* Y así sucesivamente para cada tarjeta */ 