@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
    --bg: #f4f1eb;
    --surface: #ffffff;
    --surface-strong: #f8f5ef;
    --surface-dark: #13313d;
    --ink: #17303a;
    --ink-soft: #4f6670;
    --ink-muted: #6e828a;
    --line: #d7ddd8;
    --line-strong: #a9b6b1;
    --brand: #0f6a73;
    --brand-strong: #0c535a;
    --brand-pale: #dff1f0;
    --accent: #b88a3b;
    --accent-soft: #f2e6cf;
    --success: #25d366;
    --shadow-soft: 0 18px 40px rgba(19, 49, 61, 0.10);
    --shadow-card: 0 8px 24px rgba(19, 49, 61, 0.08);
    --radius-sm: 0.8rem;
    --radius-md: 1.2rem;
    --radius-lg: 1.75rem;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4.5rem;
    --container: min(1180px, 92vw);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans 3", sans-serif;
    background: linear-gradient(180deg, #f8f6f2 0%, #f4f1eb 20%, #ffffff 100%);
    color: var(--ink);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.hiddenElement {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

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

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-main {
    padding-top: 5.5rem;
}

.section {
    padding: var(--space-8) 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(248, 245, 239, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.section-dark {
    background: radial-gradient(circle at top right, rgba(184, 138, 59, 0.18), transparent 30%), linear-gradient(180deg, #173946 0%, #102c35 100%);
    color: #eef6f4;
}

.section-header {
    max-width: 780px;
    margin-bottom: var(--space-6);
}

.section-header.compact {
    margin-bottom: var(--space-5);
}

.section-header.light h2,
.section-header.light p {
    color: inherit;
}

.section-dark .section-label {
    background: rgba(255, 255, 255, 0.14);
    color: #f7fbfa;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.section-dark .section-label::before {
    background: #d9b16a;
}

.section-label,
.eyebrow,
.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--brand-pale);
    color: var(--brand-strong);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-label::before,
.eyebrow::before,
.panel-kicker::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--accent);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
    margin: 0;
    color: var(--ink-soft);
}

.section-header p,
.panel p,
.card p,
.contact-card p {
    font-size: 1.05rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.actions-centered {
    justify-content: center;
}

.actions-spaced {
    margin-top: var(--space-5);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--line-strong);
    color: var(--ink);
}

.btn-secondary:hover {
    background: var(--surface-strong);
    border-color: var(--brand);
}

.btn-light {
    background: #fff;
    color: var(--surface-dark);
}

.btn-light:hover {
    background: var(--accent-soft);
}

.mini-points,
.coverage-list,
.footer-list,
.nav-links,
.copyright,
.footer-legal {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mini-points li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--ink-soft);
}

.mini-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--accent);
}

.grid-2,
.grid-3,
.grid-4,
.grid-6,
.split,
.stack,
.form-grid,
.form-row,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.stack {
    gap: 1rem;
}

.panel,
.card,
.contact-card,
.cta-box,
.feature {
    border: 1px solid rgba(169, 182, 177, 0.48);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.card,
.panel,
.contact-card,
.cta-box {
    padding: 1.4rem;
}

.card h3,
.card h4,
.panel h2,
.panel h3,
.contact-card h2,
.cta-box h2 {
    margin-bottom: 0.7rem;
}

.bullet-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    color: var(--ink-soft);
}

.bullet-list li {
    margin-bottom: 0.55rem;
}

.page-header {
    padding: 4.75rem 0 1.5rem;
}

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.page-header p {
    margin-top: 0.8rem;
    max-width: 720px;
}

.success-shell {
    padding-top: calc(var(--space-8) + var(--space-7));
    padding-bottom: calc(var(--space-8) + var(--space-6));
}

.success-panel {
    max-width: 760px;
    margin: 0 auto var(--space-7);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.success-panel p + p {
    margin-top: 0.5rem;
}

.feature {
    display: grid;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
}

.feature .image {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--ink);
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.8rem 0.9rem;
    color: var(--ink);
    background: #fff;
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.g-recaptcha {
    margin-top: 0.8rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 242, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(169, 182, 177, 0.5);
}

.navbar-inner {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 0 0 auto;
    margin-right: var(--space-5);
    min-width: 0;
}

.logo-img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.logo-title,
.logo-subtitle {
    display: block;
    line-height: 1.1;
}

.logo-title {
    font-family: "Manrope", sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.logo-subtitle {
    margin-top: 0.2rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.menu-toggle {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 0.75rem;
    color: var(--ink);
    padding: 0.45rem 0.65rem;
    font-size: 1rem;
    display: inline-flex;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem;
    gap: 0.25rem;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: 0.8rem;
    color: var(--ink);
    font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    background: var(--brand-pale);
    color: var(--brand-strong);
}

.nav-links .nav-cta {
    background: var(--brand);
    color: #fff;
}

.nav-links .nav-cta:hover {
    background: var(--brand-strong);
    color: #fff;
}

@media (max-width: 768px) {
    .navbar-inner {
        gap: 0.75rem;
        padding: 0.85rem 0;
    }

    .logo {
        margin-right: auto;
        gap: 0.7rem;
        max-width: calc(100% - 4.25rem);
    }

    .logo-img {
        height: 38px;
    }

    .logo-title {
        font-size: 0.92rem;
    }

    .logo-subtitle {
        font-size: 0.68rem;
        letter-spacing: 0.03em;
    }
}

.site-footer {
    margin-top: 2.2rem;
    background: #102a33;
    color: #d8e4e0;
    padding: 2.7rem 0 2rem;
}

.site-footer .container {
    width: var(--container);
}

.site-footer h2,
.site-footer h3 {
    color: #fff;
}

.site-footer p {
    color: #c5d4cf;
}

.footer-grid {
    margin-top: 1.4rem;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(216, 228, 224, 0.15);
    margin-top: 1.2rem;
    padding-top: 1rem;
}

.copyright,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.92rem;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: var(--success);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    font-size: 1.75rem;
    font-weight: 700;
}

.whatsapp-float:hover {
    transform: scale(1.04);
}

@media (min-width: 720px) {
    .split,
    .feature,
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

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

@media (min-width: 980px) {
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        border: 0;
        background: transparent;
        padding: 0;
    }
}

@media (max-width: 719px) {
    .section {
        padding: 3.5rem 0;
    }

    .site-main {
        padding-top: 6rem;
    }

    .page-header {
        padding: 5rem 0 1.25rem;
    }

    .navbar-inner {
        padding: 0.9rem 0;
    }

    .logo {
        max-width: calc(100% - 4rem);
        font-size: 1.05rem;
        line-height: 1.2;
    }

    .contact-actions,
    .actions {
        flex-direction: column;
    }

    .actions .btn,
    .contact-actions .btn {
        width: 100%;
    }

    .success-shell {
        padding-top: calc(var(--space-8) + var(--space-8));
        padding-bottom: calc(var(--space-8) + var(--space-7));
    }

    .success-panel {
        margin-bottom: var(--space-8);
    }
}
