* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --saenz-blue: #2a63ac;
    --saenz-blue-dark: #194f90;
    --saenz-ink: #171717;
    --saenz-muted: #e7eaef;
    --saenz-card: rgba(245, 245, 245, 0.95);
    --radius-lg: 34px;
    --radius-md: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--saenz-ink);
    background: #f3f4f6;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.25s ease;
}

.header-container {
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 0;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.25s ease;
}

.site-header.is-scrolled {
    top: 10px;
}

.site-header.is-scrolled .header-container {
    width: min(1300px, calc(100% - 32px));
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 36px rgba(11, 40, 79, 0.14);
    padding: 12px 26px;
}

.brand-logo {
    width: 190px;
    height: auto;
    transition: width 0.25s ease;
}

.site-header.is-scrolled .brand-logo {
    width: 168px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.site-nav a {
    text-decoration: none;
    color: #20242b;
    font-weight: 500;
    font-size: 19px;
}

.site-nav a:hover {
    color: var(--saenz-blue);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #cad2dd;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1201;
}

.menu-toggle-bar {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #204a84;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 108px 18px 0 28px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/hero-background.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1300px, 100%);
    display: grid;
    grid-template-columns: 1.02fr 0.88fr 0.98fr;
    align-items: center;
    gap: 12px;
    min-height: calc(100vh - 136px);
}

.pre-venta-badge {
    position: absolute;
    top: 22px;
    left: min(0px, calc((1300px - 100vw) / 2));
    background: var(--saenz-blue);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 32px;
    padding: 14px 44px;
    border-radius: 0 22px 22px 0;
}

.hero-copy {
    padding-top: 0;
    align-self: center;
}

.hero-copy h1 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -0.8px;
}

.hero-copy h1 span {
    color: var(--saenz-blue);
    font-weight: 800;
}

.hero-copy p {
    margin-top: 14px;
    font-size: clamp(18px, 1.7vw, 30px);
    line-height: 1.15;
}

.hero-copy p strong {
    font-weight: 800;
}

.hero-cta {
    margin-top: 22px;
    display: inline-block;
    background: var(--saenz-blue);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: clamp(20px, 1.45vw, 30px);
    font-weight: 600;
    padding: 12px 26px;
}

.hero-cta:hover {
    background: var(--saenz-blue-dark);
}

.hero-building-wrap {
    align-self: stretch;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-building {
    max-height: 67vh;
    width: auto;
    margin-inline: auto;
    margin-bottom: 0;
}

.hero-form-card {
    width: 100%;
    max-width: 350px;
    justify-self: end;
    margin-left: 22px;
    background: var(--saenz-card);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: 0 20px 38px rgba(23, 39, 62, 0.18);
}

.hero-form-card h2 {
    font-size: clamp(26px, 2vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-grid.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field-group input,
.field-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #787878;
    background: transparent;
    padding: 6px 4px 8px;
    font-size: clamp(15px, 1.05vw, 20px);
    font-family: 'Poppins', Arial, sans-serif;
    color: #222;
    outline: none;
}

.field-group textarea {
    min-height: 52px;
    resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #6b6b6b;
}

.btn-submit {
    align-self: center;
    border: none;
    border-radius: 16px;
    background: var(--saenz-blue);
    color: #fff;
    font-weight: 700;
    font-size: clamp(16px, 1vw, 20px);
    padding: 11px 32px;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--saenz-blue-dark);
}

.brochure-section {
    position: relative;
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
}

.brochure-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.52;
    background-image: url('img/texture-brochure.webp');
    background-size: cover;
    background-position: center;
}

.brochure-container {
    position: relative;
    z-index: 2;
    width: min(1300px, 100%);
    margin: 0 auto;
}

.brochure-container h2 {
    color: var(--saenz-blue);
    font-size: clamp(40px, 5.6vw, 88px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 22px;
    -webkit-text-stroke: 1px var(--saenz-blue-dark);
    text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.98),
    2px 2px 0 rgba(255, 255, 255, 0.98),
    3px 3px 0 rgba(255, 255, 255, 0.98),
    4px 4px 0 rgba(255, 255, 255, 0.98),
    5px 5px 0 rgba(255, 255, 255, 0.98),
    6px 6px 0 var(--saenz-blue-dark),
    7px 7px 0 var(--saenz-blue-dark);
}

.brochure-container p {
    font-size: clamp(16px, 2.2vw, 25px);
    line-height: 1.25;
    max-width: 1062px;
    margin: 0 auto;
}

.brochure-container p strong {
    font-weight: 800;
}

.brochure-highlight {
    color: var(--saenz-blue);
    font-weight: 700;
}

.brochure-btn {
    display: inline-block;
    margin-top: 38px;
    border: 4px solid var(--saenz-blue);
    color: var(--saenz-blue);
    text-decoration: none;
    border-radius: 20px;
    padding: 16px 46px;
    font-size: clamp(36px, 3vw, 68px);
    font-weight: 500;
}

.brochure-btn:hover {
    background: var(--saenz-blue);
    color: #fff;
}

.caracteristicas-section {
    background-image: url('img/fondo-caracteristicas.webp');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f8fbff;
    padding: 86px 20px;
}

.caracteristicas-container {
    width: min(1300px, 100%);
    margin: 0 auto;
}

.caracteristicas-container h2 {
    text-align: center;
    font-size: clamp(44px, 5vw, 96px);
    margin-bottom: 46px;
    font-weight: 800;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.caracteristica-item {
    text-align: center;
}

.caracteristica-icon {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: #fff;
    display: grid;
    place-items: center;
    padding: 0;
}

.caracteristica-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.caracteristica-item .line-1,
.caracteristica-item .line-2 {
    font-size: clamp(23px, 1.65vw, 34px);
    line-height: 1.15;
}

.areas-stack-texture {
    background-image: url('img/texture-brochure.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.areas-comunes-section {
    background: transparent;
    border-top: none;
    padding: 66px 20px;
}

#areas-internas {
    padding-bottom: 0;
}

.areas-comunes-container {
    width: min(1300px, 100%);
    margin: 0 auto;
    padding-bottom: 26px;
}

.areas-comunes-header {
    text-align: center;
    margin-bottom: 26px;
}

.areas-comunes-header h3 {
    color: var(--saenz-blue);
    font-size: clamp(34px, 3vw, 54px);
    margin-bottom: 10px;
}

.areas-comunes-header p {
    font-size: clamp(18px, 1.35vw, 24px);
}

.areas-comunes-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 960px) auto;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.ac-slide {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.ac-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--saenz-blue);
    color: var(--saenz-blue);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ac-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
}

.ac-arrow:hover {
    background: var(--saenz-blue);
    color: #fff;
}

.ac-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #dfe6ef;
    box-shadow: 0 18px 40px rgba(24, 46, 80, 0.14);
    cursor: zoom-in;
}

.ac-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 560px;
    max-height: 76vh;
    object-fit: cover;
}

.ac-fullscreen {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: rgba(20, 39, 71, 0.72);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.ac-caption {
    position: static;
    background: transparent;
    color: var(--saenz-blue);
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
}

.ac-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 24, 0.92);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 22px;
}

.ac-modal-content {
    max-width: min(1300px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ac-modal-image {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 16px;
    object-fit: contain;
}

.ac-modal-caption {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 999px;
}

.ac-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.ac-modal-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}

.ac-modal-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
}

.tipologias-section {
    position: relative;
    border-top: none;
    padding: 0;
    background: #fff;
    overflow: visible;
}

.tipologias-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
}

.tipologias-stage {
    position: relative;
    width: 100%;
    min-height: 0;
}

.tp-image-wrap {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

.tp-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.tp-arrow {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.95);
    color: #fff;
    background: rgba(21, 73, 132, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.tp-arrow svg {
    display: block;
    width: 22px;
    height: 22px;
}

.tp-arrow:hover {
    background: rgba(11, 59, 114, 0.98);
    transform: translateY(-50%);
}

.tp-prev {
    left: -26px;
}

.tp-next {
    right: -26px;
}

.tipologias-stage::before,
.tipologias-stage::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(28px, 3vw, 54px);
    pointer-events: none;
    z-index: 2;
}

.tipologias-stage::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.tipologias-stage::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.placeholder-section {
    background: transparent;
    border-top: 1px solid #dde5ef;
    padding: 66px 20px;
}

.placeholder-container {
    width: min(1300px, 100%);
    margin: 0 auto;
    text-align: center;
}

.placeholder-container h3 {
    color: var(--saenz-blue);
    font-size: clamp(34px, 3vw, 54px);
    margin-bottom: 10px;
}

.placeholder-container p {
    font-size: clamp(18px, 1.35vw, 24px);
}

.ubicacion-section {
    background: #fff;
    border-top: none;
    padding: 36px 20px 66px;
}

.ubicacion-container {
    width: min(1300px, 100%);
    margin: 0 auto;
    text-align: center;
}

.ubicacion-container h3 {
    color: var(--saenz-blue);
    font-size: clamp(34px, 3vw, 54px);
    margin-bottom: 18px;
}

.ubicacion-image-wrap {
    position: relative;
    width: min(1160px, 100%);
    margin: 0 auto;
    overflow: visible;
}

.ubicacion-image {
    width: 100%;
    height: auto;
    max-height: min(72vh, 760px);
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

.ubicacion-fullscreen {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: rgba(20, 39, 71, 0.72);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.ubicacion-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 24, 0.92);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.ubicacion-modal-image {
    max-width: min(1320px, 100%);
    max-height: 88vh;
    object-fit: contain;
}

.ubicacion-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.ubicacion-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.ubicacion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 12px 22px;
    border-radius: 14px;
    border: 2px solid var(--saenz-blue);
    background: var(--saenz-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(14px, 1vw, 18px);
    transition: all 0.2s ease;
}

.ubicacion-btn:hover {
    background: #fff;
    color: var(--saenz-blue);
}

.site-footer {
    position: relative;
    background: linear-gradient(135deg, #1e4f90 0%, #2a63ac 45%, #174a86 100%);
    color: #fff;
    padding: 26px 20px;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: auto -20% -65% -20%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(260px, 1.2fr) auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(12px, 2.2vw, 30px);
    text-align: center;
}

.footer-brand-block {
    min-height: 72px;
    display: grid;
    place-items: center;
}

.footer-divider {
    width: 1px;
    height: 66px;
    background: rgba(255, 255, 255, 0.34);
}

.footer-center {
    display: grid;
    justify-items: center;
}

.footer-logo {
    width: clamp(124px, 14vw, 190px);
    height: clamp(36px, 4.2vw, 58px);
    object-fit: contain;
    margin: 0 auto;
}

.footer-logo-center {
    width: clamp(110px, 11vw, 150px);
    height: clamp(30px, 3.6vw, 44px);
}

.footer-logo-edge {
    width: clamp(142px, 14vw, 205px);
    height: clamp(40px, 4.4vw, 62px);
    filter: brightness(0) invert(1);
}

.footer-logo-lugano {
    filter: brightness(0) invert(1);
}

.footer-logo-saenz {
    filter: brightness(0) invert(1);
}

.footer-address {
    font-size: clamp(13px, 0.95vw, 16px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.6px;
}

.footer-address-row {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    opacity: 0.96;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mensaje-exito-popup {
    width: min(520px, calc(100% - 30px));
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .site-nav {
        gap: 24px;
    }

    .site-nav a {
        font-size: 16px;
    }

    .hero-inner {
        grid-template-columns: 1fr 0.9fr 1fr;
    }

    .pre-venta-badge {
        font-size: 25px;
        padding: 14px 36px;
    }
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        background: linear-gradient(165deg, #2a63ac 0%, #1d4f90 100%);
        padding: 28px;
        opacity: 0;
        pointer-events: none;
        transform: scale(1.02);
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 1200;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    .site-nav a {
        color: #fff;
        font-size: clamp(22px, 4vw, 34px);
        font-weight: 600;
        letter-spacing: 0.4px;
    }

    .site-nav a:hover {
        color: #d8e8ff;
    }

    .hero {
        padding-top: 116px;
    }

    .caracteristicas-section {
        background-attachment: scroll;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-form-card {
        order: 2;
        justify-self: center;
        margin-left: 0;
    }

    .pre-venta-badge {
        position: static;
        order: 0;
        width: fit-content;
        border-radius: 12px;
        justify-self: center;
        margin: 0 auto;
        font-size: 18px;
        letter-spacing: 0.6px;
        padding: 8px 22px;
    }

    .hero-copy {
        order: 1;
        padding-top: 0;
        text-align: center;
    }

    .hero-building-wrap {
        order: 3;
    }

    .hero-building {
        max-height: 56vh;
    }

    .field-grid.two-cols {
        grid-template-columns: 1fr;
    }

    .caracteristicas-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .areas-comunes-carousel {
        position: relative;
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }

    .tipologias-container {
        width: 100%;
        margin: 0;
    }

    .tipologias-stage {
        order: 1;
    }

    .tp-prev,
    .tp-next {
        top: auto;
        bottom: 12px;
        transform: none;
    }

    .tp-prev {
        left: 12px;
    }

    .tp-next {
        right: 12px;
    }

    .tp-arrow {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }

    .tp-arrow svg {
        width: 18px;
        height: 18px;
    }

    .tp-arrow:hover {
        transform: none;
    }

    .tipologias-stage::before,
    .tipologias-stage::after {
        width: 18px;
    }

    .ac-arrow {
        display: flex;
        width: 44px;
        height: 44px;
        border-width: 2px;
        position: absolute;
        top: 46%;
        transform: translateY(-50%);
        z-index: 3;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(3px);
    }

    .ac-prev {
        left: -12px;
    }

    .ac-next {
        right: -12px;
    }

    .ac-arrow svg {
        width: 18px;
        height: 18px;
    }

    .ac-image {
        aspect-ratio: 4 / 3;
        min-height: clamp(280px, 56vw, 520px);
        max-height: none;
    }

    .ac-caption {
        font-size: 15px;
    }

    .ac-modal {
        gap: 10px;
        padding: 58px 10px 16px;
        flex-wrap: wrap;
    }

    .ac-modal-content {
        order: -1;
        width: 100%;
    }

    .ac-modal-arrow {
        width: 48px;
        height: 48px;
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-divider {
        display: none;
    }

    .footer-brand-block {
        min-height: 0;
    }

    .footer-address-row {
        grid-column: auto;
        margin-top: 0;
        padding-top: 8px;
    }
}

@media (max-width: 700px) {
    .header-container {
        width: 100%;
        padding: 10px 14px;
    }

    .site-header.is-scrolled .header-container {
        width: calc(100% - 14px);
        padding: 8px 12px;
    }

    .brand-logo {
        width: 130px;
    }

    .hero {
        padding: 100px 12px 34px;
    }

    .hero-form-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .btn-submit {
        width: 100%;
    }

    .brochure-section,
    .caracteristicas-section,
    .tipologias-section,
    .ubicacion-section,
    .placeholder-section {
        padding: 50px 14px;
    }

    .tipologias-section {
        padding: 0;
    }

    .ubicacion-section {
        padding: 0 14px 50px;
    }

    .ubicacion-btn {
        width: 100%;
    }

    .ubicacion-image {
        max-height: none;
    }

    .ubicacion-fullscreen {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .brochure-btn {
        width: auto;
        min-width: 0;
        font-size: clamp(22px, 7vw, 34px);
        border-width: 3px;
        padding: 10px 22px;
        border-radius: 14px;
    }

    .brochure-container h2 {
        -webkit-text-stroke: 0;
        text-shadow: none;
    }

    .caracteristicas-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .caracteristica-icon {
        width: 74px;
        height: 74px;
        margin-bottom: 10px;
        padding: 10px;
    }

    .caracteristica-item .line-1,
    .caracteristica-item .line-2 {
        font-size: clamp(14px, 3.2vw, 18px);
    }

    .footer-logo {
        width: 142px;
        height: 44px;
    }

    .footer-logo-center {
        width: 126px;
        height: 36px;
    }
}
