﻿/* ===== SECCIÓN: TODO LO QUE TU NEGOCIO NECESITA ===== */
.section-offer {
    background: #f9fafb;
}

    /* Título y subtítulo */
    .section-offer .section-title {
        font-weight: 800;
        font-size: clamp(1.9rem, 3vw, 2.3rem);
        line-height: 1.2;
        letter-spacing: -0.5px;
        color: #1e3a8a;
    }

    .section-offer .section-subtitle {
        color: #6b7280;
        font-size: 1.05rem;
        max-width: 760px;
        margin: 0 auto;
    }

/* ===== Cards del carrusel ===== */
.offer-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    height: 100%;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid transparent;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
    cursor: default;
}

    /* Icono */
    .offer-card .icon {
        font-size: 2.5rem;
        color: #2563eb;
        margin-bottom: 18px;
        transition: transform 0.35s ease, color 0.35s ease;
    }

    /* Título de card */
    .offer-card h4 {
        font-weight: 700;
        font-size: 1.05rem;
        letter-spacing: -0.2px;
        color: #1f2937;
        margin-bottom: 10px;
        min-height: 52px;
    }

    /* Texto de card */
    .offer-card p {
        font-size: 0.95rem;
        color: #6b7280;
        line-height: 1.55;
        min-height: 72px;
        margin-bottom: 0;
    }

    /* Hover */
    .offer-card:hover {
        transform: translateY(-6px);
        border-top-color: #2563eb;
        box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
    }

        .offer-card:hover .icon {
            color: #1e40af;
            transform: scale(1.18);
        }

/* ===== Swiper ===== */
.swiper-slide {
    display: flex;
    height: auto;
}

.swiper-button-prev,
.swiper-button-next {
    color: #2563eb !important;
    transition: color 0.3s ease;
}

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        color: #1e40af !important;
    }




