:root {
    --primary: #c91c1c;
    --primary-dark: #9d1414;
    --dark: #141414;
    --dark-soft: #1f1f1f;
    --text: #242424;
    --text-soft: #636363;
    --light: #ffffff;
    --surface: #f5f5f5;
    --border: #e7e7e7;
    --radius: 18px;
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(840px, calc(100% - 32px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    font-weight: 800;
}

.logo-mark {
    background: var(--primary);
    color: var(--light);
    padding: 10px 12px;
    border-radius: 12px;
    line-height: 1;
}

.logo-text {
    font-size: 1.1rem;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.nav a:hover { color: var(--light); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: .2s ease;
    border: 1px solid transparent;
}

.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 42px; padding: 0 18px; }
.btn-primary { background: var(--primary); color: var(--light); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border-color: #d0d0d0; color: var(--text); background: var(--light); }
.btn-outline-light { border-color: rgba(255,255,255,.36); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-light { background: var(--light); color: var(--dark); }

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

.mobile-menu {
    display: none;
    padding: 0 16px 18px;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
    display: block;
    color: #fff;
    padding: 12px 0;
}
.mobile-menu.is-open { display: block; }
.mobile-cta { margin-top: 12px; }

.hero-section {
    padding: 88px 0 64px;
    color: var(--light);
}

.hero-real {
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(20,20,20,.84) 0%, rgba(20,20,20,.68) 38%, rgba(20,20,20,.24) 70%, rgba(20,20,20,.12) 100%),
        url('/assets/img/hero-cacamba-real.jpg') center/cover no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 36px;
    align-items: center;
}

.hero-grid-single {
    grid-template-columns: minmax(0, 640px);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: .92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.content-text p,
.card p,
.area-box p,
.faq-item p,
.contact-box p,
.site-footer p,
.site-footer li {
    color: rgba(255,255,255,.84);
}

.hero-copy p { max-width: 640px; }
.hero-copy-real p { color: rgba(255,255,255,.92); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.hero-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-highlights li {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: .95rem;
    backdrop-filter: blur(3px);
}

.hero-card {
    display: flex;
    justify-content: flex-end;
}

.hero-visual {
    width: 100%;
    max-width: 420px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
}

.tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(201,28,28,.18);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
}

.hero-visual h2 { margin: 0 0 12px; font-size: 1.8rem; }
.hero-visual p { margin: 0; color: rgba(255,255,255,.82); }

.section,
.page-hero { padding: 72px 0; }
.section-alt { background: var(--surface); }
.page-hero { background: #191919; color: #fff; }

.section-heading { margin-bottom: 28px; text-align: center; }
.section-heading h2 { margin: 0 0 14px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-heading p,
.content-text p,
.card p,
.area-box p,
.faq-item p,
.contact-box p {
    color: var(--text-soft);
}
.text-left { text-align: left; }

.cards-grid,
.areas-grid,
.faq-list {
    display: grid;
    gap: 22px;
}
.cards-grid { grid-template-columns: repeat(3, 1fr); }
.areas-grid { grid-template-columns: repeat(3, 1fr); }
.faq-list { grid-template-columns: 1fr; }

.card,
.area-box,
.faq-item,
.contact-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.card h3,
.area-box h3,
.faq-item h3,
.contact-box h2 { margin-top: 0; }

.content-text p { margin-top: 0; }

.cta-section {
    padding: 0 0 72px;
    background: linear-gradient(180deg, transparent 0, transparent 50%, #141414 50%, #141414 100%);
}
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #7e1111 100%);
    color: #fff;
    box-shadow: var(--shadow);
}
.cta-box h2 { margin: 8px 0 10px; }
.cta-box p { margin: 0; color: rgba(255,255,255,.88); }

.site-footer {
    background: #141414;
    color: #fff;
    padding: 72px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr;
    gap: 28px;
}
.site-footer h3,
.site-footer h4 { margin-top: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: rgba(255,255,255,.7); }

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    font-size: 1.4rem;
    z-index: 60;
}

@media (max-width: 960px) {
    .nav,
    .header-inner > .btn { display: none; }
    .menu-toggle { display: block; }
    .hero-grid,
    .cards-grid,
    .areas-grid,
    .footer-grid,
    .cta-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-section { padding-top: 64px; }
}

@media (max-width: 640px) {
    .section,
    .page-hero,
    .site-footer { padding-top: 56px; padding-bottom: 56px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .hero-visual,
    .card,
    .area-box,
    .faq-item,
    .contact-box,
    .cta-box { padding: 22px; }
}

.card-link { display:flex; flex-direction:column; }
.card-link .text-link { margin-top:auto; font-weight:700; color: var(--primary); }
.bairro-links-grid { grid-template-columns: repeat(3, 1fr); }
.two-columns-text { display:grid; grid-template-columns: repeat(2, 1fr); gap: 22px 28px; }
.bairro-hero .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.bairro-hero .btn-outline:hover { background: rgba(255,255,255,.08); }
@media (max-width: 900px) {
  .two-columns-text, .bairro-links-grid { grid-template-columns: 1fr; }
}


.hero-visual-image {
    padding: 14px;
    overflow: hidden;
}
.hero-visual-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}
.service-card {
    overflow: hidden;
    padding: 0;
}
.card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: #1a1a1a;
}
.service-card { border-radius: 20px; }
.service-card .card-body { background: #fff; }
.card-body {
    padding: 22px;
}
.card h3 {
    margin: 0 0 10px;
}
.areas-showcase {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 22px;
    align-items: start;
}
.areas-map-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.areas-map-card img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}
.bairro-hero {
    background:
        linear-gradient(180deg, rgba(20,20,20,.84), rgba(20,20,20,.92)),
        url('/assets/img/hero-cacamba-real.jpg') center/cover no-repeat;
}
@media (max-width: 920px) {
    .areas-showcase {
        grid-template-columns: 1fr;
    }
}
