/* ── Brechó ───────────────────────────────────────────────────────── */

.brecho-hero {
    position: relative;
    overflow: hidden;
}


.brecho-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3.5rem;
    align-items: start;
}

.brecho-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.35rem 0.9rem;
    border: 2px dashed var(--brand);
    border-radius: 999px;
    color: var(--brand);
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brecho-intro h2 {
    margin: 1rem 0 0.5rem;
}

.brecho-subtitle {
    margin: 0 0 1.4rem;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-style: italic;
    font-weight: 500;
    color: var(--brand);
}

.brecho-lead {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--muted);
}

.brecho-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* polaroid photo with tape and a hanging price tag */
.brecho-visual {
    position: relative;
    padding: 1.5rem 0.5rem 1rem;
}

.brecho-polaroid {
    position: relative;
    margin: 0;
    padding: 0.9rem 0.9rem 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.18);
    transform: rotate(2.5deg);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.brecho-polaroid:hover {
    transform: rotate(0deg) scale(1.02);
}

.brecho-polaroid picture,
.brecho-polaroid img,
.brecho-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.brecho-placeholder {
    min-height: 0;
    background: linear-gradient(135deg, #eceff4, #dae2ed);
    display: grid;
    place-items: center;
    font-size: 4rem;
    color: var(--brand);
    opacity: 0.6;
}

.brecho-polaroid figcaption {
    padding: 1rem 0.5rem 1.2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
}

.tape {
    position: absolute;
    top: -14px;
    width: 92px;
    height: 28px;
    background: rgba(240, 137, 182, 0.55);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.tape-left {
    left: -22px;
    transform: rotate(-38deg);
}

.tape-right {
    right: -22px;
    transform: rotate(38deg);
}

.brecho-tag {
    position: absolute;
    z-index: 3;
    right: -0.4rem;
    bottom: -.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem 0.55rem 1.4rem;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
    filter: drop-shadow(0 6px 10px rgba(177, 50, 98, 0.35));
    transform: rotate(-4deg);
}

/* visit card styled as a punched price tag */
.brecho-visit {
    padding-top: 0;
    margin-top: -1rem;
}

.brecho-price-tag {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 2rem 1.8rem 4.5rem;
    background: #fff;
    border: 2px dashed var(--brand);
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.brecho-price-tag .hole {
    position: absolute;
    top: 50%;
    left: 1.6rem;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: -0.7rem;
    border-radius: 50%;
    background: var(--section-bg);
    border: 2px dashed var(--brand);
}

.brecho-price-tag h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.brecho-price-tag ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.brecho-price-tag li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 1.1rem;
    color: var(--text);
}

.brecho-price-tag li i {
    margin-top: 0.3rem;
    color: var(--brand);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .brecho-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brecho-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 620px) {
    .brecho-price-tag {
        padding: 1.6rem 1.2rem 1.4rem 3.4rem;
    }

    .brecho-price-tag .hole {
        left: 1rem;
    }

    .brecho-tag {
        right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brecho-polaroid {
        transition: none;
    }
}
