:root {
    --brand: #176b87;
    --accent: #22a699;
    --gold: #d6ae48;
    --ink: #18242b;
    --muted: #64727c;
    --paper: #ffffff;
    --soft: #eef4f5;
    --line: #d8e2e6;
    --footer-bg: #172026;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 4px clamp(20px, 6vw, 72px);
    background: var(--header-bg, #1A1A1A);
    border-bottom: 1px solid rgba(214, 174, 72, .42);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.brand img {
    width: min(360px, 42vw);
    height: 120px;
    object-fit: contain;
}

.brand strong {
    max-width: 240px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.main-nav a:hover {
    border-color: rgba(214, 174, 72, .78);
    background: rgba(214, 174, 72, .10);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
    transform: translateY(-1px);
}

.nav-toggle,
.submenu-toggle,
.mobile-quick-nav {
    display: none;
}


.main-nav .nav-cta {
    border-color: var(--gold);
    background: var(--gold);
    color: #171717;
    font-weight: 800;
}

.main-nav .nav-cta:hover {
    border-color: #f0cd70;
    background: #f0cd70;
    color: #111111;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
}

.nav-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 80;
    display: grid;
    min-width: 320px;
    gap: 6px;
    padding: 18px 10px 10px;
    border: 1px solid rgba(214, 174, 72, .36);
    border-radius: 8px;
    background: #111111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

.dropdown-menu a {
    justify-content: flex-start;
    min-height: 34px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, .86);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(214, 174, 72, .12);
    color: #ffffff;
    box-shadow: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 62vh;
    display: grid;
    align-items: center;
    padding: 36px clamp(20px, 6vw, 72px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .78)),
        var(--hero-image, linear-gradient(135deg, var(--soft), #ffffff));
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -34% -8%;
    z-index: -1;
    height: 58%;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background:
        linear-gradient(90deg, rgba(214, 174, 72, .16), rgba(255, 255, 255, .84) 42%, rgba(15, 59, 95, .12));
    transform: rotate(-1.8deg);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 78% 18%, rgba(214, 174, 72, .18), transparent 30%), linear-gradient(120deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
    border-bottom: 3px solid rgba(214, 174, 72, .45);
}

.hero-content {
    max-width: 720px;
    padding: 8px 0 34px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
}

.hero-ad {
    display: grid;
    gap: 12px;
    max-width: 390px;
    margin-left: auto;
    border: 1px solid rgba(214, 174, 72, .48);
    border-radius: 9px;
    padding: 7px;
    background: rgb(255 255 255 / 86%);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
    backdrop-filter: blur(6px);
}

.hero-ad span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-ad h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.16;
}

.hero-ad p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.hero-ad-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    width: fit-content;
    border: 1px solid rgba(37, 211, 102, .64);
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(37, 211, 102, .14);
    color: #ffffff;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.hero-ad-link:hover {
    border-color: rgba(37, 211, 102, .96);
    background: rgba(37, 211, 102, .24);
    transform: translateY(-1px);
}

.hero-ad-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-ad-image-link,
.hero-ad-image {
    display: block;
    width: 100%;
}

.hero-ad-image-link {
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.hero-ad-image-link img,
.hero-ad-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: 8px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.12;
}

h2 {
    margin: 0 0 16px;
    font-size: 34px;
}

h3 {
    margin: 0 0 10px;
}

p,
li {
    color: var(--muted);
    line-height: 1.7;
    text-align: justify;
    text-wrap: pretty;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 10px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    padding: 0 20px;
    background: transparent;
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button:hover {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(23, 107, 135, .18);
    transform: translateY(-1px);
}

.icon-button {
    width: 46px;
    min-width: 46px;
    padding: 0;
    border-color: rgba(37, 211, 102, .5);
    background: #ffffff;
}

.icon-button img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

button {
    min-height: 42px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    padding: 0 20px;
    background: var(--brand);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

button:hover {
    box-shadow: 0 12px 28px rgba(23, 107, 135, .18);
    transform: translateY(-1px);
}

.section {
    padding: 27px clamp(20px, 6vw, 60px);
    padding-bottom: 33px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-grid article {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.service-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 38px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #151515;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.service-grid article h3 {
    margin: 0 0 10px;
    color: var(--ink);
}

.service-grid article p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    text-align: justify;
}

.service-grid article .text-link {
    margin-top: auto;
}

.home-modules-section {
    background: #ffffff;
}

.home-modules-stack {
    display: grid;
    gap: 33px;
}

.home-module-group {
    display: grid;
    gap: 0;
}

.home-module-group-label {
    display: none;
}

.home-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 18px;
}

.home-module-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.home-module-media {
    margin-bottom: 14px;
}

.home-module-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    border-radius: 8px;
}

.home-module-content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 10px;
}

.home-module-content h2 {
    margin: 0;
    color: var(--ink);
}

.home-module-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    text-align: justify;
}

.home-module-content strong {
    display: block;
    color: var(--ink);
    line-height: 1.45;
}

.home-module-content .text-link {
    width: fit-content;
    margin-top: auto;
}
.contact-band {
    padding-top: 18px;
    padding-bottom: 27px;
    border-top: 1px solid rgba(214, 174, 72, .42);
    background:
        linear-gradient(180deg, rgb(203 203 203 / 16%), rgb(130 130 130 / 92%)),
        linear-gradient(359deg, rgba(23, 107, 135, .08), rgb(156 177 255 / 12%));
}

.contact-band h2 {
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-grid figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.gallery-grid figcaption {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
}

.page-hero {
    min-height: 124px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 21px clamp(20px, 6vw, 72px);
    background: #000000;
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero h1 {
    text-align: left;
    margin-bottom: 0;
}

.page-content {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 72px;
    color: var(--ink);
    line-height: 1.8;
    white-space: normal;
}

.page-content > * {
    max-width: 860px;
}

.page-content > .content-section,
.page-content > .content-columns,
.page-content > .content-media,
.page-content > .content-card-grid,
.page-content > .content-cta,
.page-content > .content-faq,
.page-content > .content-separator,
.page-content > .content-image {
    max-width: none;
}

.page-content .text-left {
    text-align: left;
}

.page-content .text-center {
    text-align: center;
}

.page-content .text-right {
    text-align: right;
}

.page-content .text-justify {
    text-align: justify;
}

.page-content .font-sans {
    font-family: Arial, Helvetica, sans-serif;
}

.page-content .font-serif {
    font-family: Georgia, 'Times New Roman', serif;
}

.page-content .font-elegant {
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.page-content .font-mono {
    font-family: 'Courier New', monospace;
}

.page-content h2,
.page-content h3,
.page-content .content-kicker,
.main-nav,
.site-footer {
    text-align: initial;
}

.button,
.page-content .content-button,
button {
    text-align: center;
}

.page-content .content-section {
    margin: 28px 0;
    border-left: 4px solid var(--gold);
    padding: 8px 0 8px 22px;
}

.page-content .content-section-soft {
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 24px;
    background: #f7fafb;
}

.page-content .content-section-dark {
    border-radius: 8px;
    padding: 28px;
    background: #151515;
    color: #ffffff;
}

.page-content .content-section-dark p,
.page-content .content-section-dark h2,
.page-content .content-section-dark h3 {
    color: #ffffff;
}

.page-content .content-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.page-content .content-highlight {
    margin: 28px 0;
    border-left: 4px solid var(--gold);
    padding: 18px 22px;
    background: linear-gradient(90deg, rgba(214, 174, 72, .14), rgba(255, 255, 255, 0));
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
}

.page-content .content-highlight p {
    margin: 0;
    color: var(--ink);
}

.page-content .content-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.page-content .content-columns > div,
.page-content .content-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
}

.page-content .content-media {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 28px;
    align-items: center;
    margin: 32px 0;
}

.page-content .content-media.image-left {
    grid-template-columns: .9fr 1fr;
}

.page-content .content-media.image-left .content-image {
    order: -1;
}

.page-content .content-card-grid,
.page-content .content-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.page-content .content-card,
.page-content .content-feature {
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.page-content .content-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 34px 0;
    border-radius: 8px;
    padding: 28px;
    background: #151515;
    color: #ffffff;
}

.page-content .content-cta h2,
.page-content .content-cta p {
    color: #ffffff;
}

.page-content .content-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    white-space: nowrap;
    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 0 18px;
    background: var(--gold);
    color: #151515;
    text-decoration: none;
    font-weight: 800;
}

.page-content .content-separator {
    height: 1px;
    margin: 34px 0;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-content .content-faq {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

.page-content .content-image {
    margin: 22px 0;
}

.page-content .content-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    border-radius: 8px;
    object-fit: cover;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    width: 54px;
    min-height: 54px;
    border: 1px solid rgba(6, 45, 23, .12);
    border-radius: 999px;
    justify-content: center;
    padding: 0;
    background: rgba(37, 211, 102, .94);
    color: #062d17;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 22px;
    align-items: start;
}

.contact-grid > div p {
    margin-bottom: 8px;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.whatsapp-link {
    width: fit-content;
    gap: 10px;
    border-color: rgba(37, 211, 102, .56);
    background: #ffffff;
    color: #0f4c2b;
}

.whatsapp-link:hover {
    border-color: rgba(37, 211, 102, .92);
    background: rgba(37, 211, 102, .12);
    color: #07351c;
}

.whatsapp-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.office-list {
    display: grid;
    gap: 12px;
}

.office-list h3 {
    margin-bottom: 2px;
}

.office-list article {
    display: grid;
    gap: 4px;
    border-left: 2px solid rgba(214, 174, 72, .74);
    padding-left: 14px;
}

.office-list strong {
    color: var(--ink);
}

.office-list span {
    color: #3f505a;
    line-height: 1.45;
}

.contact-form {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(23, 107, 135, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(23, 32, 38, .08);
}

.contact-form h3 {
    margin-bottom: 2px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: #31434d;
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--ink);
    font: inherit;
}

.contact-form textarea {
    min-height: 112px;
}

.site-notice,
.site-alert {
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 700;
}

.site-notice {
    border: 1px solid #9bd0bd;
    background: #effaf5;
    color: #176b50;
}

.site-alert {
    border: 1px solid #f2b8a2;
    background: #fff2ec;
    color: #83391f;
}

.site-alert p {
    margin: 0;
    color: inherit;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--gold), #d6ae48);
    color: #151515;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(214, 174, 72, .22);
}

.primary-button:hover,
.primary-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(214, 174, 72, .30);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(125px, .85fr) minmax(180px, 1.1fr) minmax(170px, .8fr) minmax(155px, .9fr) minmax(170px, 1fr);
    align-items: start;
    gap: clamp(16px, 2.4vw, 30px);
    padding: 26px clamp(20px, 5vw, 60px);
    background: #000000;
    color: #ffffff;
    font-size: 13px;
}

.site-footer a,
.site-footer span,
.site-footer strong {
    color: rgba(255, 255, 255, .86);
    line-height: 1.35;
}

.footer-links,
.footer-offices,
.footer-solutions,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    min-width: 0;
}

.footer-links a,
.footer-solutions a {
    width: fit-content;
    text-decoration: none;
}

.footer-links a:hover,
.footer-solutions a:hover {
    color: #ffffff;
}

.footer-brand {
    display: grid;
    justify-items: center;
    align-self: center;
}

.footer-brand img {
    width: min(230px, 100%);
    max-height: 86px;
    object-fit: contain;
}

.footer-contact {
    text-align: left;
}

.footer-contact strong,
.footer-offices strong,
.footer-solutions strong {
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 760px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 8px;
        padding: 8px 14px 10px;
    }

    .site-footer {
        display: grid;
    }

    .brand img {
        width: min(238px, 68vw);
        height: 72px;
    }

    .brand strong {
        max-width: 180px;
        font-size: 13px;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-quick-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
        gap: 7px;
        width: 100%;
    }

    .mobile-quick-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        border: 1px solid rgba(214, 174, 72, .54);
        border-radius: 999px;
        padding: 0 8px;
        background: rgba(255, 255, 255, .055);
        color: rgba(255, 255, 255, .92);
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-quick-nav a:focus,
    .mobile-quick-nav a:hover {
        border-color: var(--gold);
        background: rgba(214, 174, 72, .12);
        color: #ffffff;
    }

    .nav-toggle span {
        grid-column: 1;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

    .nav-toggle strong {
        grid-column: 2;
        grid-row: 1 / 4;
        font-size: 12px;
    }

    .main-nav {
        display: none;
    }

    .site-header.nav-open .main-nav {
        display: none;
    }

    .main-nav a {
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }

    .nav-dropdown {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 40px;
        width: 100%;
        gap: 7px;
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown .nav-trigger {
        min-width: 0;
        justify-content: flex-start;
    }

    .nav-trigger::after {
        display: none;
    }

    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 999px;
        background: rgba(255, 255, 255, .04);
        color: rgba(255, 255, 255, .9);
        cursor: pointer;
    }

    .submenu-toggle::after {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        transition: transform .18s ease;
    }

    .nav-dropdown.is-open .submenu-toggle::after {
        transform: rotate(225deg) translate(-2px, -2px);
    }

    .dropdown-menu {
        position: static;
        grid-column: 1 / -1;
        display: none;
        min-width: 0;
        padding: 5px 0 0 12px;
        border: 0;
        border-left: 1px solid rgba(214, 174, 72, .36);
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: grid;
    }

    .dropdown-menu a {
        white-space: normal;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 12px;
    }

    .hero-ad {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-content .content-columns,
    .page-content .content-media,
    .page-content .content-card-grid,
    .page-content .content-feature-grid {
        grid-template-columns: 1fr;
    }

    .page-content .content-media.image-left .content-image {
        order: 0;
    }

    .page-content .content-cta {
        display: grid;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-brand img {
        width: min(260px, 72vw);
    }

    .footer-contact,
    .footer-brand {
        justify-items: start;
        text-align: left;
    }
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.blog-card {
    position: relative;
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(24, 36, 43, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 174, 72, .72);
    box-shadow: 0 20px 38px rgba(24, 36, 43, .12);
}

.blog-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #111111;
}

.blog-card div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.blog-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.25;
}

.blog-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.6;
    text-align: justify;
}

.blog-card .text-link {
    width: fit-content;
    margin-top: auto;
    border: 1px solid rgba(214, 174, 72, .72);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.blog-card .text-link:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #ffffff;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.home-path-section {
    background: #ffffff;
}

.home-path-section > h2 {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home-path-section > .eyebrow {
    text-align: center;
}

.home-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.home-path-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.home-path-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 38px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #151515;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.home-path-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
}

.home-path-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    text-align: justify;
}

.home-path-card strong {
    display: block;
    margin-bottom: 16px;
    color: var(--ink);
    line-height: 1.45;
}

.home-path-card .text-link {
    margin-top: auto;
}

@media (max-width: 980px) {
    .home-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-path-grid {
        grid-template-columns: 1fr;
    }
}

.plan-start-section {
    background: #ffffff;
}

.plan-start-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.plan-start-summary {
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 26px;
    background: #151515;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(24, 36, 43, .12);
}

.plan-start-summary h2,
.plan-start-summary p,
.plan-start-summary li {
    color: #ffffff;
}

.plan-start-summary strong {
    display: block;
    margin: 18px 0;
    color: var(--gold);
    font-size: 26px;
    line-height: 1.2;
}

.plan-start-summary ul {
    padding-left: 20px;
    line-height: 1.8;
}

.plan-start-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.plan-start-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.plan-start-actions button,
.plan-start-actions .content-button {
    width: auto;
    min-height: 42px;
}

.secondary-payment {
    background: #ffffff;
    color: #151515;
}



.payment-methods {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.payment-methods h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.payment-methods article {
    display: grid;
    gap: 5px;
    border: 1px solid rgba(214, 174, 72, .34);
    border-radius: 8px;
    padding: 13px;
    background: rgba(255, 255, 255, .06);
}

.payment-methods strong {
    margin: 0;
    color: var(--gold);
    font-size: 14px;
    line-height: 1.35;
}

.payment-methods span {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
}

.payment-methods a {
    width: fit-content;
    margin-top: 5px;
    border: 1px solid rgba(214, 174, 72, .72);
    border-radius: 999px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.payment-methods a:hover {
    background: var(--gold);
    color: #151515;
}

.form-hint {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.instagram-section {
    background: #ffffff;
}

.instagram-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.instagram-heading h2 {
    margin: 0;
}

.instagram-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.instagram-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid rgba(214, 174, 72, .28);
    border-radius: 8px;
    background: #101010;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(24, 36, 43, .10);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform .25s ease, opacity .25s ease;
}

.instagram-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px 14px 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
    opacity: .82;
    transform: scale(1.03);
}

.instagram-empty {
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 18px;
    background: #f8fafb;
}

.instagram-empty strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
}

.instagram-empty p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 860px) {
    .plan-start-layout,
    .plan-start-fields {
        grid-template-columns: 1fr;
    }

    .instagram-heading {
        align-items: start;
        flex-direction: column;
    }

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

@media (max-width: 560px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .instagram-card,
    .instagram-card img {
        min-height: 240px;
    }
}


.ai-agent-section {
    border-bottom: 3px solid rgba(214, 174, 72, .45);
    padding-bottom: 0px;
}
.ai-agent-layout { display: grid; grid-template-columns: minmax(260px, .82fr) minmax(360px, 1.18fr); gap: clamp(18px, 4vw, 42px); align-items: center; border: 1px solid rgba(214, 174, 72, .28); border-radius: 9px; padding: clamp(18px, 4vw, 34px); background: linear-gradient(135deg, rgba(26, 26, 26, .96), rgba(15, 59, 95, .92)), #1a1a1a; box-shadow: 0 22px 48px rgba(0, 0, 0, .16); }
.ai-agent-copy h2, .ai-agent-copy p, .ai-agent-copy strong { color: #ffffff; }
.ai-agent-copy h2 { margin: 8px 0 12px; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }
.ai-agent-copy p { max-width: 560px; margin: 0 0 16px; color: rgba(255, 255, 255, .78); line-height: 1.7; text-align: justify; }
.ai-agent-copy strong { display: block; border-left: 3px solid var(--gold); padding-left: 12px; color: #ffe6a3; line-height: 1.5; }
.ai-chat-card { overflow: hidden; border: 1px solid rgba(214, 174, 72, .38); border-radius: 9px; background: rgba(255, 255, 255, .98); box-shadow: 0 24px 55px rgba(0, 0, 0, .22); }
.ai-chat-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 0 18px; background: linear-gradient(135deg, #111111, var(--brand)); color: #ffffff; border-bottom: 1px solid rgba(214, 174, 72, .48); }
.ai-chat-header strong, .ai-chat-header span { display: block; }
.ai-chat-header strong { color: #ffffff; font-size: 21px; }
.ai-chat-header span { color: rgba(255, 255, 255, .75); font-size: 13px; }
.ai-chat-header a { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; border: 1px solid rgba(214, 174, 72, .7); border-radius: 999px; padding: 0 12px; background: rgba(214, 174, 72, .12); color: #fff4d0; font-size: 12px; font-weight: 800; text-decoration: none; }
.ai-chat-messages { display: grid; align-content: start; gap: 10px; height: 340px; overflow-y: auto; padding: 16px; background: linear-gradient(180deg, #f8fbfc, #ffffff 54%, #f8fbfc); }
.ai-chat-card .message { width: fit-content; max-width: min(88%, 560px); border-radius: 8px; padding: 11px 13px; color: var(--ink); font-size: 14px; line-height: 1.5; }
.ai-chat-card .message.assistant { border: 1px solid rgba(15, 59, 95, .11); background: #ffffff; box-shadow: 0 8px 18px rgba(24, 36, 43, .05); }
.ai-chat-card .message.user { justify-self: end; background: var(--brand); color: #ffffff; }
.ai-chat-card .typing { display: inline-flex; align-items: center; gap: 4px; min-width: 54px; }
.ai-chat-card .typing span { width: 6px; height: 6px; border-radius: 999px; background: var(--muted); opacity: .4; animation: typing-pulse 1s infinite ease-in-out; }
.ai-chat-card .typing span:nth-child(2) { animation-delay: .15s; }
.ai-chat-card .typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing-pulse { 0%, 100% { opacity: .3; transform: translateY(0); } 50% { opacity: .9; transform: translateY(-2px); } }
.ai-chat-routes { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 16px 0; }
.ai-chat-routes button, .ai-chat-form button, .ai-save-contact-button { min-height: 40px; border: 1px solid var(--brand); border-radius: 999px; padding: 0 15px; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; }
.ai-chat-routes button { background: #ffffff; color: var(--brand); }
.ai-chat-routes button:first-child, .ai-chat-form button, .ai-save-contact-button { border-color: var(--gold); background: var(--gold); color: #171717; }
.ai-chat-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 12px 16px 8px; }
.ai-chat-form input, .ai-lead-grid input { width: 100%; min-height: 42px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; background: #ffffff; color: var(--ink); font: inherit; }
.ai-lead-details { margin: 8px 16px 0; border: 1px solid rgba(15, 59, 95, .12); border-radius: 8px; background: #fbfdfe; }
.ai-lead-details summary { display: flex; align-items: center; min-height: 44px; padding: 0 12px; color: var(--brand); font-size: 13px; font-weight: 800; cursor: pointer; }
.ai-lead-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0 12px 12px; }
.ai-lead-grid label { display: grid; gap: 5px; color: var(--ink); font-size: 12px; font-weight: 800; }
.ai-save-contact-button { width: calc(100% - 24px); margin: 0 12px 12px; }
.ai-chat-status { margin: 0; padding: 0 16px 16px; color: var(--muted); font-size: 12px; line-height: 1.4; }
@media (max-width: 900px) { .ai-agent-layout, .ai-lead-grid { grid-template-columns: 1fr; } .ai-agent-copy { order: 2; } .ai-chat-card { order: 1; } }
@media (max-width: 560px) { .ai-agent-layout { padding: 14px; } .ai-chat-messages { height: min(48vh, 360px); min-height: 280px; } .ai-chat-routes button { flex: 1 1 calc(50% - 8px); padding: 0 10px; } .ai-chat-form { grid-template-columns: 1fr; } }


.payment-page-hero h1 {
    font-size: clamp(28px, 3.8vw, 34px);
    line-height: 1.12;
}

.plan-start-summary .eyebrow {
    color: var(--gold);
}

.mobile-focus-ad {
    display: none;
}

@media (max-width: 760px) {
    .mobile-ai-focus .hero,
    .mobile-ai-focus .home-module-group:not(.ai-agent-section),
    .mobile-ai-focus #galeria,
    .mobile-ai-focus #contacto {
        display: none;
    }

    .mobile-ai-focus .home-modules-section {
        padding: 14px 14px 12px;
    }

    .mobile-ai-focus .home-modules-stack {
        gap: 0;
    }

    .mobile-ai-focus .ai-agent-section {
        display: block;
        border-top: 0;
        padding-top: 0;
    }

    .mobile-ai-focus .assistant-shell {
        border-radius: 8px;
        padding: 12px;
        gap: 12px;
    }

    .mobile-ai-focus .assistant-intro {
        display: grid;
        gap: 12px;
    }

    .mobile-ai-focus .chat-card {
        width: 100%;
        max-width: none;
    }

    .mobile-ai-focus .mobile-focus-ad {
        display: block;
        padding: 0 14px 14px;
    }

    .mobile-ai-focus .mobile-focus-ad .hero-ad {
        max-width: none;
        width: 100%;
        margin: 0;
    }

    .mobile-ai-focus .mobile-focus-ad .hero-ad img {
        width: 100%;
        height: auto;
        max-height: 62vh;
        object-fit: contain;
    }

    .mobile-ai-focus .site-footer {
        margin-top: 0;
    }
}

.ai-agent-section .assistant-shell {
    width: min(1120px, 100%);
    margin: 0px auto -21px auto;
}

.ai-agent-section .home-module-group-label {
    display: none;
}

.work-hero {
    display: grid;
    align-items: center;
    min-height: 360px;
    padding: 56px clamp(20px, 6vw, 72px);
    background: linear-gradient(135deg, rgba(15, 59, 95, .94), rgba(26, 26, 26, .94)), #1a1a1a;
    color: #ffffff;
    border-bottom: 3px solid rgba(214, 174, 72, .62);
}

.work-hero > div {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.work-hero h1 {
    max-width: 760px;
    margin: 10px 0 18px;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1;
}

.work-hero p {
    max-width: 920px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.work-section {
    background: #ffffff;
}

.work-notice {
    width: min(1120px, 100%);
    margin: 0 auto 18px;
}

.work-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 22px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.work-position-list,
.work-position-card,
.work-form,
.work-docs-grid article {
    border: 1px solid rgba(214, 174, 72, .32);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(24, 36, 43, .08);
}

.work-position-list {
    align-self: start;
    padding: 18px;
}

.work-position-list h2,
.work-position-card h2,
.work-form h2,
.work-docs-grid h2 {
    margin: 0 0 10px;
    color: var(--ink);
}

.work-position-list p,
.work-form p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.55;
}

.work-position-list nav {
    display: grid;
    gap: 8px;
    max-height: 680px;
    overflow: auto;
    padding-right: 4px;
}

.work-position-list a {
    display: grid;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 12px;
    color: var(--ink);
    background: #f8fafb;
    text-decoration: none;
}

.work-position-list a:hover,
.work-position-list a:focus-visible,
.work-position-list a.is-active {
    border-color: var(--gold);
    background: #fffaf0;
}

.work-position-list span {
    font-weight: 850;
    line-height: 1.25;
}

.work-position-list small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.work-main {
    display: grid;
    gap: 18px;
}

.work-position-card,
.work-form {
    padding: clamp(18px, 3vw, 30px);
}

.work-position-card .content-kicker,
.work-hero .content-kicker,
.work-docs-grid .content-kicker {
    color: var(--gold);
}

.work-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 850;
}

.work-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.work-status.is-open {
    background: #e7f7ec;
    color: #16813a;
}

.work-status.is-closed {
    background: #fff3d6;
    color: #8a5a00;
}

.work-profile {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.work-profile dt {
    color: var(--brand);
    font-weight: 900;
}

.work-profile dd {
    margin: 0;
    color: var(--ink);
    line-height: 1.7;
    text-align: justify;
}

.work-closed-text {
    margin: 18px 0 0;
    border-left: 3px solid var(--gold);
    padding-left: 12px;
    color: var(--muted);
    font-weight: 750;
}

.work-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.work-checks {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}

.work-checks label,
.work-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    line-height: 1.5;
}

.work-checks input,
.work-consent input {
    width: auto;
    min-height: 0;
    margin-top: 4px;
}

.work-docs-section {
    background: #f8fafb;
}

.work-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(1120px, 100%);
    margin: 0 auto 18px;
}

.work-docs-grid article {
    padding: clamp(18px, 3vw, 28px);
}

.work-docs-grid li {
    margin-bottom: 10px;
    color: var(--ink);
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 900px) {
    .work-layout,
    .work-docs-grid {
        grid-template-columns: 1fr;
    }

    .work-position-list nav {
        max-height: 360px;
    }
}

@media (max-width: 560px) {
    .work-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header .main-nav,
    .site-header.nav-open .main-nav,
    .site-header .nav-toggle,
    .site-header .submenu-toggle {
        display: none !important;
    }
}
