/* ============================================================
   LA LUZ — SECCIÓN MASCOTAS
   ============================================================ */

.section-padding {
    padding: 160px 0 100px 0;
}

/* --- TIPOGRAFÍA --- */
.label-gold {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.display-serif {
    font-family: var(--font-serif);
    color: var(--dark-coffee);
    font-weight: 800 !important;
    font-size: 3.8rem;
    line-height: 1.05;
    letter-spacing: -1px;
}

.text-gold {
    color: var(--gold);
}

.lead {
    color: #4a4a4a !important;
    font-weight: 500;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* --- IMAGEN Y BADGE --- */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    object-fit: cover;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Altura del carousel: controlada por clase, no inline */
.carousel-img {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

.floating-badge-brown {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #8d672a;
    color: white;
    padding: 20px 35px;
    border-radius: 0 25px 0 0;
    z-index: 10;
}

/* --- BENEFIT CARDS --- */
.benefit-card {
    background: #ffffff;
    padding: 28px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.benefit-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.benefit-card h6 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-coffee);
    margin-bottom: 15px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 48, 36, 0.1) !important;
    border-color: var(--gold);
}

.benefit-card:hover .icon-box {
    background: var(--gold);
    color: #ffffff;
}

/* --- LISTA DE PLANES --- */
.plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.plan-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 0.85rem;
    top: 2px;
}

/* --- BOTÓN CTA --- */
.btn-gold-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--gold);
    color: var(--dark-coffee);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #ffffff;
}

/* ============================================================
   DESKTOP — sube imagen y texto al mismo nivel
   ============================================================ */
@media (min-width: 992px) {
    .image-wrapper {
        margin-top: 80px;
    }
    .content-mascotas {
        margin-top: 80px;
    }
}

/* ============================================================
   TABLET (768px – 991px)
   ============================================================ */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 110px 0 60px 0;
    }

    .display-serif {
        font-size: 2.8rem;
    }

    /* Imagen a altura media en tablet */
    .carousel-img {
        height: 420px;
    }

    .image-wrapper {
        margin-bottom: 40px;
    }
}

/* ============================================================
   MÓVIL (< 768px)
   ============================================================ */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 100px 0 50px 0;
    }

    /* Título más compacto */
    .display-serif {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .lead {
        font-size: 0.95rem !important;
    }

    /* Imagen carousel reducida */
    .carousel-img {
        height: 280px;
    }

    .image-wrapper {
        margin-bottom: 30px;
        border-radius: 12px;
    }

    /* Badge más compacto */
    .floating-badge-brown {
        padding: 12px 20px;
        border-radius: 0 16px 0 0;
    }

    .floating-badge-brown .bi-paw-fill {
        font-size: 1.4rem !important;
    }

    .floating-badge-brown h5 {
        font-size: 0.95rem;
    }

    .floating-badge-brown p {
        font-size: 0.72rem !important;
    }

    /* Tarjetas lado a lado en móvil grande, apiladas en pequeño */
    .benefit-card {
        padding: 20px 18px;
    }

    .benefit-card .icon-box {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .benefit-card h6 {
        font-size: 0.82rem;
        margin-bottom: 10px;
    }

    .plan-list li {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }

    /* Botón full-width en móvil */
    .btn-gold-outline {
        display: block;
        text-align: center;
        padding: 13px 20px;
        font-size: 0.8rem;
    }

    /* Quita el gap grande entre columnas en móvil */
    .row.g-5 {
        --bs-gutter-y: 1.5rem;
    }
}

/* ============================================================
   MÓVIL MUY PEQUEÑO (< 400px)
   ============================================================ */
@media (max-width: 400px) {
    .display-serif {
        font-size: 1.7rem;
    }

    .carousel-img {
        height: 220px;
    }

    /* Apila las tarjetas en pantallas muy pequeñas */
    .col-sm-6 {
        width: 100% !important;
    }

    .benefit-card {
        padding: 16px 14px;
    }
}