/* ── Cards section ───────────────────────────────── */
.cards-section {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 40px 100px;
}

.section-intro {
    text-align: center;
    margin-bottom: 64px;
}

.section-intro .tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-intro h2 em {
    font-style: normal;
    color: var(--text-primary);
}

.deco-line {
    width: 56px;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), #f4c26a);
    border-radius: 50px;
    margin: 0 auto 16px;
}

.section-intro p {
    font-size: 1.05rem;
    color: var(--text-primary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Grid cards ──────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 960px) {
    .cards-section {
        padding: 90px 20px 100px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* ── Card ────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(224, 101, 25, .12);
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(224, 101, 25, .22);
    border-color: #f5d9c2;
}

/* photo */
.card-photo {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.card:hover .card-photo img {
    transform: scale(1.06);
}

/* number badge */
.card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(224, 101, 25, .4);
}

/* orange ribbon at bottom of photo */
.card-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), #f9a642);
}

/* body */
.card-body {
    padding: 28px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-unidade {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
}

.card-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.card-desc {
    font-size: .97rem;
    color: var(--text-primary);
    line-height: 1.75;
    flex: 1;
}

/* features list */
.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.card-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

/* divider */
.card-divider {
    height: 1px;
    background: linear-gradient(90deg, #f5d9c2, transparent);
    border: none;
}

/* address */
.card-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .88rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.card-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--orange);
}

/* footer card */
.card-footer {
    padding: 0 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 360 button */
.btn-360 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(224, 101, 25, .35);
    transition: transform .25s, box-shadow .25s, filter .25s;
    letter-spacing: .03em;
}

.btn-360:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(224, 101, 25, .45);
    filter: brightness(1.06);
}

.btn-360:active {
    transform: translateY(0);
}

/* 360 icon circle */
.btn-360 .icon-360 {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, .22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 900;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, .45);
}

/* maps link */
.btn-maps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background: transparent;
    color: var(--orange);
    font-size: .9rem;
    font-weight: 700;
    border: 2px solid #f5d9c2;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background .25s, border-color .25s;
}

.btn-maps:hover {
    background: #fff3e8;
    border-color: var(--orange);
}

/* ── Accent bottom strip ─────────────────────────── */
.bottom-strip {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    padding: 40px 40px 220px 40px;
    overflow: hidden;
}

.bottom-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent, transparent 18px,
            rgba(255, 255, 255, .06) 18px, rgba(255, 255, 255, .06) 36px);
}

.strip-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.strip-inner h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.strip-inner p {
    font-size: 1rem;
    opacity: .88;
    line-height: 1.65;
}

.strip-emoji {
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: block;
}

@media (max-width: 600px) {
    .bottom-strip {
        padding: 40px 40px 70px 40px;
    }
}