/* ============================= */
/* PET FRIENDLY — CSS            */
/* ============================= */

html { overflow-anchor: none; }

/* ─── HERO ─────────────────────────────────────── */

.pet-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    align-items: center;
    background: var(--bg);
    padding: 80px 70px 80px 70px;
    gap: 60px;
    overflow: hidden;
}

.pet-tag {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 14px;
    display: block;
}

.pet-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 300;
    color: var(--negro);
    line-height: 1;
    margin: 0 0 22px;
}

.pet-hero-title em {
    font-style: italic;
    color: var(--verde);
}

.pet-hero-desc {
    font-size: 15px;
    color: var(--gris-osc);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 32px;
}

.pet-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pet-btn-primary {
    padding: 12px 28px;
    background: var(--verde);
    color: var(--blanco);
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.25s ease;
    box-shadow: 0 4px 16px rgba(70,114,53,0.28);
}

.pet-btn-primary:hover {
    background: #3a5e2b;
    transform: translateY(-2px);
}

.pet-btn-ghost {
    padding: 12px 28px;
    background: transparent;
    color: var(--verde);
    border: 1.5px solid var(--verde);
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.25s ease;
}

.pet-btn-ghost:hover {
    background: rgba(70,114,53,0.06);
    transform: translateY(-2px);
}

/* ─── HERO DERECHA ──────────────────────────────── */

.pet-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pet-hero-img-wrap {
    position: relative;
    width: 380px;
    height: 460px;
}

.pet-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 24px 24px;
    display: block;
}

.pet-hero-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--negro);
    color: var(--blanco);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(13,13,13,0.2);
}

.pet-paw {
    position: absolute;
    font-size: 24px;
    opacity: 0.18;
    pointer-events: none;
}

.pet-paw-1 { top: 10%; right: 2%; transform: rotate(15deg); }
.pet-paw-2 { bottom: 20%; left: 0%; transform: rotate(-20deg); font-size: 18px; }
.pet-paw-3 { top: 55%; right: 5%; transform: rotate(8deg); font-size: 16px; }

/* ─── MARQUEE ───────────────────────────────────── */

.pet-marquee-wrap {
    background: var(--negro);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}

.pet-marquee-track {
    display: inline-flex;
    gap: 20px;
    animation: petMarquee 28s linear infinite;
}

@keyframes petMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.pet-marquee-track span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(242,242,242,0.55);
}

.pet-sep {
    color: var(--verde) !important;
}

/* ─── SECCIÓN INFO ──────────────────────────────── */

.pet-info {
    background: var(--bg);
    padding: 100px 70px;
}

.pet-info-header {
    text-align: center;
    margin-bottom: 64px;
}

.pet-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 300;
    color: var(--negro);
    line-height: 1.05;
    margin: 0;
}

.pet-section-title em {
    font-style: italic;
    color: var(--verde);
}

.pet-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pet-info-card {
    background: var(--blanco);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(70,114,53,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pet-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13,13,13,0.08);
}

.pet-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(70,114,53,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pet-info-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--negro);
    margin-bottom: 10px;
}

.pet-info-card p {
    font-size: 13px;
    color: var(--gris-osc);
    line-height: 1.7;
}

/* ─── SPLIT ─────────────────────────────────────── */

.pet-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: var(--negro);
}

.pet-split-img {
    overflow: hidden;
}

.pet-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: transform 0.6s ease;
}

.pet-split-img:hover img {
    transform: scale(1.04);
}

.pet-split-text {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pet-split-desc {
    font-size: 15px;
    color: rgba(242,242,242,0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

.pet-cta-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--verde-cla);
    text-decoration: none;
    transition: letter-spacing 0.25s ease;
}

.pet-cta-link:hover {
    letter-spacing: 0.12em;
}

/* ─── TIPS ──────────────────────────────────────── */

.pet-tips {
    background: var(--bg);
    padding: 100px 70px;
}

.pet-tips-header {
    margin-bottom: 56px;
}

.pet-tips-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
}

.pet-tip {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 32px 32px 0;
    border-bottom: 1px solid rgba(70,114,53,0.12);
}

.pet-tip:nth-child(odd) {
    padding-right: 48px;
    border-right: 1px solid rgba(70,114,53,0.12);
}

.pet-tip:nth-child(even) {
    padding-left: 48px;
    padding-right: 0;
}

.pet-tip:nth-last-child(-n+2) {
    border-bottom: none;
}

.pet-tip-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 300;
    color: rgba(70,114,53,0.25);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
}

.pet-tip h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--negro);
    margin-bottom: 6px;
}

.pet-tip p {
    font-size: 13px;
    color: var(--gris-osc);
    line-height: 1.7;
}

/* ─── CTA FINAL ─────────────────────────────────── */

.pet-cta-final {
    background: var(--verde);
    text-align: center;
    padding: 100px 40px;
}

.pet-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 300;
    color: var(--blanco);
    line-height: 1;
    margin: 0 0 40px;
}

.pet-cta-title em {
    font-style: italic;
    color: var(--verde-cla);
}

.pet-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.pet-btn-dark {
    padding: 14px 36px;
    background: var(--negro);
    color: var(--blanco);
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.25s ease;
}

.pet-btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.pet-btn-outline {
    padding: 14px 36px;
    background: transparent;
    color: var(--blanco);
    border: 1.5px solid rgba(242,242,242,0.4);
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.25s ease;
}

.pet-btn-outline:hover {
    background: rgba(242,242,242,0.1);
    transform: translateY(-2px);
}

/* ─── ANIMACIONES ───────────────────────────────── */

.cn-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(.22,.68,0,1),
                transform 0.65s cubic-bezier(.22,.68,0,1);
}

.cn-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────── */

@media (max-width: 1024px) {
    .pet-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .pet-hero {
        grid-template-columns: 1fr;
        padding: 60px 28px;
        gap: 48px;
        min-height: auto;
    }

    .pet-hero-right {
        justify-content: center;
    }

    .pet-hero-img-wrap {
        width: 280px;
        height: 340px;
    }

    .pet-split {
        grid-template-columns: 1fr;
    }

    .pet-split-img {
        height: 450px;
    }

    .pet-split-text {
        padding: 48px 28px;
    }

    .pet-info {
        padding: 70px 28px;
    }

    .pet-tips {
        padding: 70px 28px;
    }

    .pet-tips-list {
        grid-template-columns: 1fr;
    }

    .pet-tip {
        padding: 24px 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(70,114,53,0.12) !important;
    }

    .pet-tip:nth-child(even) {
        padding-left: 0;
    }

    .pet-tip:last-child {
        border-bottom: none !important;
    }
}

@media (max-width: 600px) {
    .pet-cards-grid {
        grid-template-columns: 1fr;
    }

    .pet-hero-title {
        font-size: clamp(38px, 12vw, 56px);
    }

    .pet-cta-final {
        padding: 70px 20px;
    }
}