/* ================= PRECIOS ================= */

.precios_section {
    padding: 90px 20px;
    background: #f8faf9;
}

.precios_container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.precios_title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0c2b1f;
}

.precios_sub {
    color: #555;
    margin-bottom: 60px;
}

/* ----- Cards precios ----- */
.precios_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.precio_card {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.precio_card:hover {
    transform: translateY(-6px);
}

.precio_card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.precio_monto {
    font-size: 2.4rem;
    font-weight: 800;
    color: #2b8a78;
}

.precio_desc {
    color: #666;
}

.precio_extra {
    margin-top: 12px;
    font-size: 0.95rem;
}

/* Destacado */
.precio_card.destacado {
    border: 2px solid #2b8a78;
    background: linear-gradient(180deg, #ffffff, #f1faf7);
}

/* ----- Bloques ----- */
.precios_box {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

.precios_box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.tabla_precios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: left;
}

.tabla_precios p {
    margin: 6px 0;
}

/* Té */
.precios_box.tea {
    background: #eaf6f2;
}

.precio_te {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b8a78;
    margin-top: 10px;
}

/* Nota */
.nota {
    font-size: 0.85rem;
    color: #777;
}

/* ----- Animaciones ----- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ----- Responsive ----- */
@media (max-width: 600px) {
    .precios_title {
        font-size: 2rem;
    }
}
