/* Hotsite público — one page */
:root {
    --hs-primary: #8B0000;
    --hs-dark: #121212;
    --hs-font: 'Inter Tight', sans-serif;
    --hs-heading-font: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

.hotsite-body {
    margin: 0;
    font-family: var(--hs-font);
    color: var(--hs-dark);
    background: #fff;
    line-height: 1.6;
}

.hs-draft-banner {
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 0.65rem 1rem;
    background: #8B0000;
    color: #fff;
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.4;
}

.hs-draft-banner__url {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    opacity: 0.9;
    word-break: break-all;
}

.hs-container {
    width: min(1140px, 100% - 2rem);
    margin-inline: auto;
}

.hs-container--narrow { max-width: 760px; }

/* Header */
.hs-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hs-header__wrap {
    position: relative;
}

.hs-header__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.15rem 0 1rem;
    text-align: center;
}

.hs-header__brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0 2.75rem 0;
}

.hs-header__rule {
    display: block;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    margin-left: calc(50% - 50vw);
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.hs-header__nav-bar {
    width: 100%;
}

.hs-header__nav-bar .hs-container {
    position: relative;
}

.hs-header__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 1.5rem;
    width: 100%;
    padding: 0.75rem 0;
}

.hs-header__brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.35rem 0;
    white-space: nowrap;
    max-width: 100%;
}

.hs-header__nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.35rem 0;
    white-space: nowrap;
}

.hs-header__nav a:hover { color: var(--hs-primary); }

.hs-header__logo {
    display: block;
    max-width: min(240px, 72vw);
    max-height: 76px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.hs-header__meta {
    margin: 0;
    font-family: var(--hs-heading-font);
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #777;
    line-height: 1.4;
    max-width: min(520px, 100%);
}

.hs-header__name {
    color: #666;
}

.hs-header__creci {
    font-weight: 500;
    color: #999;
}

.hs-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    top: 0.85rem;
    right: 0;
    z-index: 2;
}

.hs-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hs-dark);
    border-radius: 1px;
}

@media (max-width: 768px) {
    .hs-header__toggle { display: flex; }

    .hs-header__inner {
        padding-top: 0.85rem;
        padding-bottom: 0.75rem;
    }

    .hs-header__brand-block {
        padding-inline: 2.5rem;
    }

    .hs-header__meta {
        font-size: 1rem;
    }

    .hs-header__rule {
        display: none;
    }

    .hs-header:has(.hs-header__nav.is-open) .hs-header__rule {
        display: block;
    }

    .hs-header__nav {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
        padding: 0.75rem 0;
    }

    .hs-header__nav.is-open { display: flex; }
}

/* Hero */
.hs-hero {
    position: relative;
    min-height: clamp(360px, 58vh, 620px);
    background: #222 center/cover no-repeat;
    display: flex;
    align-items: stretch;
    color: #fff;
    --hs-hero-overlay: 0.75;
}

.hs-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.62) 38%,
            rgba(0, 0, 0, 0.28) 72%,
            rgba(0, 0, 0, 0.08) 100%
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.42) 45%,
            rgba(0, 0, 0, 0.12) 75%,
            transparent 100%
        );
    opacity: calc(0.45 + (var(--hs-hero-overlay, 0.75) * 0.55));
}

.hs-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: inherit;
    padding: 3.5rem 0;
}

.hs-hero__text-panel {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 920px;
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
}

.hs-hero__text-panel::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.52) 55%,
        rgba(0, 0, 0, 0.28) 100%
    );
    pointer-events: none;
}

.hs-hero__title {
    display: block;
    margin: 0 0 0.85rem;
    font-family: var(--hs-heading-font);
    font-size: clamp(1.85rem, 4.8vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    text-align: left;
    color: #fff !important;
    max-width: 100%;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hs-hero__badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--hs-primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.hs-hero .hs-heading {
    color: #fff;
    margin: 0 0 0.5rem;
    font-family: var(--hs-heading-font);
    line-height: 1.15;
}

.hs-hero__subtitle {
    display: block;
    margin: 0;
    opacity: 0.95;
    font-size: 1.1rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Sections */
.hs-section {
    padding: 4rem 0;
}

.hs-section--alt {
    background: #f8f8f8;
}

.hs-section--contact {
    background: #f8f8f8;
    text-align: left;
}

.hs-contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .hs-contact-layout {
        grid-template-columns: 1fr;
    }
}

.hs-contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--hs-primary) 0%, #5c0000 100%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(139, 0, 0, 0.24);
}

.hs-contact-card__top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hs-contact-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.hs-contact-card__identity {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.hs-contact-card__name {
    display: block;
    font-family: var(--hs-heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.hs-contact-card__role {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
}

.hs-contact-card__details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1.1rem;
}

.hs-contact-card__detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hs-contact-card__label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.72);
}

.hs-contact-card__value {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    word-break: break-word;
}

.hs-contact-card__link {
    text-decoration: none;
}

.hs-contact-card__link:hover {
    color: #fff;
    text-decoration: underline;
}

.hs-contact-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.hs-contact-panel__lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #444;
    max-width: 36rem;
}

.hs-heading {
    font-family: var(--hs-heading-font);
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.hs-price {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
}

.hs-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.hs-stat {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.hs-section--alt .hs-stat { background: #fff; }

.hs-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-primary);
}

.hs-stat__label {
    font-size: 0.85rem;
    color: #666;
}

.hs-text {
    font-size: 1.05rem;
    color: #333;
}

/* Slideshow */
.hs-slideshow {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/10;
}

.hs-slideshow__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hs-slideshow__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.hs-slideshow__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hs-slideshow__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hs-slideshow__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--hs-dark);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.hs-slideshow__nav--prev { left: 12px; }
.hs-slideshow__nav--next { right: 12px; }

.hs-slideshow__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hs-slideshow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 0;
}

.hs-slideshow__dot.is-active { background: #fff; }

/* Video */
.hs-video iframe,
.hs-video video {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
    background: #000;
}

/* Features */
.hs-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.hs-features li {
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 10px;
    border-left: 3px solid var(--hs-primary);
    font-weight: 500;
}

.hs-section--alt .hs-features li { background: #fff; }

.hs-nearby {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hs-nearby li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Units */
.hs-units {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.hs-unit {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.hs-unit__area { font-weight: 600; }
.hs-unit__price { color: var(--hs-primary); font-weight: 700; }

/* Progress */
.hs-progress { margin-bottom: 1rem; }
.hs-progress__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}
.hs-progress__bar {
    height: 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 999px;
    overflow: hidden;
}
.hs-progress__bar span {
    display: block;
    height: 100%;
    background: var(--hs-primary);
    border-radius: 999px;
    transition: width 0.4s ease;
}

/* Map */
.hs-section--map {
    padding-bottom: 0;
}

.hs-map-wrap {
    width: 100%;
    margin-top: 0.5rem;
}

.hs-map {
    height: clamp(420px, 52vh, 560px);
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: #e8e8e8;
}

.hs-map-address {
    margin: 0 0 1rem;
    color: #555;
}

/* Contact */
.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hs-btn--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.hs-btn--whatsapp:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Footer */
.hs-footer {
    background: var(--hs-dark);
    color: #ccc;
    padding-top: 3rem;
}

.hs-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto auto;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .hs-footer__grid { grid-template-columns: 1fr; }
}

.hs-footer__lead {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 640px) {
    .hs-footer__lead {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.hs-footer__brand {
    display: flex;
    align-items: flex-start;
    flex: 0 0 auto;
}

.hs-footer__contact {
    min-width: 0;
    align-self: start;
}

.hs-footer__logo {
    display: block;
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.hs-footer__contact-name {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.hs-footer__address {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #bbb;
    max-width: 360px;
}

.hs-footer__phones {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hs-footer__phones li {
    line-height: 1.4;
}

.hs-footer__phones a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    max-width: 100%;
    color: #ddd;
    text-decoration: none;
    font-size: 0.92rem;
}

.hs-footer__phones a:hover {
    color: #fff;
}

.hs-footer__phones svg,
.hs-footer__wa-icon {
    display: block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    max-height: 18px;
    flex: 0 0 18px;
    color: #25D366;
}

.hs-footer__brand strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
}

.hs-footer__brand span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.75;
}

.hs-footer__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.hs-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hs-footer__nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.hs-footer__nav a:hover { color: #fff; }

.hs-footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 140px;
}

.hs-footer__social-title {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.hs-footer__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hs-footer__social-list a {
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
}

.hs-footer__social-list a:hover {
    color: #fff;
}

.hs-footer__copy {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
    font-size: 0.8rem;
    text-align: center;
}

.hs-footer__copy a { color: #888; }

/* WhatsApp flutuante */
.hs-whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
}

.hs-whatsapp-float__bubble {
    position: relative;
    background: #fff;
    color: #777;
    padding: 0.55rem 2rem 0.55rem 0.85rem;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    font-size: 0.82rem;
    line-height: 1.35;
    animation: hs-wa-bubble-in 0.35s ease;
}

.hs-whatsapp-float__bubble.is-hidden {
    display: none;
}

.hs-whatsapp-float__close {
    position: absolute;
    top: 0.2rem;
    right: 0.35rem;
    border: none;
    background: none;
    color: #bbb;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0.15rem;
}

.hs-whatsapp-float__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hs-whatsapp-float__btn:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

.hs-whatsapp-float__btn svg {
    width: 28px;
    height: 28px;
}

@keyframes hs-wa-bubble-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .hs-whatsapp-float {
        right: 1rem;
        bottom: 1rem;
    }

    .hs-whatsapp-float__btn {
        width: 52px;
        height: 52px;
    }
}

html { scroll-behavior: smooth; }
