* {
    box-sizing: border-box;
}

:root {
    --green: #299C42;
    --green-soft: #E7F8EC;
    --green-bright: #7ED957;
    --blue: #0E3A5D;
    --blue-2: #126A95;
    --sky: #D7F2FF;
    --ink: #102D43;
    --muted: #5C7484;
    --line: rgba(14, 58, 93, .12);
    --white: #fff;
    --shadow: 0 20px 60px rgba(14, 58, 93, .13);
    --shadow-soft: 0 14px 34px rgba(14, 58, 93, .09);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(126, 217, 87, .12), transparent 34rem),
        linear-gradient(180deg, #FBFEFF 0%, #F7FBF8 100%);
    font-family: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    text-rendering: geometricPrecision;
}

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

img {
    height: auto;
}

a {
    color: var(--color-primary, var(--blue));
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.wrap {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -90px;
    z-index: 50;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    top: 16px;
}

.icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
}

.service-svg {
    width: 30px;
    height: 30px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(14, 58, 93, .09);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    min-width: 0;
}

.brand__logo {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(41, 156, 66, .22);
    background: var(--green);
}

.brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand__text {
    display: grid;
    line-height: 1.05;
}

.brand__text strong {
    color: var(--blue);
    font-size: 21px;
    letter-spacing: -.03em;
}

.brand__text small {
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 800;
}

.main-nav a {
    padding: 11px 12px;
    border-radius: 999px;
    color: #24485F;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover {
    color: var(--blue);
    background: rgba(41, 156, 66, .1);
    transform: translateY(-1px);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--blue);
    width: 46px;
    height: 46px;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(14, 58, 93, .06);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: currentColor;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 21px;
    border: 0;
    border-radius: 999px;
    background: var(--color-button, var(--blue));
    color: #fff;
    font: inherit;
    font-weight: 900;
    line-height: 1.1;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 14px 28px rgba(14, 58, 93, .18);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
    color: #fff;
    filter: brightness(1.02);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(14, 58, 93, .22);
}

.btn--small {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 14px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--blue), #1784B8);
}

.btn--whatsapp {
    background: linear-gradient(135deg, var(--color-whatsapp, #25D366), #119C4A);
}

.btn--glass {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    box-shadow: none;
}

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

.btn--light:hover {
    color: var(--blue);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 75% 16%, rgba(126, 217, 87, .36), transparent 24rem),
        linear-gradient(135deg, #092C48 0%, #0E3A5D 44%, #0F765D 100%);
}

.hero--home {
    min-height: 690px;
    display: grid;
    align-items: center;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .82fr);
    gap: 52px;
    align-items: center;
    padding: 88px 0 94px;
}

.hero__copy {
    max-width: 760px;
}

.hero__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .78;
    pointer-events: none;
}

.hero__glow--one {
    width: 380px;
    height: 380px;
    left: -130px;
    top: -120px;
    background: rgba(126, 217, 87, .28);
}

.hero__glow--two {
    width: 520px;
    height: 520px;
    right: -190px;
    bottom: -190px;
    background: rgba(207, 233, 255, .2);
}

.pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: var(--blue);
    box-shadow: 0 12px 30px rgba(14, 58, 93, .12);
}

.pill span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(41, 156, 66, .14);
}

.hero .pill {
    background: rgba(255, 255, 255, .12);
    color: #DDF8E7;
    border: 1px solid rgba(255, 255, 255, .2);
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    color: var(--blue);
    line-height: 1.08;
    letter-spacing: -.045em;
}

h1 {
    max-width: 850px;
    color: #fff;
    font-size: clamp(42px, 6.3vw, 76px);
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
}

h3 {
    font-size: 23px;
}

p {
    margin: 0 0 16px;
}

.hero__lead {
    max-width: 740px;
    margin: 0 0 30px;
    font-size: clamp(18px, 2vw, 23px);
    color: rgba(240, 250, 255, .92);
}

.hero__actions,
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero__actions.compact {
    margin-top: 25px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.hero__proof .icon {
    color: var(--green-bright);
}

.hero__visual {
    position: relative;
    min-height: 460px;
}

.hero__image {
    position: relative;
    width: min(100%, 610px);
    margin-inline: auto;
    border-radius: 42px;
    filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .2));
}

.hero-mini {
    position: absolute;
    display: grid;
    gap: 2px;
    min-width: 152px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    color: var(--blue);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-mini strong {
    font-size: 20px;
    line-height: 1;
}

.hero-mini span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.hero-mini--top {
    top: 28px;
    right: -18px;
}

.hero-mini--bottom {
    left: -12px;
    bottom: 46px;
}

.quick-strip {
    position: relative;
    z-index: 4;
    margin-top: -42px;
}

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

.quick-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas: "icon title" "icon text";
    gap: 2px 12px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(14, 58, 93, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    transition: transform .2s ease, box-shadow .2s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.quick-card > span {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: var(--green-soft);
    color: var(--green);
}

.quick-card strong {
    grid-area: title;
    color: var(--blue);
    line-height: 1.2;
}

.quick-card small {
    grid-area: text;
    color: var(--muted);
    font-weight: 750;
    line-height: 1.2;
}

.quick-card--value {
    min-height: 116px;
    text-decoration: none;
}

.quick-card--value small {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.section {
    padding: 86px 0;
}

.section--soft {
    background:
        radial-gradient(circle at 88% 16%, rgba(41, 156, 66, .13), transparent 20rem),
        linear-gradient(180deg, #F4FBF7, #EFF8FC);
}

.section__head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section__head--center {
    margin-inline: auto;
    text-align: center;
}

.section__head p,
.section-lead {
    color: var(--muted);
    font-size: 18px;
}

.section__link {
    margin: 30px 0 0;
    font-weight: 900;
}

.section__link--center {
    text-align: center;
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-weight: 950;
}

.text-link:hover,
.card-link:hover {
    color: var(--blue);
}

.service-grid,
.zone-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card,
.zone-card,
.gallery-empty,
.gallery-card,
.card-surface,
.side-cta,
.contact-form,
.contact-info,
.service-row {
    border: 1px solid rgba(14, 58, 93, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow-soft);
}

.service-card,
.zone-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card::before,
.zone-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), #7ED957, #1784B8);
}

.service-card:hover,
.zone-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(41, 156, 66, .28);
}

.service-card__icon,
.service-row__icon,
.zone-card__icon,
.side-cta__icon,
.service-hero-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--green-soft), var(--sky));
    color: var(--green);
    box-shadow: inset 0 0 0 1px rgba(41, 156, 66, .1);
}

.service-card h3 a,
.service-row h2 a {
    color: var(--blue);
}

.service-card p,
.zone-card p,
.gallery-empty p {
    color: var(--muted);
    margin-bottom: 20px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.split--visual {
    grid-template-columns: minmax(330px, .9fr) minmax(0, 1fr);
}

.image-panel {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.image-panel img {
    width: 100%;
}

.checks {
    display: grid;
    gap: 13px;
    margin-top: 26px;
}

.check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(14, 58, 93, .08);
    border-radius: 18px;
    background: #fff;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(14, 58, 93, .06);
}

.check span {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
}

.zone-card--large h2 {
    font-size: 28px;
}

.gallery-card {
    margin: 0;
    overflow: hidden;
}

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

.gallery-card figcaption {
    display: grid;
    gap: 4px;
    padding: 18px;
}

.gallery-card span {
    color: var(--muted);
    font-size: 14px;
}

.gallery-empty {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 26px;
    padding: 24px;
}

.gallery-empty img {
    width: 100%;
    border-radius: 24px;
    background: var(--green-soft);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(126, 217, 87, .32), transparent 22rem),
        linear-gradient(135deg, #0A2A43, #0E3A5D 48%, #0F765D);
    color: #fff;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: auto -8% -140px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.cta-band h2,
.cta-band .eyebrow {
    color: #fff;
}

.cta-band p {
    max-width: 720px;
    margin: 0;
    color: rgba(237, 249, 255, .9);
    font-size: 18px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 76px;
    background:
        radial-gradient(circle at 82% 16%, rgba(126, 217, 87, .28), transparent 20rem),
        linear-gradient(135deg, #092C48, #0E3A5D 52%, #116B67);
    color: #fff;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.page-hero h1,
.page-hero h2 {
    color: #fff;
}

.page-hero p:not(.pill) {
    max-width: 820px;
    margin: 0;
    color: rgba(238, 248, 255, .92);
    font-size: 19px;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 40px;
    align-items: center;
}

.service-hero-icon {
    width: 150px;
    height: 150px;
    margin: 0;
    border-radius: 42px;
    color: #fff;
    background: linear-gradient(135deg, rgba(126, 217, 87, .9), rgba(23, 132, 184, .75));
    box-shadow: 0 24px 55px rgba(0, 0, 0, .22);
}

.service-hero-icon .service-svg {
    width: 82px;
    height: 82px;
}

.service-list {
    display: grid;
    gap: 18px;
}

.service-row {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
}

.service-row__icon {
    margin: 0;
    width: 86px;
    height: 86px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 36px;
}

.rich-text {
    font-size: 18px;
}

.rich-text.card-surface {
    padding: 34px;
}

.rich-text h2 {
    margin-top: 36px;
    font-size: 30px;
}

.content-image {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 24px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.side-cta {
    position: sticky;
    top: 104px;
    align-self: start;
    padding: 28px;
}

.side-cta .btn {
    width: 100%;
    margin: 8px 0 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 28px;
}

.contact-form,
.contact-info {
    padding: 30px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

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

label {
    display: grid;
    gap: 7px;
    color: #27435a;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(14, 58, 93, .16);
    border-radius: 16px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(41, 156, 66, .12);
}

textarea {
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 750;
}

.checkbox input {
    width: 20px;
    min-height: 20px;
    margin-top: 3px;
}

.hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.notice {
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 850;
}

.notice.ok {
    background: #dcf8e8;
    color: #146b3a;
}

.notice.error {
    background: #fde1df;
    color: #8d251f;
}

.contact-info__badge {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--green), #25D366);
    color: #fff;
}

.contact-info__badge .icon {
    width: 34px;
    height: 34px;
}

.contact-info a,
.contact-info span,
.site-footer a,
.site-footer span {
    display: block;
}

.contact-info p {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(14, 58, 93, .08);
}

.map-box {
    display: grid;
    place-items: center;
    min-height: 190px;
    margin-top: 20px;
    padding: 18px;
    border: 1px dashed rgba(14, 58, 93, .25);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--green-soft), #F3FBFF);
    text-align: center;
    font-weight: 900;
}

.contact-map-panel {
    margin-top: 58px;
}

.map-embed-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(14, 58, 93, .1);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.map-embed-iframe {
    display: block;
    width: 100%;
    height: 370px;
    border: 0;
}

.site-footer {
    padding: 56px 0 104px;
    background: #071F32;
    color: #D8EAF7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 32px;
}

.site-footer h2 {
    color: #fff;
    font-size: 18px;
    letter-spacing: -.02em;
}

.site-footer a {
    margin: 8px 0;
    color: #D8EAF7;
    font-weight: 750;
}

.site-footer a:hover {
    color: #fff;
}

.footer-logo {
    width: 170px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 18px;
}

.floating-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 58px;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-whatsapp, #25D366), #119C4A);
    color: #fff;
    box-shadow: 0 18px 42px rgba(17, 156, 74, .32);
    font-weight: 950;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-wa .icon {
    width: 25px;
    height: 25px;
}

.floating-wa:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(17, 156, 74, .4);
}

@media (max-width: 1040px) {
    .header-cta .header-phone {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero__visual {
        max-width: 620px;
        margin-inline: auto;
        min-height: auto;
    }

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

    .split,
    .split--visual,
    .content-layout,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .image-panel {
        max-width: 620px;
        margin-inline: auto;
    }

    .side-cta {
        position: static;
    }
}

@media (max-width: 920px) {
    .header__inner {
        min-height: 72px;
    }

    .brand__logo {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .brand__text strong {
        font-size: 19px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border: 1px solid rgba(14, 58, 93, .1);
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 16px;
        border-radius: 15px;
    }

    .header-cta {
        display: none;
    }

    .hero--home {
        min-height: auto;
    }

    .hero__grid {
        padding: 70px 0 90px;
    }

    h1 {
        font-size: 46px;
    }

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

    .cta-band__inner,
    .page-hero__grid {
        grid-template-columns: 1fr;
    }

    .service-hero-icon {
        display: none;
    }
}

@media (max-width: 640px) {
    .wrap,
    .narrow {
        width: min(100% - 26px, 1120px);
    }

    .brand__text {
        display: none;
    }

    .hero__grid {
        padding: 58px 0 78px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 31px;
    }

    .hero__actions .btn,
    .cta-band__actions .btn,
    .contact-form .btn {
        width: 100%;
    }

    .hero__proof {
        display: grid;
    }

    .hero-mini {
        display: none;
    }

    .quick-strip {
        margin-top: -30px;
    }

    .quick-strip__grid,
    .service-grid,
    .zone-grid,
    .gallery-grid,
    .form-grid,
    .service-row,
    .gallery-empty {
        grid-template-columns: 1fr;
    }

    .quick-card {
        min-height: 84px;
    }

    .section {
        padding: 62px 0;
    }

    .page-hero {
        padding: 66px 0 54px;
    }

    .service-row__icon {
        width: 66px;
        height: 66px;
    }

    .rich-text.card-surface,
    .contact-form,
    .contact-info,
    .side-cta {
        padding: 22px;
    }

    .floating-wa {
        left: 13px;
        right: 13px;
        bottom: 13px;
    }
}


/* Buenclima visual v2 - cabecera limpia, fotos reales y zonas más cercanas */
.header__inner {
    min-height: 78px;
}

.brand {
    gap: 14px;
    padding: 6px 0;
}

.brand__logo {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(41, 156, 66, .20);
}

.brand__text strong {
    font-size: 24px;
    letter-spacing: -.04em;
}

.brand__text small {
    font-size: 12px;
    letter-spacing: .22em;
}

.main-nav {
    margin-left: auto;
}

.hero {
    background:
        linear-gradient(90deg, rgba(9, 44, 72, .96) 0%, rgba(14, 58, 93, .90) 44%, rgba(15, 118, 93, .78) 100%),
        var(--hero-image) center right / cover no-repeat;
}

.hero__image {
    width: min(100%, 640px);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 8px solid rgba(255,255,255,.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 24px -10px -24px 54px;
    border-radius: 46px;
    background: linear-gradient(135deg, rgba(126,217,87,.30), rgba(23,132,184,.20));
    z-index: -1;
}

.service-card {
    padding-top: 22px;
}

.service-card__media {
    display: block;
    margin: -2px -2px 20px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--green-soft);
}

.service-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.service-card:hover .service-card__media img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.service-card .service-card__icon {
    position: relative;
    margin-top: -52px;
    background: linear-gradient(135deg, #fff, var(--green-soft));
    border: 5px solid #fff;
    box-shadow: 0 12px 24px rgba(14,58,93,.12);
}

.zone-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 34px;
}

.zone-intro .section__head {
    margin-bottom: 0;
    padding: 34px;
    border: 1px solid rgba(14, 58, 93, .10);
    border-radius: 30px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

.zone-intro .section__head p:last-child {
    font-size: 18px;
    color: var(--muted);
}

.zone-intro__image,
.image-panel--lift {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.zone-intro__image img,
.image-panel--lift img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.section--tight-top {
    padding-top: 0;
}

.section--zones-detail {
    padding-bottom: 48px;
}

.zone-card {
    min-height: 258px;
}

.floating-wa {
    background: linear-gradient(135deg, #25D366 0%, #17B558 52%, #0B8F43 100%);
    border: 2px solid rgba(255,255,255,.55);
}

.floating-wa::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    border: 1px solid rgba(37,211,102,.25);
    pointer-events: none;
}

@media (max-width: 1040px) {
    .zone-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .brand__logo {
        width: 54px;
        height: 54px;
    }
    .brand__text strong {
        font-size: 20px;
    }
    .main-nav {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .brand__text {
        display: grid;
    }
    .brand__text strong {
        font-size: 18px;
    }
    .brand__text small {
        font-size: 10px;
        letter-spacing: .18em;
    }
    .brand__logo {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
    .zone-intro .section__head {
        padding: 24px;
    }
    .hero__image {
        border-width: 5px;
        border-radius: 30px;
    }
}

/* V3 visual tweaks: less repeated photography in service cards */
.service-card--compact {
    padding-top: 28px;
}

.service-card--compact .service-card__icon {
    margin-top: 0;
    border: 0;
    background: linear-gradient(135deg, var(--green-soft), rgba(23,132,184,.14));
    box-shadow: inset 0 0 0 1px rgba(41,156,66,.12), 0 10px 24px rgba(14,58,93,.08);
}

.service-card--compact h3 {
    margin-top: 2px;
}

/* V4 mobile cleanup: hero más limpio y WhatsApp flotante circular */
@media (max-width: 640px) {
    .quick-strip {
        display: none !important;
    }

    .hero__actions .btn--glass,
    .hero__proof {
        display: none !important;
    }

    .hero--home {
        min-height: auto;
    }

    .hero__grid {
        padding-top: 28px;
        padding-bottom: 34px;
        gap: 22px;
    }

    .hero__copy {
        max-width: 100%;
    }

    .hero__lead {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .hero__actions {
        gap: 10px;
    }

    .hero__actions .btn {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .hero__visual {
        margin-top: 4px;
    }

    .hero__image {
        max-height: 330px;
        object-fit: cover;
        object-position: center;
    }

    .floating-wa {
        left: auto !important;
        right: 16px !important;
        bottom: 16px !important;
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        border-radius: 50%;
        gap: 0;
        box-shadow: 0 14px 32px rgba(17, 156, 74, .38);
    }

    .floating-wa span {
        display: none !important;
    }

    .floating-wa .icon {
        width: 29px;
        height: 29px;
    }

    body {
        padding-bottom: 0;
    }
}


/* V5: tarjetas editables y mapa Google responsive */
@media (max-width: 760px) {
    .quick-card--value {
        min-height: 104px;
    }

    .quick-card--value small {
        font-size: 12px;
    }

    .contact-map-panel {
        margin-top: 38px;
    }

    .map-embed-card {
        border-radius: 22px;
    }

    .map-embed-iframe {
        height: 285px;
    }
}

/* Fix contacto mapa dentro de tarjeta - 20260520 */
.contact-info__map {
    margin-top: 22px;
    border: 1px solid rgba(35, 160, 85, .24);
    border-radius: 26px;
    overflow: hidden;
    background: #eefaf5;
    min-height: 280px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}

.contact-info__map .map-embed-iframe {
    display: block;
    width: 100%;
    height: 320px;
    min-height: 280px;
    border: 0;
}

.contact-info__map-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.contact-map-panel {
    display: none !important;
}

@media (max-width: 760px) {
    .contact-info__map .map-embed-iframe {
        height: 260px;
        min-height: 240px;
    }
}

/* BUENCLIMA_LEGALES_FORMATO_V1_20260710 */
.bc-legal-block {
  margin: 0 0 30px;
}

.bc-legal-block:last-child {
  margin-bottom: 0;
}

.bc-legal-block h2 {
  margin: 0 0 14px;
  color: #0f344d;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
  font-weight: 900;
}

.bc-legal-block p {
  margin: 0 0 13px;
  color: #12344d;
  line-height: 1.75;
}

.bc-legal-block ul {
  margin: 10px 0 0 22px;
  padding: 0;
  color: #12344d;
  line-height: 1.7;
}

.bc-legal-block li {
  margin-bottom: 8px;
}

.bc-legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 16px 0;
  border-radius: 16px;
  border: 1px solid rgba(15, 52, 77, 0.14);
}

.bc-legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.bc-legal-table th,
.bc-legal-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(15, 52, 77, 0.10);
  text-align: left;
  vertical-align: top;
  color: #12344d;
  line-height: 1.5;
}

.bc-legal-table th {
  width: 230px;
  background: #f3f8fb;
  color: #0f344d;
  font-weight: 900;
}

.bc-legal-table tr:last-child th,
.bc-legal-table tr:last-child td {
  border-bottom: 0;
}

.bc-legal-note {
  padding: 14px 16px;
  background: #f3f8fb;
  border: 1px solid rgba(15, 52, 77, 0.12);
  border-radius: 16px;
}

.bc-legal-updated {
  margin-top: 24px;
  font-weight: 800;
  color: #0f344d;
}

@media (max-width: 720px) {
  .bc-legal-block {
    margin-bottom: 24px;
  }

  .bc-legal-table {
    min-width: 560px;
  }

  .bc-legal-table th,
  .bc-legal-table td {
    padding: 11px 12px;
  }
}

/* BUENCLIMA_COOKIE_TAB_LOWER_V1_20260710 */
#bc-cookie-floating-tab {
  bottom: 22px !important;
}

#bc-cookie-banner.bc-visible ~ #bc-cookie-floating-tab {
  display: none !important;
}

@media (max-width: 720px) {
  #bc-cookie-floating-tab {
    bottom: 18px !important;
  }
}

/* BUENCLIMA_FORM_BUTTON_COMPACT_V1_20260710 */
.contact-form button[type="submit"],
.contact-form .btn,
form button[type="submit"] {
  width: auto !important;
  min-width: 220px !important;
  max-width: 320px !important;
  min-height: 54px !important;
  padding: 15px 34px !important;
  margin: 26px auto 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
}

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

.contact-form button[type="submit"] {
  text-align: center !important;
}

@media (max-width: 720px) {
  .contact-form button[type="submit"],
  .contact-form .btn,
  form button[type="submit"] {
    width: 100% !important;
    max-width: 280px !important;
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 14px 26px !important;
  }
}

/* BUENCLIMA_SOBRE_NOSOTROS_PRO_V1_20260710 */
.bc-about-enhanced {
  display: grid;
  gap: 24px;
}

.bc-about-intro {
  display: grid;
  gap: 15px;
}

.bc-about-intro p {
  margin: 0;
  color: #12344d;
  line-height: 1.8;
  font-size: 1.04rem;
}

.bc-about-highlight {
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(17, 92, 132, 0.08), rgba(131, 211, 79, 0.12));
  border: 1px solid rgba(17, 92, 132, 0.12);
}

.bc-about-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: #0f344d;
  font-size: 1.12rem;
}

.bc-about-highlight p {
  margin: 0;
  color: #12344d;
  line-height: 1.7;
}

.bc-about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bc-about-point {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 52, 77, 0.12);
  box-shadow: 0 14px 35px rgba(8, 38, 58, 0.07);
}

.bc-about-point span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eaf6fb;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.bc-about-point h2,
.bc-about-point h3 {
  margin: 0 0 8px;
  color: #0f344d;
  font-size: 1.05rem;
  line-height: 1.25;
}

.bc-about-point p {
  margin: 0;
  color: #425466;
  line-height: 1.6;
  font-size: 0.96rem;
}

.bc-about-close {
  padding: 22px;
  border-radius: 20px;
  background: #f7fbfd;
  border: 1px solid rgba(15, 52, 77, 0.10);
}

.bc-about-close p {
  margin: 0;
  color: #12344d;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .bc-about-points {
    grid-template-columns: 1fr;
  }

  .bc-about-point,
  .bc-about-highlight,
  .bc-about-close {
    padding: 18px;
  }
}

/* BUENCLIMA_FORM_BUTTON_COMPACT_V2_20260710 */
.contact-form button[type="submit"],
.contact-form .btn.btn--primary[type="submit"],
form button[type="submit"].btn--primary {
  width: 190px !important;
  min-width: 0 !important;
  max-width: 190px !important;
  min-height: 46px !important;
  height: 46px !important;
  padding: 0 22px !important;
  margin: 12px auto 0 !important;
  border-radius: 999px !important;
  font-size: 0.94rem !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.contact-form .checkbox {
  margin-bottom: 0 !important;
  align-items: center !important;
}

.contact-form .checkbox a {
  display: inline !important;
  margin: 0 !important;
}

@media (max-width: 720px) {
  .contact-form button[type="submit"],
  .contact-form .btn.btn--primary[type="submit"],
  form button[type="submit"].btn--primary {
    width: 180px !important;
    max-width: 180px !important;
    min-height: 44px !important;
    height: 44px !important;
    padding: 0 20px !important;
    margin-top: 10px !important;
    font-size: 0.92rem !important;
  }
}
