/* assets/css/style.css - sistema visual principal */
:root {
    --primary: #001f3f;
    --primary-soft: #06345f;
    --accent: #ff6200;
    --accent-dark: #e05600;
    --ink: #152033;
    --muted: #667085;
    --surface: #ffffff;
    --line: #e7edf4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: #f6f8fb;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img, video, iframe {
    max-width: 100%;
}

h1, h2, h3, h4 {
    line-height: 1.05;
    letter-spacing: 0;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 48px;
    padding: .85rem 1.25rem;
    border-radius: 12px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px rgb(255 98 0 / .22);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 30px rgb(0 31 63 / .16);
}

.btn-secondary:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--primary);
    border: 1px solid var(--line);
    background: #fff;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.professional-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgb(15 23 42 / .06);
}

.project-card {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgb(15 23 42 / .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgb(255 98 0 / .28);
    box-shadow: 0 26px 60px rgb(15 23 42 / .12);
}

.project-card img {
    transition: transform .55s ease;
}

.project-card:hover img {
    transform: scale(1.06);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--accent);
    background: rgb(255 98 0 / .1);
}

.form-control {
    width: 100%;
    border: 1px solid #d9e1ea;
    border-radius: 12px;
    background: #fff;
    padding: .95rem 1rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgb(255 98 0 / .12);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 999px;
    padding: .4rem .75rem;
    font-size: .75rem;
    font-weight: 800;
    line-height: 1;
}

.map-frame {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / .7);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-swiper .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 24px rgb(15 23 42 / .16);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 900;
}

@media (max-width: 768px) {
    .site-shell {
        width: min(100% - 24px, 1180px);
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }

    .project-card:hover {
        transform: none;
    }

    .whatsapp-float-label {
        display: none;
    }






}

/* Tailwind fallback: mantiene el sitio maquetado cuando el CDN externo no carga. */
.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.sticky{position:sticky}.inset-0{inset:0}.inset-x-0{left:0;right:0}.top-0{top:0}.top-20{top:5rem}.bottom-0{bottom:0}.bottom-4{bottom:1rem}.bottom-5{bottom:1.25rem}.left-4{left:1rem}.left-5{left:1.25rem}.right-5{right:1.25rem}.z-10{z-index:10}.z-40{z-index:40}.z-50{z-index:50}.z-\[9999\]{z-index:9999}.block{display:block}.inline-flex{display:inline-flex}.flex{display:flex}.grid{display:grid}.hidden{display:none!important}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.min-w-max{min-width:max-content}.w-auto{width:auto}.w-full{width:100%}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-20{height:5rem}.h-24{height:6rem}.h-28{height:7rem}.h-36{height:9rem}.h-full{height:100%}.min-h-\[520px\]{min-height:520px}.max-w-md{max-width:28rem}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-\[14ch\]{max-width:14ch}.mx-auto{margin-left:auto;margin-right:auto}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-7{margin-top:1.75rem}.mt-8{margin-top:2rem}.mt-12{margin-top:3rem}.mt-20{margin-top:5rem}.-mt-12{margin-top:-3rem}.ml-2{margin-left:.5rem}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.p-2{padding:.5rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-10{padding:2.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-14{padding-top:3.5rem;padding-bottom:3.5rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-20{padding-top:5rem;padding-bottom:5rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.pt-16{padding-top:4rem}.pb-10{padding-bottom:2.5rem}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-7{gap:1.75rem}.gap-8{gap:2rem}.gap-10{gap:2.5rem}.gap-12{gap:3rem}.gap-x-5{column-gap:1.25rem}.gap-y-1{row-gap:.25rem}.space-y-2>*+*{margin-top:.5rem}.space-y-3>*+*{margin-top:.75rem}.space-y-4>*+*{margin-top:1rem}.space-y-5>*+*{margin-top:1.25rem}.space-y-6>*+*{margin-top:1.5rem}.items-center{align-items:center}.items-end{align-items:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.text-center{text-align:center}.text-right{text-align:right}.object-cover{object-fit:cover}.object-contain{object-fit:contain}.object-center{object-position:center}.leading-tight{line-height:1.25}.leading-snug{line-height:1.375}.leading-relaxed{line-height:1.625}.leading-\[\.96\]{line-height:.96}.tracking-wide{letter-spacing:.025em}.tracking-\[\.12em\]{letter-spacing:.12em}.tracking-\[\.16em\]{letter-spacing:.16em}.uppercase{text-transform:uppercase}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-black{font-weight:900}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.25rem}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[13px\]{font-size:13px}.text-\[2\.45rem\]{font-size:2.45rem}.text-white{color:#fff}.text-\[\#001f3f\]{color:#001f3f}.text-\[\#ff6200\]{color:#ff6200}.text-slate-400{color:#94a3b8}.text-slate-500{color:#64748b}.text-slate-600{color:#475569}.text-slate-700{color:#334155}.text-white\/50{color:rgba(255,255,255,.5)}.text-white\/55{color:rgba(255,255,255,.55)}.text-white\/60{color:rgba(255,255,255,.6)}.text-white\/65{color:rgba(255,255,255,.65)}.text-white\/70{color:rgba(255,255,255,.7)}.text-white\/75{color:rgba(255,255,255,.75)}.text-white\/78{color:rgba(255,255,255,.78)}.text-white\/80{color:rgba(255,255,255,.8)}.text-white\/85{color:rgba(255,255,255,.85)}.text-white\/86{color:rgba(255,255,255,.86)}.text-white\/88{color:rgba(255,255,255,.88)}.text-emerald-200{color:#a7f3d0}.text-emerald-800{color:#065f46}.text-red-800{color:#991b1b}.bg-white{background:#fff}.bg-\[\#001f3f\]{background:#001f3f}.bg-\[\#ff6200\]{background:#ff6200}.bg-\[\#25D366\]{background:#25D366}.bg-\[\#f6f8fb\]{background:#f6f8fb}.bg-slate-50{background:#f8fafc}.bg-slate-200{background:#e2e8f0}.bg-emerald-50{background:#ecfdf5}.bg-red-50{background:#fef2f2}.bg-white\/5{background:rgba(255,255,255,.05)}.bg-white\/7{background:rgba(255,255,255,.07)}.bg-white\/8{background:rgba(255,255,255,.08)}.bg-white\/10{background:rgba(255,255,255,.1)}.bg-white\/92{background:rgba(255,255,255,.92)}.bg-white\/95{background:rgba(255,255,255,.95)}.bg-emerald-400\/15{background:rgba(52,211,153,.15)}.border{border:1px solid}.border-t{border-top:1px solid}.border-b{border-bottom:1px solid}.border-y{border-top:1px solid;border-bottom:1px solid}.border-white\/10{border-color:rgba(255,255,255,.1)}.border-white\/25{border-color:rgba(255,255,255,.25)}.border-slate-100{border-color:#f1f5f9}.border-slate-200{border-color:#e2e8f0}.border-emerald-200{border-color:#a7f3d0}.border-red-200{border-color:#fecaca}.rounded{border-radius:.25rem}.rounded-xl{border-radius:.75rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.shadow-sm{box-shadow:0 1px 2px rgba(15,23,42,.08)}.shadow-xl{box-shadow:0 20px 25px -5px rgba(15,23,42,.12),0 8px 10px -6px rgba(15,23,42,.12)}.shadow-2xl{box-shadow:0 25px 50px -12px rgba(15,23,42,.25)}.shadow-\[0_16px_35px_rgba\(37\,211\,102\,\.38\)\]{box-shadow:0 16px 35px rgba(37,211,102,.38)}.opacity-22{opacity:.22}.opacity-85{opacity:.85}.opacity-90{opacity:.9}.backdrop-blur{backdrop-filter:blur(10px)}.transition{transition:all .2s ease}.transition-colors{transition:color .2s ease,background-color .2s ease,border-color .2s ease}.transition-transform{transition:transform .2s ease}.aspect-\[4\/3\]{aspect-ratio:4/3}.min-h-\[1\.5rem\]{min-height:1.5rem}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.from-\[\#001f3f\]{--tw-gradient-from:#001f3f;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(0,31,63,0))}.from-\[\#001f3f\]\/90{--tw-gradient-from:rgba(0,31,63,.9);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(0,31,63,0))}.from-black\/65{--tw-gradient-from:rgba(0,0,0,.65);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(0,0,0,0))}.from-black\/70{--tw-gradient-from:rgba(0,0,0,.7);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(0,0,0,0))}.via-\[\#001f3f\]\/58{--tw-gradient-via:rgba(0,31,63,.58);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-via),var(--tw-gradient-to,rgba(0,31,63,0))}.via-\[\#001f3f\]\/90{--tw-gradient-via:rgba(0,31,63,.9);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-via),var(--tw-gradient-to,rgba(0,31,63,0))}.to-black\/20{--tw-gradient-to:rgba(0,0,0,.2)}.to-transparent{--tw-gradient-to:transparent}.to-\[\#001f3f\]\/55{--tw-gradient-to:rgba(0,31,63,.55)}.bg-\[radial-gradient\(circle_at_top_right\,rgba\(255\,98\,0\,\.28\)\,transparent_34\%\)\,linear-gradient\(135deg\,\#001f3f\,\#052b51\)\]{background:radial-gradient(circle at top right,rgba(255,98,0,.28),transparent 34%),linear-gradient(135deg,#001f3f,#052b51)}.bg-\[radial-gradient\(circle_at_top_right\,rgba\(255\,98\,0\,\.26\)\,transparent_35\%\)\,linear-gradient\(135deg\,\#001f3f\,\#06345f\)\]{background:radial-gradient(circle at top right,rgba(255,98,0,.26),transparent 35%),linear-gradient(135deg,#001f3f,#06345f)}
.hover\:text-\[\#ff6200\]:hover{color:#ff6200}.hover\:text-white:hover{color:#fff}.hover\:bg-slate-50:hover{background:#f8fafc}.hover\:bg-\[\#ff6200\]:hover{background:#ff6200}.hover\:bg-white:hover{background:#fff}.hover\:text-\[\#001f3f\]:hover{color:#001f3f}.hover\:scale-105:hover{transform:scale(1.05)}.hover\:border-\[\#ff6200\]:hover{border-color:#ff6200}.border-\[\#001f3f\]{border-color:#001f3f}.border-slate-200{border-color:#e2e8f0}
.group:hover .group-hover\:visible{visibility:visible}.group:hover .group-hover\:translate-y-2{transform:translateY(.5rem)}.group:hover .group-hover\:opacity-100{opacity:1}.group{position:relative}.invisible{visibility:hidden}.opacity-0{opacity:0}.translate-y-3{transform:translateY(.75rem)}

nav a{text-decoration:none}.top-contact a{text-decoration:none}.hero-swiper{height:calc(100svh - 112px)}
@media (min-width:640px){.sm\:flex-row{flex-direction:row}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:text-lg{font-size:1.125rem}.sm\:text-6xl{font-size:3.75rem}.sm\:flex{display:flex}.sm\:hidden{display:none!important}}
@media (min-width:768px){.md\:flex-row{flex-direction:row}.md\:items-end{align-items:flex-end}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:col-span-4{grid-column:span 4/span 4}.md\:col-span-5{grid-column:span 5/span 5}.md\:col-span-7{grid-column:span 7/span 7}.md\:h-14{height:3.5rem}.md\:min-h-\[680px\]{min-height:680px}.md\:w-72{width:18rem}.md\:px-5{padding-left:1.25rem;padding-right:1.25rem}.md\:p-5{padding:1.25rem}.md\:p-8{padding:2rem}.md\:py-20{padding-top:5rem;padding-bottom:5rem}.md\:py-24{padding-top:6rem;padding-bottom:6rem}.md\:py-28{padding-top:7rem;padding-bottom:7rem}.md\:py-32{padding-top:8rem;padding-bottom:8rem}.md\:text-xl{font-size:1.25rem}.md\:text-2xl{font-size:1.5rem}.md\:text-4xl{font-size:2.25rem}.md\:text-5xl{font-size:3rem}.md\:text-7xl{font-size:4.5rem}.md\:text-8xl{font-size:6rem}.md\:left-auto{left:auto}.md\:right-6{right:1.5rem}.md\:w-auto{width:auto}}
@media (min-width:1024px){.lg\:flex{display:flex!important}.lg\:hidden{display:none!important}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:text-8xl{font-size:6rem}}
@media (max-width:1023px){.lg\:hidden{display:inline-flex}.lg\:flex{display:none!important}#mobileMenu:not(.hidden){display:block!important}}
@media (max-width:767px){body{overflow-x:hidden}.site-shell{width:min(100% - 24px,1180px)}.flex-col{flex-direction:column}.grid{grid-template-columns:1fr}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.hero-swiper{height:auto;min-height:520px}.text-4xl{font-size:2.35rem}.text-3xl{font-size:1.95rem}.text-2xl{font-size:1.35rem}.btn-primary,.btn-secondary,.btn-ghost{width:100%;max-width:100%}.whatsapp-float-label{display:none}.fixed.bottom-5.right-5{right:1rem;bottom:1rem}.professional-card{border-radius:14px}.top-20{top:5rem}}

.flex-wrap{flex-wrap:wrap}

/* Pulido corporativo inspirado en portales inmobiliarios grandes */
:root {
    --primary: #062b49;
    --primary-soft: #0b426f;
    --primary-deep: #031a2d;
    --accent: #f36c21;
    --accent-dark: #d85a14;
    --gold: #f6a21a;
    --ink: #102033;
    --muted: #5f6f82;
    --surface: #ffffff;
    --line: #dfe7ef;
}

body { background: linear-gradient(180deg, #f3f6f9 0%, #ffffff 42%, #f5f7fa 100%); }
.topbar { background: linear-gradient(90deg, var(--primary-deep), var(--primary)); border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar .site-shell { min-height: 42px; align-items: center; }
.main-header { background: rgba(255,255,255,.98) !important; border-bottom: 1px solid rgba(6,43,73,.10) !important; box-shadow: 0 10px 30px rgba(6,43,73,.08) !important; }
.brand-logo { max-width: 230px; }
.desktop-nav a { position: relative; padding: .65rem 0; }
.desktop-nav > a::after, .desktop-nav .group > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: .25rem; height: 3px; border-radius: 999px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav > a:hover::after, .desktop-nav .group:hover > a::after, .desktop-nav > a.text-\[\#ff6200\]::after { transform: scaleX(1); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--gold)); color: #fff; box-shadow: 0 16px 34px rgba(243,108,33,.28); }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.btn-secondary { background: linear-gradient(135deg, var(--primary), var(--primary-soft)); box-shadow: 0 16px 34px rgba(6,43,73,.18); }
.btn-ghost { border-color: rgba(6,43,73,.14); }
.home-hero-overlay { background: linear-gradient(90deg, rgba(3,26,45,.82) 0%, rgba(6,43,73,.50) 36%, rgba(0,0,0,.12) 72%, rgba(0,0,0,.02) 100%), linear-gradient(0deg, rgba(3,26,45,.54) 0%, rgba(3,26,45,.06) 52%, rgba(255,255,255,.04) 100%) !important; }
.home-hero-title { text-shadow: 0 18px 42px rgba(0,0,0,.25); }
.home-trust-section { position: relative; z-index: 5; margin-top: -54px; padding-bottom: 34px; }
.home-trust-panel { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.65fr); gap: 28px; align-items: center; background: #fff; border: 1px solid rgba(6,43,73,.10); border-radius: 18px; padding: 28px; box-shadow: 0 24px 70px rgba(6,43,73,.14); }
.home-trust-copy h2 { margin: .6rem 0 0; color: var(--primary); font-size: clamp(1.35rem, 2.2vw, 2.25rem); line-height: 1.08; font-weight: 900; }
.home-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.home-trust-grid div { min-width: 0; border-radius: 14px; background: linear-gradient(180deg, #f8fbfd, #eef4f8); border: 1px solid rgba(6,43,73,.08); padding: 18px 14px; }
.home-trust-grid strong { display: block; color: var(--accent); font-size: clamp(1.5rem, 2.5vw, 2.35rem); line-height: 1; font-weight: 900; }
.home-trust-grid span { display: block; margin-top: .45rem; color: var(--muted); font-size: .82rem; font-weight: 800; line-height: 1.25; }
.home-advisor-panel { margin-top: 34px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; border-radius: 18px; padding: 28px; background: linear-gradient(135deg, var(--primary-deep), var(--primary)); color: #fff; box-shadow: 0 22px 60px rgba(6,43,73,.18); }
.home-advisor-panel h3 { margin: .5rem 0 0; font-size: clamp(1.55rem, 3vw, 2.7rem); font-weight: 900; }
.home-advisor-panel p { margin: .8rem 0 0; max-width: 760px; color: rgba(255,255,255,.76); }
.home-advisor-actions { display: flex; gap: 12px; align-items: center; }
.home-advisor-panel .btn-ghost { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.project-card { border-radius: 18px; box-shadow: 0 20px 55px rgba(6,43,73,.09); }
.project-card:hover { box-shadow: 0 30px 75px rgba(6,43,73,.16); }
.professional-card { border-radius: 18px; box-shadow: 0 18px 50px rgba(6,43,73,.075); }
footer { background: linear-gradient(135deg, var(--primary-deep), var(--primary)) !important; }
@media (max-width: 1023px) { .home-trust-panel, .home-advisor-panel { grid-template-columns: 1fr; } .home-advisor-actions { width: 100%; flex-direction: column; } .home-advisor-actions .btn-secondary, .home-advisor-actions .btn-ghost { width: 100%; } }
@media (max-width: 767px) { .topbar .site-shell { min-height: auto; } .home-trust-section { margin-top: -28px; padding-bottom: 18px; } .home-trust-panel { padding: 20px; border-radius: 16px; } .home-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .home-advisor-panel { padding: 22px; border-radius: 16px; } }
/* Correccion de visibilidad del menu desktop y respiracion movil */
@media (min-width: 1024px) {
    .main-header .desktop-nav { display: flex !important; }
    .main-header .desktop-cta { display: flex !important; }
    .main-header .mobile-toggle, .main-header .mobile-menu { display: none !important; }
    .main-header-row { min-height: 82px; }
}

@media (max-width: 767px) {
    .brand-logo { height: 3.25rem !important; max-width: 190px; }
    .main-header-row { height: 5.4rem !important; }
    .home-trust-section { margin-top: -18px; }
    .home-trust-copy h2 { font-size: 1.35rem; }
}
/* Boton menu movil siempre visible */
@media (max-width:1023px){.main-header .mobile-toggle{display:inline-flex!important;visibility:visible!important;opacity:1!important;margin-left:auto;flex:0 0 48px;width:48px;height:48px;background:#fff;border:1px solid rgba(6,43,73,.16);color:#062b49;box-shadow:0 10px 24px rgba(6,43,73,.08)}.main-header-row{display:flex!important}.main-header .desktop-nav,.main-header .desktop-cta{display:none!important}}
/* Posicion absoluta del menu movil */
@media (max-width:1023px){.main-header-row{position:relative!important;padding-right:64px}.main-header .mobile-toggle{position:absolute!important;right:0!important;top:50%!important;transform:translateY(-50%)!important;display:flex!important;align-items:center!important;justify-content:center!important;background:var(--button-bg)!important;color:var(--button-text)!important;border:0!important;border-radius:14px!important;box-shadow:0 14px 28px color-mix(in srgb,var(--button-bg) 28%,transparent)!important}.main-header .mobile-toggle i{color:var(--button-text)!important}}
/* Rediseño premium: paleta sobria, tipografia editorial y tarjetas inmobiliarias */
:root {
    --primary: #18352f;
    --primary-soft: #285247;
    --primary-deep: #0f2420;
    --accent: #b98a3d;
    --accent-dark: #9c7331;
    --gold: #d7b46a;
    --cream: #f6f1e8;
    --mist: #eef3ef;
    --ink: #14211f;
    --muted: #66756f;
    --surface: #ffffff;
    --line: #dde6e0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    color: var(--ink);
    background: linear-gradient(180deg, #f7f4ee 0%, #ffffff 36%, #f2f6f3 100%) !important;
}

h1, h2, h3, h4,
.home-hero-title,
.project-card h3,
.professional-card h2,
.professional-card h3 {
    font-family: 'Poppins', 'Inter', system-ui, sans-serif !important;
    letter-spacing: 0 !important;
}

/* Sobrescribe utilidades anteriores azul/naranja sin tocar el HTML */
.text-\[\#001f3f\], .hover\:text-\[\#001f3f\]:hover { color: var(--primary) !important; }
.text-\[\#ff6200\], .hover\:text-\[\#ff6200\]:hover { color: var(--accent) !important; }
.bg-\[\#001f3f\] { background: var(--primary-deep) !important; }
.bg-\[\#ff6200\], .hover\:bg-\[\#ff6200\]:hover { background: var(--accent) !important; }
.border-\[\#001f3f\] { border-color: var(--primary) !important; }

.topbar {
    background: #102723 !important;
    color: rgba(255,255,255,.92) !important;
}

.topbar i,
.topbar .text-\[\#ff6200\] {
    color: var(--gold) !important;
}

.main-header {
    background: rgba(255,255,255,.985) !important;
    border-bottom: 1px solid rgba(24,53,47,.11) !important;
    box-shadow: 0 14px 38px rgba(24,53,47,.08) !important;
}

.desktop-nav {
    color: #31423d !important;
    font-size: 13px !important;
    letter-spacing: .035em !important;
}

.desktop-nav > a::after,
.desktop-nav .group > a::after {
    background: var(--accent) !important;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    border-radius: 10px !important;
    min-height: 50px;
    padding: .9rem 1.35rem;
    font-weight: 850;
    letter-spacing: 0 !important;
}

.btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft)) !important;
    box-shadow: 0 16px 34px rgba(24,53,47,.20) !important;
    border: 1px solid rgba(255,255,255,.08);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-soft), var(--primary)) !important;
    transform: translateY(-2px);
}

.btn-secondary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent)) !important;
    box-shadow: 0 16px 34px rgba(185,138,61,.22) !important;
}

.btn-ghost {
    color: var(--primary) !important;
    background: rgba(255,255,255,.86) !important;
    border: 1px solid rgba(24,53,47,.16) !important;
    box-shadow: 0 10px 24px rgba(24,53,47,.06);
}

.btn-ghost:hover {
    color: #fff !important;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.section-eyebrow {
    color: var(--accent) !important;
    font-size: .74rem !important;
    letter-spacing: .14em !important;
    font-weight: 900 !important;
}

.home-hero-overlay {
    background:
        linear-gradient(90deg, rgba(15,36,32,.78) 0%, rgba(24,53,47,.46) 36%, rgba(0,0,0,.10) 78%, rgba(0,0,0,.02) 100%),
        linear-gradient(0deg, rgba(15,36,32,.46) 0%, rgba(15,36,32,.08) 58%, rgba(255,255,255,.04) 100%) !important;
}

.home-hero-image {
    filter: saturate(.96) contrast(1.04) brightness(1.03) !important;
}

.home-trust-panel,
.professional-card {
    border: 1px solid rgba(24,53,47,.10) !important;
    border-radius: 14px !important;
    box-shadow: 0 22px 58px rgba(24,53,47,.08) !important;
}

.home-trust-grid div {
    border-radius: 12px !important;
    background: linear-gradient(180deg, #fff, var(--cream)) !important;
    border: 1px solid rgba(185,138,61,.22) !important;
}

.home-trust-grid strong {
    color: var(--primary) !important;
}

.home-advisor-panel {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-soft)) !important;
    border-radius: 14px !important;
    box-shadow: 0 22px 58px rgba(24,53,47,.18) !important;
}

.project-card {
    position: relative;
    border: 0 !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 18px 48px rgba(24,53,47,.10) !important;
    transform: translateY(0);
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 14px;
    border: 1px solid rgba(24,53,47,.10);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 68px rgba(24,53,47,.16) !important;
}

.project-card .aspect-\[4\/3\] {
    aspect-ratio: 16 / 11 !important;
}

.project-card img {
    filter: saturate(.98) contrast(1.03);
}

.project-card .p-6 {
    padding: 1.35rem !important;
}

.project-card h3 {
    font-size: 1.28rem !important;
    line-height: 1.16 !important;
    color: var(--primary) !important;
    min-height: 2.9rem;
}

.project-card .text-3xl {
    font-size: 1.85rem !important;
    color: var(--accent-dark) !important;
}

.status-pill {
    border-radius: 8px !important;
    padding: .52rem .72rem !important;
    background: rgba(255,255,255,.94) !important;
    color: var(--primary) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.status-pill i,
.icon-box,
.icon-box i {
    color: var(--accent) !important;
}

.icon-box {
    border-radius: 10px !important;
    background: rgba(185,138,61,.12) !important;
}

.form-control {
    border-radius: 10px !important;
    border: 1px solid rgba(24,53,47,.18) !important;
    background: #fbfcfa !important;
    padding: 1rem 1.05rem !important;
    font-size: .98rem;
}

.form-control:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(185,138,61,.16) !important;
    background: #fff !important;
}

#contactForm label {
    color: var(--primary) !important;
    font-weight: 800 !important;
}

footer {
    background: linear-gradient(135deg, var(--primary-deep), #1b3b34) !important;
}

footer .text-\[\#ff6200\], footer i.text-\[\#ff6200\] {
    color: var(--gold) !important;
}

@media (max-width: 767px) {
    .project-card h3 { min-height: auto; }
    .home-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
    .btn-primary, .btn-secondary, .btn-ghost { border-radius: 10px !important; }
}
/* Contacto/Leads premium */
.contact-hero{background:var(--primary-deep)!important}.contact-hero-bg{background:radial-gradient(circle at 78% 18%,rgba(215,180,106,.28),transparent 34%),linear-gradient(135deg,var(--primary-deep),var(--primary-soft))!important}.contact-hero h1{font-size:clamp(2.6rem,5.4vw,5.8rem)!important;line-height:.98!important;max-width:12ch}.contact-hero p{max-width:620px}.contact-hero .rounded-2xl{border-radius:14px!important;background:rgba(255,255,255,.10)!important;border-color:rgba(255,255,255,.16)!important}.contact-hero i{color:var(--gold)!important}#contactForm{scroll-margin-top:130px}.professional-card:has(#contactForm){border-top:4px solid var(--accent)!important}.professional-card:has(#contactForm) h2{font-size:clamp(2rem,3.5vw,3.6rem)!important;line-height:1.02!important}.professional-card:has(#contactForm) .section-eyebrow{margin-bottom:.25rem}.map-frame{border-color:rgba(24,53,47,.14)!important}.whatsapp-float-label{display:none!important}
/* Index limpio: sin sombra verde, proyectos tipo lote y clientes con foto */
.home-hero-overlay{background:linear-gradient(90deg,rgba(15,22,31,.74),rgba(30,38,48,.36),rgba(0,0,0,.06)),linear-gradient(0deg,rgba(15,22,31,.44),rgba(15,22,31,.06))!important}.home-hero-bottom{background:linear-gradient(0deg,rgba(15,22,31,.72),rgba(15,22,31,0))!important}.home-trust-section{display:none!important}.projects-lot-section{background:#fff}.projects-lot-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.lot-project-card{display:block;overflow:hidden;border-radius:9px;background:var(--primary);color:#fff;box-shadow:0 18px 44px rgba(12,43,66,.16);transition:transform .2s ease,box-shadow .2s ease}.lot-project-card:hover{transform:translateY(-5px);box-shadow:0 28px 64px rgba(12,43,66,.22)}.lot-project-media{position:relative;height:145px;background:#dbe6ed}.lot-project-media img{width:100%;height:100%;object-fit:cover;display:block}.lot-project-type{position:absolute;top:0;right:0;background:var(--accent);color:#fff;font-size:.78rem;font-weight:900;padding:.55rem 1.25rem;border-bottom-left-radius:16px}.lot-project-body{padding:16px 14px 14px}.lot-project-body h3{font-size:1.05rem;line-height:1.1;font-weight:900;margin:0 0 .55rem;color:#fff!important}.lot-project-zone{font-size:.78rem;font-weight:800;margin:.15rem 0 .65rem;color:#fff}.lot-project-features{list-style:none;margin:0;padding:0;display:grid;gap:.34rem;font-size:.72rem;line-height:1.2;color:#fff}.lot-project-features li{display:flex;align-items:flex-start;gap:.42rem}.lot-project-features i{width:14px;min-width:14px;color:#fff}.lot-project-price{margin:14px 0 0 auto;width:max-content;max-width:100%;border-radius:999px;background:var(--accent);color:#fff;padding:.58rem .95rem;font-size:.74rem}.lot-project-price strong{font-weight:900;color:#111}.client-proof-section{background:#fff;color:#0b3860}.client-proof-title{font-size:clamp(2rem,4.2vw,3.2rem);line-height:1;font-weight:900;color:var(--primary)!important;margin:0}.client-proof-subtitle{margin:.8rem auto 0;max-width:650px;color:#607383}.client-proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:stretch}.client-proof-card{position:relative;min-height:420px;border-radius:14px;overflow:hidden;background:#dbe6ed;box-shadow:0 18px 48px rgba(20,33,45,.12)}.client-proof-card>img{width:100%;height:100%;min-height:420px;object-fit:cover;display:block}.client-quote-box{position:absolute;left:14px;right:14px;bottom:14px;border-radius:14px;background:#fff;padding:18px 18px 16px;text-align:center;box-shadow:0 14px 32px rgba(15,23,42,.12)}.client-quote-box h3{margin:0;color:var(--primary)!important;font-size:.95rem;font-weight:900}.client-quote-box p{margin:.65rem auto 0;color:var(--primary);font-size:.74rem;line-height:1.35;max-width:90%}.client-name{margin-top:1.05rem;color:var(--primary);font-size:.74rem;font-weight:800}.client-quote-box span{display:block;color:var(--primary);font-size:.68rem}.whatsapp-float-label{display:none!important}@media(max-width:1100px){.projects-lot-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.client-proof-grid{grid-template-columns:1fr 1fr}}@media(max-width:767px){.projects-lot-grid,.client-proof-grid{grid-template-columns:1fr}.lot-project-media{height:190px}.client-proof-card,.client-proof-card>img{min-height:390px}.client-proof-title{font-size:2rem}.client-quote-box{left:12px;right:12px;bottom:12px}}
/* Proyecto publico: tarjetas, detalle moderno, media tabs y colores configurables */
@media (max-width:1023px){.main-header-row{position:relative!important;padding-right:64px}.main-header .mobile-toggle{position:absolute!important;right:0!important;top:50%!important;transform:translateY(-50%)!important;display:flex!important;align-items:center!important;justify-content:center!important;background:var(--button-bg)!important;color:var(--button-text)!important;border:0!important;border-radius:14px!important;box-shadow:0 14px 28px color-mix(in srgb,var(--button-bg) 28%,transparent)!important}.main-header .mobile-toggle i{color:var(--button-text)!important}}
.public-project-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.public-project-card{display:block;overflow:hidden;border-radius:8px;background:var(--primary);color:#fff;box-shadow:0 18px 46px rgba(15,23,42,.13);transition:transform .2s ease,box-shadow .2s ease}.public-project-card:hover{transform:translateY(-5px);box-shadow:0 26px 60px rgba(15,23,42,.2)}.public-project-media{position:relative;height:190px;background:#d8e3ed}.public-project-media img{width:100%;height:100%;object-fit:cover;display:block}.public-project-badge{position:absolute;right:0;top:0;background:var(--button-bg);color:var(--button-text);font-weight:900;font-size:.85rem;padding:.75rem 1.3rem;border-bottom-left-radius:15px}.public-project-body{padding:20px 18px 18px;min-height:205px;display:flex;flex-direction:column}.public-project-body h3{color:#fff!important;font-size:1.25rem;font-weight:900;margin:0 0 .42rem;line-height:1.1}.public-project-body>strong{font-size:.86rem;color:#fff!important;margin-bottom:.65rem}.public-project-body ul{list-style:none;margin:0;padding:0;display:grid;gap:.36rem;font-size:.82rem;line-height:1.25}.public-project-body li{display:flex;gap:.48rem;align-items:flex-start;color:#fff}.public-project-body i{width:15px;color:#fff;margin-top:.12rem}.public-project-price{align-self:flex-end;margin-top:auto;border-radius:999px;background:var(--button-bg);color:var(--button-text);font-size:.82rem;font-weight:700;padding:.68rem 1rem}.public-project-price b{font-weight:900;color:inherit}.projects-catalog{background:var(--surface-alt)}
.detail-lp-hero{position:relative;min-height:560px;background:var(--accent);overflow:hidden}.detail-lp-photo{height:310px;background:#dbe6ed}.detail-lp-photo img{width:100%;height:100%;object-fit:cover;display:block}.detail-lp-info{position:relative;min-height:250px;padding-top:22px;padding-bottom:34px}.detail-breadcrumb{display:flex;align-items:center;gap:12px;font-size:.82rem;font-weight:800;color:var(--primary);margin-bottom:22px}.detail-lp-copy{max-width:610px}.detail-lp-copy span{font-weight:900;color:var(--primary);font-size:1rem}.detail-lp-copy h1{margin:.25rem 0 1rem;color:var(--primary)!important;font-size:clamp(2.25rem,5vw,4rem);line-height:.95;font-weight:950}.detail-lp-copy p{margin:.55rem 0;display:flex;gap:.75rem;align-items:flex-start;color:var(--primary)!important;font-weight:600}.detail-price-card{position:absolute;left:min(44%,520px);top:56px;display:flex;align-items:center;gap:8px;background:var(--primary);color:#fff;border-radius:12px;padding:22px 28px;box-shadow:0 18px 40px rgba(15,23,42,.18)}.detail-price-card small{font-size:1rem;font-weight:900;line-height:1}.detail-price-card strong{font-size:3.6rem;line-height:.85;color:#fff}.detail-price-card span{font-weight:900;align-self:flex-end}.detail-lead-card{position:absolute;right:0;top:-165px;width:min(430px,38vw);border-radius:18px 18px 0 0;background:var(--primary);color:#fff;padding:28px 22px 26px;box-shadow:0 24px 70px rgba(15,23,42,.22)}.detail-lead-card h2{color:#fff!important;text-align:center;font-size:1.35rem;font-weight:900;margin:8px 0 18px}.detail-step{display:flex;align-items:center;justify-content:center;gap:0}.detail-step span{width:28px;height:28px;border-radius:999px;background:var(--button-bg);color:var(--button-text);display:grid;place-items:center;font-weight:900}.detail-step span+span{background:#fff;color:var(--primary)}.detail-step i{width:92px;height:2px;background:var(--button-bg)}.detail-lead-form{display:grid;grid-template-columns:1fr 1fr;gap:12px}.detail-lead-form input,.detail-lead-form textarea{border:0;border-radius:13px;padding:13px 14px;background:var(--input-bg)!important;color:var(--input-text)!important}.detail-lead-form textarea,.detail-lead-form label,.detail-lead-form button{grid-column:1/-1}.detail-lead-form label{display:flex;gap:8px;align-items:flex-start;font-size:.82rem;color:#fff}.detail-lead-form button{border:0;border-radius:999px;background:var(--button-bg);color:var(--button-text);font-weight:900;padding:15px 18px;cursor:pointer}.detail-modern-main{padding-top:42px;padding-bottom:70px}.detail-summary-card{border-radius:16px;background:var(--surface);border:1px solid var(--line);box-shadow:0 16px 44px rgba(15,23,42,.08);padding:30px}.detail-summary-card h2{margin:.4rem 0 1rem;color:var(--heading)!important;font-size:clamp(2rem,4vw,3.3rem);line-height:1;font-weight:950}.detail-summary-card div{color:var(--muted);font-size:1.08rem;line-height:1.75}.detail-amenities{padding:50px 0 25px}.detail-amenities h2{color:var(--primary)!important;font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:950;margin:0 0 24px}.detail-amenities-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:32px}.detail-amenities-grid article{min-height:150px;border-radius:10px;background:color-mix(in srgb,var(--primary) 8%,white);display:grid;place-items:center;text-align:center;padding:20px;color:var(--primary);font-weight:900}.detail-amenities-grid i{font-size:3.7rem;color:var(--primary);margin-bottom:10px}.media-tabs-card{max-width:780px;margin:20px 0 44px}.media-tabs-card h2{color:var(--primary)!important;font-size:1.45rem;font-weight:900;margin:0 0 16px}.media-stage{position:relative;border-radius:8px;background:#050505;overflow:hidden;box-shadow:0 18px 48px rgba(15,23,42,.13)}.media-panel{display:none;aspect-ratio:16/9;background:#000}.media-panel.active{display:block}.media-panel img,.media-panel iframe,.media-panel video{width:100%;height:100%;display:block;border:0;object-fit:cover}.media-panorama{width:100%;height:100%;min-height:360px}.media-empty{height:100%;display:grid;place-items:center;color:#fff;font-weight:800}.detail-media-swiper,.detail-media-swiper .swiper-wrapper,.detail-media-swiper .swiper-slide{height:100%}.media-tab-buttons{width:max-content;margin:-15px auto 0;position:relative;z-index:3;display:flex;gap:4px;background:#fff;border-radius:999px;box-shadow:0 8px 25px rgba(15,23,42,.18);padding:7px}.media-tab-buttons button{border:0;border-radius:999px;background:#fff;color:var(--primary);font-size:.72rem;font-weight:900;padding:.62rem .95rem;cursor:pointer}.media-tab-buttons button.active{background:var(--primary);color:#fff}.media-tab-buttons button:disabled{opacity:.42;cursor:not-allowed}
@media(max-width:1100px){.public-project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.detail-lead-card{position:relative;top:auto;right:auto;width:100%;margin-top:24px}.detail-price-card{position:relative;left:auto;top:auto;width:max-content;max-width:100%;margin:18px 0}.detail-lp-info{padding-bottom:28px}.detail-amenities-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:767px){.public-project-grid{grid-template-columns:1fr}.public-project-media{height:210px}.detail-lp-photo{height:230px}.detail-lp-info{width:min(100% - 24px,1180px)}.detail-breadcrumb{font-size:.72rem;gap:8px;overflow:auto}.detail-price-card{padding:16px 20px}.detail-price-card strong{font-size:2.9rem}.detail-lead-form{grid-template-columns:1fr}.detail-summary-card{padding:22px;border-radius:14px}.detail-amenities-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.detail-amenities-grid article{min-height:130px}.detail-amenities-grid i{font-size:2.7rem}.media-tabs-card{max-width:100%}.media-panel{aspect-ratio:4/3}.media-panorama{min-height:300px}}
/* Ajustes finales: iconos, header fijo y detalle ordenado */
.site-fixed-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--header-bg);box-shadow:0 12px 30px rgba(15,23,42,.08)}
.site-fixed-spacer{height:126px}.site-fixed-header .topbar{position:relative;z-index:2}.site-fixed-header .main-header{position:relative!important;top:auto!important;z-index:1!important}.topbar i,.main-header i,.detail-modern-main i,.detail-lp-hero i,.public-project-card i,.btn-primary i{font-family:"Font Awesome 6 Free","Font Awesome 6 Brands"!important}.fa-solid{font-weight:900!important}.fa-regular,.fa-brands{font-weight:400!important}.topbar .fa-brands{font-family:"Font Awesome 6 Brands"!important}.topbar .fa-solid,.main-header .fa-solid,.detail-modern-main .fa-solid,.detail-lp-hero .fa-solid{font-family:"Font Awesome 6 Free"!important;font-weight:900!important}
.detail-lp-hero{overflow:visible!important;background:var(--accent)!important}.detail-lp-photo{height:330px!important}.detail-lp-info{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,430px);grid-template-areas:"crumb form" "copy form" "price form";gap:16px 48px;align-items:start;min-height:auto!important;padding-top:24px!important;padding-bottom:42px!important}.detail-breadcrumb{grid-area:crumb;margin-bottom:4px!important;color:var(--primary)!important}.detail-breadcrumb span:last-child{font-weight:900}.detail-lp-copy{grid-area:copy;max-width:760px!important}.detail-lp-copy>span{display:block;color:var(--primary)!important;font-size:1rem!important;font-weight:900!important;margin-bottom:.35rem}.detail-lp-copy h1{font-size:clamp(3rem,6.4vw,5.6rem)!important;line-height:.9!important;margin:.2rem 0 1.1rem!important}.detail-lp-copy p{font-size:1.05rem!important;color:var(--primary)!important}.detail-price-card{grid-area:price;position:relative!important;left:auto!important;top:auto!important;width:max-content;max-width:100%;margin-top:8px!important}.detail-lead-card{grid-area:form;position:sticky!important;top:150px!important;right:auto!important;width:100%!important;max-width:430px;margin-left:auto;border-radius:18px!important;align-self:start;padding:28px 22px 24px!important}.detail-lead-form{display:grid!important;grid-template-columns:1fr 1fr!important;gap:12px!important}.detail-lead-form input,.detail-lead-form textarea{width:100%!important;min-width:0!important;box-sizing:border-box!important}.detail-lead-form input[type="email"],.detail-lead-form textarea,.detail-lead-form label,.detail-lead-form button{grid-column:1/-1!important}.detail-lead-form textarea{resize:vertical;min-height:98px}.detail-step span{background:var(--button-bg)!important;color:var(--button-text)!important}.detail-step span+span{background:color-mix(in srgb,var(--button-bg) 72%,white)!important;color:var(--button-text)!important}.detail-step i{background:var(--button-bg)!important}.detail-modern-main{padding-top:54px!important}.detail-summary-card,.detail-amenities,.media-tabs-card,.detail-modern-main>.professional-card{max-width:calc(100% - 470px)}
@media(max-width:1100px){.site-fixed-spacer{height:122px}.detail-lp-info{display:block}.detail-lead-card{position:relative!important;top:auto!important;max-width:none;margin:24px 0 0}.detail-price-card{margin:18px 0!important}.detail-summary-card,.detail-amenities,.media-tabs-card,.detail-modern-main>.professional-card{max-width:100%}}
@media(max-width:767px){.site-fixed-spacer{height:132px}.detail-lp-photo{height:240px!important}.detail-lp-info{width:min(100% - 24px,1180px)!important;padding-top:18px!important}.detail-lp-copy h1{font-size:3rem!important}.detail-lead-form{grid-template-columns:1fr!important}.detail-lead-card{padding:22px 18px!important}.detail-price-card strong{font-size:2.7rem!important}.detail-breadcrumb{white-space:nowrap;overflow-x:auto}}
/* Produccion nube: sin barra superior y sin dependencia Tailwind CDN */
.site-fixed-header .topbar{display:none!important}.site-fixed-spacer{height:84px!important}.site-fixed-spacer.no-topbar{height:84px!important}.main-header-row{min-height:82px}.site-fixed-header{background:var(--header-bg)!important}.main-header{box-shadow:0 10px 28px rgba(15,23,42,.08)!important}.desktop-nav i,.btn-primary i,.mobile-toggle i,.detail-breadcrumb i,.detail-lp-copy i,.public-project-card i,.contact-hero i,.professional-card i{display:inline-block;min-width:1em;text-align:center}
@media(max-width:767px){.site-fixed-spacer,.site-fixed-spacer.no-topbar{height:86px!important}.main-header-row{min-height:84px!important}}
/* Restaurar barra superior: solo redes sociales, sin celular ni correo */
.site-fixed-header .topbar{display:block!important;background:var(--topbar-bg)!important;color:#fff!important}
.topbar-social-only .site-shell{justify-content:flex-end!important}
.topbar-social-only a{color:#fff!important}
.topbar-social-only a:hover{color:var(--accent)!important}
.site-fixed-spacer,.site-fixed-spacer.no-topbar{height:124px!important}
@media(max-width:767px){.site-fixed-spacer,.site-fixed-spacer.no-topbar{height:124px!important}.topbar-social-only .site-shell{padding-top:8px!important;padding-bottom:8px!important}}
/* Estilo publico inspirado en Los Portales: tipografia Montserrat, azul/amarillo, centrado movil */
:root{--lp-blue:#0072bc;--lp-blue-dark:#004a98;--lp-yellow:#fdb913;--lp-soft:#f6fbff}
.site-shell{width:min(1180px,calc(100% - 32px));margin-inline:auto}.main-header{background:#fff!important}.main-header-row{height:82px}.brand-logo{max-height:54px}.desktop-nav a{font-weight:900;letter-spacing:.01em;color:var(--header-text)!important}.desktop-nav a:hover,.desktop-nav .text-\[\#ff6200\]{color:var(--accent)!important}.desktop-nav .group>button{font-weight:900}.btn-primary{border-radius:13px!important;box-shadow:0 12px 28px color-mix(in srgb,var(--button-bg) 24%,transparent)!important}.home-hero-content,.home-hero .site-shell{text-align:left}.home-hero-content h1{letter-spacing:0!important}.section-eyebrow{letter-spacing:.16em!important;color:var(--accent)!important}.projects-lot-section,.projects-catalog,.client-proof-section{background:#fff!important}.lot-project-card,.public-project-card{border-radius:12px!important;background:var(--primary)!important;box-shadow:0 14px 36px rgba(0,91,170,.16)!important}.lot-project-type,.lot-project-price,.public-project-badge,.public-project-price{background:var(--button-bg)!important;color:var(--button-text)!important}.client-proof-title,.section-title,.public-project-body h3{color:var(--heading)!important}.client-proof-card{border-radius:14px!important}.client-quote-box{border-radius:14px!important}.contact-hero{background:linear-gradient(135deg,var(--primary),var(--primary-deep))!important}.professional-card{border-radius:16px!important}
@media(max-width:767px){body{text-align:center}.site-shell{width:min(100% - 28px,430px)!important;margin-inline:auto!important}.topbar-social-only .site-shell{justify-content:center!important}.main-header-row{height:82px;justify-content:center!important;padding-right:0!important}.brand-logo{height:48px!important}.main-header .mobile-toggle{right:0!important}.home-hero-content,.home-hero .site-shell,.contact-hero .site-shell{text-align:center!important}.home-hero-content h1,.contact-hero h1{margin-inline:auto!important;max-width:11ch!important}.home-hero-content p,.contact-hero p{margin-inline:auto!important}.projects-lot-grid,.public-project-grid,.client-proof-grid{width:min(100%,390px)!important;margin-inline:auto!important}.lot-project-card,.public-project-card,.client-proof-card,.professional-card,.detail-summary-card{margin-inline:auto!important;text-align:left}.lot-project-body,.public-project-body{text-align:left}.lot-project-price,.public-project-price{margin-left:auto;margin-right:auto}.client-quote-box{text-align:center}.client-proof-subtitle{margin-inline:auto}.detail-lp-info,.detail-modern-main>.site-shell{width:min(100% - 28px,430px)!important;margin-inline:auto!important;text-align:center}.detail-lp-copy,.detail-lp-copy p{justify-content:center;text-align:center}.detail-price-card{margin-left:auto!important;margin-right:auto!important}.detail-lead-card{text-align:left}.detail-amenities-grid{width:100%;margin-inline:auto}.media-tab-buttons{max-width:100%;overflow-x:auto}.whatsapp-float{right:18px!important;bottom:18px!important}}
/* Ajuste final index: tarjetas centradas y footer tipo Los Portales */
.projects-lot-grid{align-items:stretch!important}.lot-project-card{width:100%!important;max-width:276px!important;margin-inline:auto!important;border-radius:10px!important}.lot-project-media{height:160px!important}.lot-project-body{min-height:205px!important;display:flex!important;flex-direction:column!important}.lot-project-price{margin-top:auto!important}.client-proof-section .site-shell{text-align:center}.client-proof-grid{justify-content:center}.client-proof-card{max-width:360px;margin-inline:auto}.lp-footer{background:var(--primary)!important;color:#fff!important;padding:46px 0 0!important;margin-top:0!important}.lp-footer-shell{display:grid;gap:26px;text-align:center;justify-items:center}.lp-footer-logo{height:58px;width:auto;object-fit:contain;background:#fff;border-radius:4px;padding:8px;margin:0 auto 14px}.lp-footer-brand h3{margin:0;color:#fff!important;font-size:1rem;font-weight:900}.lp-footer-brand p,.lp-footer-contact p{margin:.45rem 0 0;color:#fff!important;font-weight:700;font-size:.86rem}.lp-footer-socials{display:flex;gap:14px;justify-content:center}.lp-footer-socials a{width:42px;height:42px;display:grid;place-items:center;background:#fff;color:var(--primary)!important;border-radius:9px;font-size:1.1rem;box-shadow:0 8px 18px rgba(0,0,0,.12)}.lp-footer-contact h4{margin:0 0 .75rem;color:#fff!important;font-size:1rem;font-weight:900}.lp-footer-contact a{display:block;color:#fff!important;font-weight:900;font-size:.9rem;margin:.35rem 0}.lp-footer-links{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}.lp-footer-links a{color:#fff!important;font-weight:800;font-size:.86rem}.lp-footer-projects{opacity:.9}.lp-footer-bottom{width:100%;border-top:1px solid rgba(255,255,255,.25);padding:18px 0 22px;display:flex;gap:10px 18px;flex-wrap:wrap;align-items:center;justify-content:center;color:#fff!important;font-size:.82rem}.lp-footer-bottom a,.lp-footer-bottom span{color:#fff!important}.lp-footer ul,.lp-footer li{list-style:none!important;margin:0!important;padding:0!important}
@media(min-width:768px){.lp-footer-shell{grid-template-columns:1.3fr 1fr 1fr;align-items:start;text-align:left;justify-items:start}.lp-footer-brand,.lp-footer-contact{text-align:left}.lp-footer-socials{grid-column:1;justify-content:flex-start}.lp-footer-links{justify-content:flex-start}.lp-footer-bottom{grid-column:1/-1}.lot-project-card{max-width:none!important}}
@media(max-width:767px){.projects-lot-grid{width:min(100%,310px)!important;gap:18px!important}.lot-project-card{max-width:250px!important}.lot-project-media{height:132px!important}.lot-project-body{min-height:176px!important;padding:12px!important}.lot-project-body h3{font-size:.9rem!important}.lot-project-zone,.lot-project-features{font-size:.64rem!important}.lot-project-price{font-size:.66rem!important;padding:.48rem .75rem!important}.client-proof-grid{width:min(100%,340px)!important}.client-proof-card{max-width:300px!important;min-height:420px!important}.client-proof-card>img{min-height:420px!important}.lp-footer{padding-top:36px!important}.lp-footer-shell{width:min(100% - 30px,360px)!important}.lp-footer-links{flex-direction:column;gap:12px}.lp-footer-bottom{font-size:.78rem;line-height:1.45}.whatsapp-float{width:48px!important;height:48px!important;padding:0!important;display:grid!important;place-items:center!important}.whatsapp-float i{font-size:1.45rem!important}}
/* Ajuste tipografico y proporciones moviles solicitadas */
html{font-size:17px}.lp-footer{font-size:1rem!important}.lp-footer-brand h3{font-size:1.08rem!important}.lp-footer-brand p,.lp-footer-contact p,.lp-footer-contact a,.lp-footer-links a{font-size:.96rem!important;line-height:1.45}.lp-footer-bottom{font-size:.9rem!important}.professional-card h3{font-size:1.22rem!important}.professional-card p{font-size:.98rem!important;line-height:1.55}.home-advisor-panel{max-width:1120px;margin-left:auto!important;margin-right:auto!important}.home-advisor-panel h3{line-height:1.08!important}.home-advisor-panel p{font-size:1.02rem!important;line-height:1.65!important}.home-advisor-actions a{min-height:58px;font-weight:900!important}
@media(max-width:767px){html{font-size:17.5px}.lp-footer-shell{width:min(100% - 28px,390px)!important;gap:22px!important}.lp-footer-logo{height:64px!important}.lp-footer-brand h3{font-size:1.02rem!important}.lp-footer-brand p,.lp-footer-contact p,.lp-footer-contact a,.lp-footer-links a{font-size:.92rem!important}.lp-footer-socials a{width:44px!important;height:44px!important}.lp-footer-bottom{font-size:.82rem!important;gap:8px 14px}.professional-card{width:min(100%,330px)!important;margin-inline:auto!important;padding:24px!important;text-align:center!important}.professional-card .icon-box{margin-inline:auto!important}.professional-card h3,.professional-card p{text-align:center!important}.professional-card h3{font-size:1.18rem!important}.professional-card p{font-size:.93rem!important}.home-advisor-panel{width:min(100%,330px)!important;margin:34px auto 0!important;padding:28px 20px!important;border-radius:12px!important;display:block!important;text-align:center!important;background:linear-gradient(135deg,var(--primary),color-mix(in srgb,var(--primary) 55%,white))!important}.home-advisor-panel .section-eyebrow{justify-content:center!important;text-align:center!important;font-size:.8rem!important;letter-spacing:.18em!important}.home-advisor-panel h3{font-size:1.55rem!important;line-height:1.05!important;margin:.75rem auto 1rem!important;max-width:13ch;text-align:center!important}.home-advisor-panel p{font-size:.95rem!important;line-height:1.55!important;text-align:center!important;margin-inline:auto!important}.home-advisor-actions{display:grid!important;grid-template-columns:1fr!important;gap:14px!important;margin-top:22px!important}.home-advisor-actions a{width:100%!important;min-height:56px!important;border-radius:8px!important;justify-content:center!important}.projects-lot-grid{width:min(100%,340px)!important}.lot-project-card{max-width:285px!important}.lot-project-media{height:150px!important}.lot-project-body{min-height:195px!important}.lot-project-body h3{font-size:1rem!important}.lot-project-zone,.lot-project-features{font-size:.72rem!important}.lot-project-price{font-size:.72rem!important}.client-proof-title{font-size:2.1rem!important;line-height:1.05!important}.client-proof-card{max-width:320px!important}}
@media(min-width:1200px){html{font-size:17px}.lot-project-body h3{font-size:1.12rem!important}.lot-project-zone,.lot-project-features{font-size:.78rem!important}}
/* Hero sin fondo azul: mostrar imagen limpia y boton corregido */
.home-hero{background:#fff!important}.home-hero-overlay,.home-hero-bottom{background:transparent!important;opacity:0!important}.home-hero-image{filter:none!important}.home-hero-copy{filter:none!important}.home-hero-copy .btn-ghost{background:#fff!important;color:var(--primary)!important;border-color:#fff!important;box-shadow:0 12px 28px rgba(15,23,42,.12)!important}.home-hero-copy .btn-primary{background:var(--button-bg)!important;color:var(--button-text)!important}
@media(max-width:767px){.home-hero-overlay,.home-hero-bottom{display:none!important}.home-hero-copy{width:100%!important}.home-hero-copy .btn-primary,.home-hero-copy .btn-ghost{max-width:100%!important;margin-inline:auto!important}.home-hero-title,.home-hero-copy p,.home-hero-copy .section-eyebrow{text-shadow:0 2px 12px rgba(0,0,0,.35)!important}}
/* Correccion solicitada: header movil con logo a la izquierda y footer con borde fino */
@media(max-width:767px){
  .site-fixed-header .main-header .site-shell{width:min(100% - 24px,430px)!important;margin-inline:auto!important}
  .main-header-row{justify-content:space-between!important;align-items:center!important;padding-right:0!important;gap:12px!important;text-align:left!important}
  .main-header-row>a{margin-right:auto!important;display:flex!important;justify-content:flex-start!important;align-items:center!important}
  .brand-logo{height:46px!important;max-width:172px!important}
  .main-header .mobile-toggle{position:relative!important;right:auto!important;top:auto!important;transform:none!important;flex:0 0 54px!important;width:54px!important;height:54px!important;margin-left:auto!important}
}
.lp-footer-logo{height:60px!important;width:auto!important;max-width:190px!important;object-fit:contain!important;background:rgba(255,255,255,.06)!important;border:1px solid rgba(255,255,255,.58)!important;border-radius:6px!important;padding:6px 10px!important;box-shadow:none!important}
@media(max-width:767px){.lp-footer-logo{height:56px!important;max-width:180px!important;padding:5px 9px!important}}
/* Ajustes solicitados: footer limpio, colores configurables y detalle tipo Los Portales */
.lp-footer-links{display:none!important}
.home-advisor-panel,
.lot-project-card,
.public-project-card{
  background:linear-gradient(135deg,var(--primary),color-mix(in srgb,var(--primary) 58%,white))!important;
  color:#fff!important;
}
.lot-project-body h3,.lot-project-zone,.lot-project-features,.lot-project-features li,
.public-project-body h3,.public-project-body>strong,.public-project-body li{color:#fff!important}
.lot-project-features i,.public-project-body i{color:#fff!important}
.lot-project-type,.public-project-badge{background:var(--button-bg)!important;color:var(--button-text)!important}
.lot-project-price,.public-project-price{background:var(--button-bg)!important;color:var(--button-text)!important}
.lot-project-price strong,.public-project-price b{color:inherit!important}
.contact-hero .site-shell{grid-template-columns:1fr!important;max-width:900px;text-align:left}
.contact-hero .site-shell>div:last-child:not(:first-child){display:none!important}
#contactForm label a,.detail-lead-form label a{color:inherit!important;text-decoration:underline!important;font-weight:900!important}
#contactForm input[type="checkbox"],.detail-lead-form input[type="checkbox"]{accent-color:var(--primary)!important;box-shadow:none!important}
.detail-lp-hero{background:var(--button-bg)!important;overflow:visible!important;color:var(--primary)!important}
.detail-lp-photo{height:330px!important;background:#dbe6ed!important}
.detail-lp-photo img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}
.detail-lp-info{background:var(--button-bg)!important;color:var(--primary)!important}
.detail-breadcrumb,.detail-breadcrumb span,.detail-lp-copy span,.detail-lp-copy h1,.detail-lp-copy p{color:var(--primary)!important;opacity:1!important}
.detail-lp-copy h1{text-shadow:none!important}
.detail-price-card{background:var(--primary)!important;color:#fff!important;border-radius:12px!important}
.detail-price-card strong,.detail-price-card small,.detail-price-card span{color:#fff!important}
.detail-lead-card{background:var(--primary)!important;color:#fff!important;border-radius:18px!important;box-shadow:0 24px 70px rgba(0,0,0,.22)!important;z-index:5!important}
.detail-lead-card h2{color:#fff!important;text-align:center!important}
.detail-lead-form{grid-template-columns:1fr 1fr!important;gap:14px!important}
.detail-lead-form input,.detail-lead-form textarea{border:0!important;border-radius:13px!important;background:#fff!important;color:var(--input-text)!important;min-height:44px!important;padding:13px 14px!important;font-size:.95rem!important}
.detail-lead-form input[name="email"],.detail-lead-form textarea,.detail-lead-form label,.detail-lead-form button{grid-column:1/-1!important}
.detail-lead-form label{display:flex!important;align-items:flex-start!important;gap:10px!important;color:#fff!important;font-size:.84rem!important;line-height:1.35!important}
.detail-lead-form label input{width:16px!important;height:16px!important;min-height:16px!important;margin-top:2px!important;flex:0 0 16px!important;padding:0!important}
.detail-lead-form button{background:var(--button-bg)!important;color:var(--button-text)!important;border:0!important;border-radius:999px!important;min-height:54px!important;font-weight:900!important}
@media(max-width:1100px){.detail-lp-info{display:block!important}.detail-lead-card{position:relative!important;top:auto!important;max-width:520px!important;margin:24px auto 0!important}.detail-price-card{margin:18px auto!important}.detail-lp-copy{text-align:center!important;margin-inline:auto!important}.detail-lp-copy p{justify-content:center!important}}
@media(max-width:767px){.lp-footer-links{display:none!important}.lot-project-card,.public-project-card{max-width:320px!important}.detail-lp-photo{height:230px!important}.detail-lp-info{width:min(100% - 24px,430px)!important;margin-inline:auto!important;padding:20px 0 30px!important}.detail-lp-copy h1{font-size:2.7rem!important;line-height:.95!important}.detail-lead-card{width:100%!important;max-width:390px!important;padding:22px 18px!important}.detail-lead-form{grid-template-columns:1fr!important}.contact-hero .site-shell{text-align:center!important}}
/* Footer legal ordenado, tarjetas index amplias y beneficios centrados */
.lp-footer{background:var(--primary)!important;color:#fff!important;padding:58px 0 0!important}
.lp-footer-shell{display:grid!important;grid-template-columns:1.15fr .9fr 1.05fr .9fr!important;gap:56px!important;align-items:start!important;text-align:left!important;justify-items:start!important}
.lp-footer-brand,.lp-footer-contact,.lp-footer-column{text-align:left!important;width:100%!important}
.lp-footer-logo{height:58px!important;max-width:210px!important;background:transparent!important;border:2px solid rgba(255,255,255,.68)!important;border-radius:9px!important;padding:8px 14px!important;box-shadow:none!important;margin:0 0 22px!important}
.lp-footer-brand h3,.lp-footer-contact h4,.lp-footer-accordion summary{color:#fff!important;font-size:1.02rem!important;font-weight:950!important;margin:0 0 20px!important;list-style:none!important;cursor:default!important}
.lp-footer-accordion summary::-webkit-details-marker{display:none!important}
.lp-footer-accordion summary i{display:none!important}
.lp-footer-brand p,.lp-footer-contact p,.lp-footer-contact a{color:#fff!important;font-weight:750!important;font-size:.94rem!important;line-height:1.55!important}
.lp-footer-socials{display:flex!important;gap:13px!important;justify-content:flex-start!important;margin-top:28px!important}
.lp-footer-socials a{width:38px!important;height:38px!important;display:grid!important;place-items:center!important;background:#fff!important;color:var(--primary)!important;border-radius:8px!important;font-size:1.05rem!important;text-decoration:none!important}
.lp-footer-list{display:grid!important;gap:14px!important}
.lp-footer-list a{display:block!important;color:#fff!important;font-weight:760!important;font-size:.96rem!important;line-height:1.25!important;text-decoration:none!important}
.lp-footer-list a:hover,.lp-footer-contact a:hover{text-decoration:underline!important}
.lp-footer-bottom{grid-column:1/-1!important;width:100%!important;margin-top:34px!important;border-top:1px solid rgba(255,255,255,.35)!important;padding:22px 0 26px!important;display:flex!important;gap:12px 22px!important;align-items:center!important;justify-content:center!important;flex-wrap:wrap!important;color:#fff!important;font-size:.88rem!important;text-align:center!important}
.lp-footer-bottom a,.lp-footer-bottom span{color:#fff!important}
.projects-lot-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important;align-items:stretch!important;width:100%!important;margin-inline:auto!important}
.lot-project-card{max-width:none!important;width:100%!important;border-radius:10px!important;background:color-mix(in srgb,var(--primary) 62%,white)!important;box-shadow:0 14px 36px rgba(0,91,170,.16)!important;overflow:hidden!important}
.lot-project-media{height:190px!important;background:#edf5fb!important}
.lot-project-type{background:var(--button-bg)!important;color:var(--button-text)!important;border-bottom-left-radius:14px!important;padding:.9rem 1.45rem!important;font-weight:950!important}
.lot-project-body{min-height:236px!important;padding:24px 20px 18px!important;display:flex!important;flex-direction:column!important;text-align:left!important}
.lot-project-body h3{font-size:1.35rem!important;line-height:1.05!important;color:#fff!important;margin-bottom:.7rem!important}
.lot-project-zone{font-size:.9rem!important;color:#fff!important;font-weight:900!important}
.lot-project-features{font-size:.9rem!important;gap:.48rem!important;color:#fff!important}
.lot-project-price{margin-top:auto!important;margin-left:auto!important;margin-right:0!important;background:var(--button-bg)!important;color:var(--button-text)!important;border-radius:999px!important;font-size:.9rem!important;padding:.82rem 1.25rem!important}
#beneficios .site-shell{text-align:center!important}
#beneficios .grid{justify-content:center!important;align-items:stretch!important}
#beneficios .professional-card{text-align:left!important;min-height:232px!important;display:flex!important;flex-direction:column!important;justify-content:flex-start!important}
@media(max-width:1100px){.lp-footer-shell{grid-template-columns:1fr 1fr!important;gap:34px!important}.projects-lot-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:767px){.lp-footer{padding-top:34px!important}.lp-footer-shell{width:min(100% - 30px,360px)!important;display:grid!important;grid-template-columns:1fr!important;gap:24px!important;text-align:center!important;justify-items:center!important}.lp-footer-brand,.lp-footer-contact,.lp-footer-column{text-align:center!important}.lp-footer-logo{height:54px!important;max-width:178px!important;margin:0 auto 16px!important;border-radius:8px!important;padding:7px 12px!important}.lp-footer-socials{justify-content:center!important;margin-top:18px!important}.lp-footer-accordion{width:100%!important}.lp-footer-accordion summary{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;margin:0!important;cursor:pointer!important}.lp-footer-accordion summary i{display:inline-block!important;font-size:.72rem!important;transition:transform .2s ease!important}.lp-footer-accordion[open] summary i{transform:rotate(180deg)!important}.lp-footer-accordion:not([open]) .lp-footer-list{display:none!important}.lp-footer-accordion[open] .lp-footer-list{display:grid!important;margin-top:14px!important;gap:10px!important}.lp-footer-list a{font-size:.86rem!important}.lp-footer-bottom{margin-top:8px!important;font-size:.76rem!important;line-height:1.45!important}.projects-lot-grid{grid-template-columns:1fr!important;width:min(100%,390px)!important;gap:18px!important}.lot-project-card{max-width:360px!important}.lot-project-media{height:176px!important}.lot-project-body{min-height:214px!important;padding:18px 16px 16px!important}.lot-project-body h3{font-size:1.12rem!important}.lot-project-zone,.lot-project-features{font-size:.8rem!important}.lot-project-price{font-size:.78rem!important;margin-inline:auto!important}#beneficios .professional-card{text-align:center!important;align-items:center!important}}