@font-face {
    font-family: "Manrope Local";
    font-style: normal;
    font-display: swap;
    font-weight: 200 800;
    src: url("/site-assets/fonts/manrope-latin-ext-wght-normal.woff2") format("woff2-variations");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Manrope Local";
    font-style: normal;
    font-display: swap;
    font-weight: 200 800;
    src: url("/site-assets/fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #faf4eb;
    --bg-soft: #fff8ef;
    --card: rgba(255, 253, 248, 0.96);
    --card-strong: #ffffff;
    --chip: #fff0de;
    --chip-soft: #fff7ed;
    --ink: #1d1712;
    --muted: #6d635a;
    --muted-strong: #453b33;
    --line: rgba(132, 95, 61, 0.16);
    --accent: #d14b1d;
    --accent-deep: #8d2d0d;
    --accent-ink: #6f230a;
    --whatsapp: #1f9d5b;
    --shadow-lg: 0 28px 72px rgba(69, 36, 11, 0.12);
    --shadow-md: 0 16px 38px rgba(69, 36, 11, 0.08);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope Local", "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.72;
    background:
        radial-gradient(1200px 580px at 0% -10%, rgba(255, 217, 173, 0.48), transparent 60%),
        radial-gradient(880px 520px at 100% 0%, rgba(255, 207, 185, 0.44), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
        var(--bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -4rem;
    left: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--accent-deep);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.skip-link:focus {
    top: 1rem;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 0.9rem 0;
    backdrop-filter: blur(14px);
    background: rgba(250, 244, 235, 0.84);
    border-bottom: 1px solid rgba(132, 95, 61, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    min-width: 0;
}

.logo img {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(209, 75, 29, 0.24);
}

.logo strong,
.section-heading h2,
.hero-copy h1,
.hero-stat strong,
.cta-panel h2,
.service-card h3,
.faq-item h3,
.article-card h2 {
    letter-spacing: -0.04em;
}

.logo strong {
    display: block;
    font-size: 1.05rem;
}

.logo small {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.desktop-nav a {
    text-decoration: none;
    font-weight: 700;
    color: var(--muted);
    padding: 0.7rem 0.92rem;
    border-radius: 999px;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.desktop-nav a:hover {
    transform: translateY(-1px);
    background: rgba(209, 75, 29, 0.12);
    color: var(--accent-ink);
}

.hero-section {
    padding: clamp(2.8rem, 5vw, 5.6rem) 0 2.1rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
    gap: 1rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.stat-card,
.service-card,
.article-card,
.faq-item,
.cta-panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-copy {
    padding: clamp(1.4rem, 2.8vw, 2.7rem);
}

.hero-copy h1 {
    margin: 0.4rem 0 0;
    max-width: 15ch;
    font-size: clamp(2.2rem, 5.3vw, 4.6rem);
    line-height: 1.02;
}

.hero-text,
.article-card p,
.faq-item p,
.service-card p,
.hero-stat span,
.stat-card p,
.section-copy {
    color: var(--muted);
}

.hero-text {
    max-width: 64ch;
    margin: 1rem 0 0;
    font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.eyebrow,
.service-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 2rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: var(--chip);
    color: var(--accent-ink);
    font-size: 0.87rem;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    padding: 0 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover,
.region-link:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 18px 34px rgba(141, 45, 13, 0.25);
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(135deg, #27c871, var(--whatsapp));
    box-shadow: 0 18px 34px rgba(31, 157, 91, 0.2);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.hero-badges span {
    background: var(--chip-soft);
    border: 1px solid rgba(209, 75, 29, 0.16);
    padding: 0.56rem 0.84rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--muted-strong);
}

.hero-panel {
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
    align-content: start;
    background:
        radial-gradient(360px 180px at 90% 0%, rgba(255, 214, 185, 0.55), transparent 65%),
        var(--card);
}

.hero-stat {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(132, 95, 61, 0.14);
    border-radius: var(--radius-lg);
}

.hero-stat strong {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.stats-strip {
    padding-bottom: 2rem;
}

.stats-grid,
.service-grid,
.faq-grid,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.service-card,
.faq-item {
    padding: 1.2rem;
}

.stat-card strong {
    display: block;
    font-size: 1.1rem;
}

.services-section,
.content-section,
.regions-section,
.faq-section,
.cta-section {
    padding: 1rem 0 2.9rem;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 1.35rem;
}

.section-heading h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.6rem, 3.1vw, 2.7rem);
    line-height: 1.05;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card h3,
.faq-item h3 {
    margin: 0.7rem 0 0.35rem;
    font-size: 1.08rem;
}

.article-card {
    padding: clamp(1.25rem, 2.5vw, 2.35rem);
}

.article-card h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.article-card p {
    margin: 0 0 1rem;
    color: var(--muted-strong);
}

.article-card p:last-child {
    margin-bottom: 0;
}

.featured-figure {
    margin: 1.2rem 0;
    padding: 0.85rem;
    background: var(--chip-soft);
    border: 1px solid rgba(209, 75, 29, 0.14);
    border-radius: var(--radius-lg);
}

.featured-figure img {
    border-radius: 18px;
}

.featured-figure figcaption {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.check-list {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    color: var(--muted-strong);
}

.check-list li + li {
    margin-top: 0.55rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.6rem;
    color: var(--muted);
    font-size: 0.93rem;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent-ink);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.region-link {
    text-decoration: none;
    padding: 0.9rem 1rem;
    background: var(--card-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-weight: 800;
    box-shadow: var(--shadow-md);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.region-link:hover {
    border-color: rgba(209, 75, 29, 0.35);
    background: #fff;
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-panel {
    padding: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background:
        radial-gradient(440px 220px at 100% 0%, rgba(255, 219, 192, 0.58), transparent 70%),
        var(--card);
}

.cta-panel h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.6rem, 2.8vw, 2.45rem);
    line-height: 1.05;
}

.main-footer {
    padding: 2rem 0 6rem;
    background: rgba(255, 248, 239, 0.86);
    border-top: 1px solid rgba(132, 95, 61, 0.12);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 0.55rem;
    letter-spacing: -0.03em;
}

.footer-grid p,
.footer-grid a,
.footer-meta {
    color: var(--muted);
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--accent-ink);
}

.footer-meta {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(132, 95, 61, 0.12);
    font-size: 0.92rem;
}

.sticky-mobile-bar {
    position: fixed;
    left: 50%;
    bottom: 0.55rem;
    transform: translateX(-50%);
    width: min(620px, calc(100% - 1rem));
    display: none;
    gap: 0.6rem;
    padding: 0.5rem;
    background: rgba(255, 250, 243, 0.92);
    border: 1px solid rgba(132, 95, 61, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(29, 23, 18, 0.14);
    backdrop-filter: blur(16px);
    z-index: 40;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    padding: 0.86rem 0.75rem;
    border-radius: 16px;
    color: #fff;
}

.sticky-call {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #27c871, var(--whatsapp));
}

.deferred-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 940px;
}

.error-card {
    max-width: 760px;
    text-align: center;
}

@media (max-width: 980px) {
    .hero-layout,
    .service-grid,
    .service-grid-small,
    .stats-grid,
    .faq-grid,
    .footer-grid,
    .cta-panel {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-copy h1 {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(1180px, calc(100% - 1.2rem));
    }

    .desktop-nav {
        display: none;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .main-footer {
        padding-bottom: 7rem;
    }

    .sticky-mobile-bar {
        display: flex;
    }
}
