/* =============================================================================
 *  exclusive-2.css — Sistema de diseño Exclusive Tour Córdoba (2025)
 *  Marca: azul noche #141930 + acento champagne-gold #c5a572.
 *  Se carga DESPUÉS de bootstrap.min.css. Reemplaza style.css legacy.
 * ========================================================================== */

:root {
    --brand:        #141930;
    --brand-700:    #0d1124;
    --brand-600:    #1b2247;
    --brand-500:    #232c5a;
    --brand-400:    #39426e;
    --brand-rgb:    20, 25, 48;

    --accent:       #c5a572;
    --accent-600:   #b08d57;
    --accent-300:   #e0cfa8;
    --accent-rgb:   197, 165, 114;

    --ink:          #181b27;
    --muted:        #6b7280;
    --line:         #e7e9ef;
    --bg-soft:      #f6f7fa;
    --white:        #ffffff;

    --shadow-sm:    0 2px 10px rgba(20,25,48,.06);
    --shadow-md:    0 10px 30px rgba(20,25,48,.10);
    --shadow-lg:    0 22px 55px rgba(20,25,48,.18);
    --radius:       14px;
    --radius-sm:    10px;
    --container:    1180px;

    --bs-primary: var(--brand);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 78px;            /* compensa navbar fija */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -.01em; color: var(--brand); }
a { color: var(--brand-500); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-600); }
img { max-width: 100%; }
.container { max-width: var(--container); }

::selection { background: rgba(var(--accent-rgb), .3); }

.text-accent { color: var(--accent-600) !important; }
.bg-brand { background: var(--brand) !important; }

/* ---------- Botones ---------- */
.btn { border-radius: var(--radius-sm); font-weight: 700; letter-spacing: .01em; padding: .7rem 1.5rem; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-600); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(var(--brand-rgb), .35); }
.btn-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%); color: var(--brand-700); }
.btn-accent:hover { color: var(--brand-700); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(var(--accent-rgb), .45); filter: brightness(1.03); }
.btn-outline-brand { border: 1.5px solid var(--brand); color: var(--brand); background: transparent; }
.btn-outline-brand:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: #fff; color: var(--brand); }

/* ---------- Navbar ---------- */
.navbar.et-navbar {
    background: var(--brand) !important;
    box-shadow: 0 2px 18px rgba(0,0,0,.18);
    padding: .35rem 0;
    transition: background .25s ease, padding .25s ease;
}
.navbar.et-navbar .navbar-brand img { height: 64px; width: auto; transition: height .25s ease; }
.navbar.et-navbar.scrolled { padding: .15rem 0; background: var(--brand-700) !important; }
.navbar.et-navbar.scrolled .navbar-brand img { height: 50px; }
.navbar.et-navbar .nav-link {
    color: rgba(255,255,255,.86) !important;
    font-weight: 600; font-size: .92rem;
    text-transform: uppercase; letter-spacing: .04em;
    padding: .6rem 1rem !important; position: relative;
}
.navbar.et-navbar .nav-link::after {
    content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .35rem;
    height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
}
.navbar.et-navbar .nav-link:hover, .navbar.et-navbar .nav-link.active { color: #fff !important; }
.navbar.et-navbar .nav-link:hover::after, .navbar.et-navbar .nav-link.active::after { transform: scaleX(1); }
.navbar.et-navbar .navbar-toggler { border-color: rgba(255,255,255,.4); }
.navbar.et-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2.2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ---------- Hero (home) ---------- */
.et-hero {
    position: relative; min-height: 620px; display: flex; align-items: center;
    overflow: hidden; isolation: isolate; background: var(--brand-700);
    margin-top: -78px; padding-top: 78px;
}
.et-hero .hero-bg {
    position: absolute; inset: -2%; z-index: 0;
    background: var(--hero-bg, none) center/cover no-repeat; background-color: var(--brand-700);
    animation: etKenBurns 26s ease-in-out infinite alternate; will-change: transform;
}
.et-hero .hero-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(100deg, rgba(13,17,36,.92) 0%, rgba(13,17,36,.62) 45%, rgba(13,17,36,.30) 100%),
        radial-gradient(ellipse at 80% 90%, rgba(var(--accent-rgb),.20) 0%, transparent 55%);
}
.et-hero .hero-content { position: relative; z-index: 2; color: #fff; width: 100%; padding: 4rem 0; }
.et-hero .hero-kicker {
    display: inline-flex; align-items: center; gap: .55rem;
    background: rgba(var(--accent-rgb),.16); color: var(--accent-300);
    border: 1px solid rgba(var(--accent-rgb),.35);
    padding: .4rem 1.05rem; border-radius: 999px;
    font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    animation: etFadeUp .9s ease-out .1s both;
}
.et-hero h1 {
    color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.5rem); line-height: 1.08; margin: 1.2rem 0 1rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.35); animation: etFadeUp .9s ease-out .25s both;
}
.et-hero h1 .accent { color: var(--accent-300); }
.et-hero .hero-lead { font-size: 1.15rem; max-width: 520px; color: rgba(255,255,255,.85); margin-bottom: 2rem; animation: etFadeUp .9s ease-out .4s both; }
.et-hero .hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; animation: etFadeUp .9s ease-out .55s both; }
.et-hero::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-300) 50%, var(--accent) 100%);
    background-size: 200% 100%; animation: etBarShift 5s ease-in-out infinite;
}
@keyframes etKenBurns { 0% { transform: scale(1) translate(0,0);} 50% { transform: scale(1.07) translate(-.5%,-.3%);} 100% { transform: scale(1.12) translate(.4%,.2%);} }
@keyframes etBarShift { 0%,100% { background-position: 0 0;} 50% { background-position: 100% 0;} }
@keyframes etFadeUp { from { opacity: 0; transform: translateY(22px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Quick search (hero card) ---------- */
.quick-search {
    background: #fff; border-radius: 18px; padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-lg); max-width: 430px; margin-left: auto; position: relative; overflow: hidden;
    animation: etFadeUp 1s ease-out .55s both;
}
.quick-search::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-600)); }
.quick-search .qs-title { font-size: 1.15rem; font-weight: 800; color: var(--brand); margin-bottom: .25rem; }
.quick-search .qs-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.1rem; }
.quick-search .qs-field { margin-bottom: .85rem; }
.quick-search .qs-label { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand-500); margin-bottom: .3rem; display: flex; align-items: center; gap: .4rem; }
.quick-search .qs-label i { color: var(--accent-600); }
.quick-search select, .quick-search .form-select, [id^="cnt-cbo-"] select {
    width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    padding: .65rem .8rem; font-size: .92rem; color: var(--ink); background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23141930' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .7rem center; background-size: 13px;
    appearance: none; -webkit-appearance: none; cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.quick-search select:focus { border-color: var(--accent-600); outline: none; box-shadow: 0 0 0 .2rem rgba(var(--accent-rgb),.18); }
.quick-search .qs-submit {
    width: 100%; margin-top: .5rem; border: none; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand) 100%); color: #fff;
    padding: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .9rem;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    box-shadow: 0 6px 18px rgba(var(--brand-rgb),.3); transition: transform .15s ease, box-shadow .15s ease;
}
.quick-search .qs-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(var(--brand-rgb),.45); }

/* ---------- Section headings ---------- */
.section { padding: 4rem 0; }
.section.alt { background: var(--bg-soft); }
.heading { text-align: center; margin-bottom: 2.6rem; }
.heading .kicker { display: inline-block; color: var(--accent-600); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: .5rem; }
.heading h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .6rem; }
.heading p { color: var(--muted); max-width: 620px; margin: 0 auto; }
.heading::after { content: ''; display: block; width: 64px; height: 3px; background: var(--accent); border-radius: 2px; margin: 1rem auto 0; }
.heading.light h2, .heading.light .kicker { color: #fff; }
.heading.light p { color: rgba(255,255,255,.8); }

/* ---------- Property cards (render server-side desde api.*.php) ---------- */
.prop-card {
    display: flex; flex-direction: column; height: 100%;
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    transition: transform .22s ease, box-shadow .22s ease; color: var(--ink);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--ink); }
.prop-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.prop-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.prop-card:hover .prop-media img { transform: scale(1.06); }
.prop-badge {
    position: absolute; top: .8rem; left: .8rem; z-index: 2;
    background: rgba(13,17,36,.85); color: #fff; backdrop-filter: blur(4px);
    padding: .3rem .8rem; border-radius: 999px; font-size: .74rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
}
.prop-price {
    position: absolute; bottom: .8rem; left: .8rem; z-index: 2;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%); color: var(--brand-700);
    padding: .4rem .9rem; border-radius: 999px; font-size: .95rem; font-weight: 800;
    box-shadow: 0 4px 14px rgba(var(--accent-rgb),.4);
}
.prop-body { padding: 1.1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.prop-type { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-600); margin-bottom: .25rem; }
.prop-title { font-size: 1.02rem; font-weight: 800; color: var(--brand); margin-bottom: .4rem; line-height: 1.3; }
.prop-loc { font-size: .85rem; color: var(--muted); margin-bottom: .8rem; display: flex; align-items: center; gap: .35rem; }
.prop-loc i { color: var(--accent-600); }
.prop-feats { list-style: none; display: flex; flex-wrap: wrap; gap: .9rem; margin: auto 0 0; padding: .8rem 0 0; border-top: 1px solid var(--line); font-size: .85rem; color: var(--brand-500); font-weight: 600; }
.prop-feats li { display: inline-flex; align-items: center; gap: .35rem; }
.prop-feats i { color: var(--accent-600); font-size: 1rem; }

/* skeleton loader */
.prop-skeleton { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 100%; }
.prop-skeleton .sk-media { aspect-ratio: 4/3; }
.prop-skeleton .sk-line { height: 12px; margin: .9rem 1.1rem; border-radius: 6px; }
.sk-media, .sk-line { background: linear-gradient(90deg, #eef0f4 25%, #f6f7fa 37%, #eef0f4 63%); background-size: 400% 100%; animation: etShimmer 1.4s ease infinite; }
@keyframes etShimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.empty-state i { font-size: 3rem; color: var(--accent-300); display: block; margin-bottom: 1rem; }

/* ---------- Service / feature cards ---------- */
.feature-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem 1.5rem; text-align: center; height: 100%;
    box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; color: var(--ink);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--ink); }
.feature-card .fc-icon {
    width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center; font-size: 2rem;
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand) 100%); color: var(--accent-300);
    box-shadow: 0 8px 20px rgba(var(--brand-rgb),.28);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
    position: relative; padding: 3.5rem 0; text-align: center; color: #fff;
    background: linear-gradient(120deg, var(--brand-700) 0%, var(--brand) 55%, var(--brand-500) 100%);
    margin-bottom: 3rem; overflow: hidden; isolation: isolate;
}
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 85% 20%, rgba(var(--accent-rgb),.22) 0%, transparent 55%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero .kicker { color: var(--accent-300); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .6rem 0 .5rem; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto; }
.page-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-300), var(--accent)); }

/* ---------- Detalle ---------- */
.detalle-carousel .carousel-item img { width: 100%; height: 540px; object-fit: cover; }
.detalle-carousel .carousel-item iframe { width: 100%; height: 540px; border: 0; }
.detalle-carousel { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.detalle-carousel .carousel-control-prev-icon, .detalle-carousel .carousel-control-next-icon { background-color: rgba(13,17,36,.55); border-radius: 50%; padding: 1.3rem; background-size: 50%; }
.spec-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spec-list li:last-child { border-bottom: none; }
.spec-list li .k { color: var(--muted); display: inline-flex; align-items: center; gap: .5rem; }
.spec-list li .k i { color: var(--accent-600); }
.spec-list li .v { font-weight: 700; color: var(--brand); }
.amenity-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: .5rem .9rem; }
.amenity-list li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--ink); }
.amenity-list li i { color: var(--accent-600); }
.price-tag { display: inline-flex; align-items: baseline; gap: .5rem; background: linear-gradient(135deg, var(--brand-500), var(--brand)); color: #fff; padding: .7rem 1.3rem; border-radius: var(--radius-sm); font-size: 1.6rem; font-weight: 800; box-shadow: var(--shadow-sm); }
.contact-sidebar { position: sticky; top: 96px; }
.detalle-map iframe { width: 100%; height: 420px; border: 0; border-radius: var(--radius); }

/* ---------- Contact form propio ---------- */
.et-form .form-label { font-weight: 700; font-size: .85rem; color: var(--brand-500); margin-bottom: .3rem; }
.et-form .form-label .req { color: var(--accent-600); }
.et-form .form-control {
    border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .7rem .9rem; font-size: .95rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.et-form .form-control:focus { border-color: var(--accent-600); box-shadow: 0 0 0 .2rem rgba(var(--accent-rgb),.16); }
.et-form textarea.form-control { min-height: 120px; resize: vertical; }
.et-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.et-form .btn-submit {
    width: 100%; border: none; border-radius: var(--radius-sm); padding: .9rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%); color: var(--brand-700);
    font-weight: 800; text-transform: uppercase; letter-spacing: .04em; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    box-shadow: 0 6px 18px rgba(var(--accent-rgb),.4); transition: transform .15s ease, box-shadow .15s ease;
}
.et-form .btn-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(var(--accent-rgb),.55); }
.et-form .btn-submit:disabled { opacity: .7; cursor: wait; }
.et-feedback { margin-top: 1rem; padding: .85rem 1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem; text-align: center; }
.et-feedback.ok { background: rgba(40,167,69,.12); color: #1e7e34; border: 1px solid rgba(40,167,69,.3); }
.et-feedback.err { background: rgba(220,53,69,.1); color: #b71d2b; border: 1px solid rgba(220,53,69,.3); }
.spinner-mini { width: 16px; height: 16px; border: 2px solid rgba(20,25,48,.35); border-top-color: var(--brand-700); border-radius: 50%; animation: etSpin .8s linear infinite; display: inline-block; }
@keyframes etSpin { to { transform: rotate(360deg); } }

/* ---------- WhatsApp FAB ---------- */
.div-flotante, .div-flotante-mobile { display: none !important; }
.wa-fab {
    position: fixed; bottom: 26px; right: 26px; width: 62px; height: 62px; z-index: 9999;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 1.9rem;
    box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.18);
    animation: etWaBob 3s ease-in-out infinite; transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.wa-fab:hover { transform: scale(1.1) rotate(-6deg); color: #fff; animation-play-state: paused; }
.wa-fab::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: -1; animation: etWaPulse 2.4s ease-out infinite; }
@keyframes etWaPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes etWaBob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }

/* ---------- Footer ---------- */
.et-footer { background: var(--brand-700); color: rgba(255,255,255,.72); padding: 3rem 0 1.5rem; }
.et-footer h5 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; }
.et-footer a { color: rgba(255,255,255,.72); }
.et-footer a:hover { color: var(--accent-300); }
.et-footer .ft-contact li { display: flex; gap: .65rem; margin-bottom: .7rem; font-size: .9rem; align-items: flex-start; }
.et-footer .ft-contact li i { color: var(--accent-300); margin-top: .15rem; }
.et-footer .social a {
    display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    background: rgba(255,255,255,.08); border-radius: 50%; color: #fff; margin-right: .5rem; font-size: 1.05rem;
    transition: background .15s ease, transform .15s ease;
}
.et-footer .social a:hover { background: var(--accent-600); color: var(--brand-700); transform: translateY(-3px); }
.et-footer .ft-members img { background: #fff; border-radius: 8px; padding: 6px; max-height: 64px; margin: 0 .4rem .6rem 0; }
.et-footer .ft-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.2rem; font-size: .82rem; text-align: center; }

/* ---------- Animaciones on-scroll ---------- */
[data-animate] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease-out, transform .6s ease-out; }
[data-animate].in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    [data-animate] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    body { padding-top: 70px; }
    .navbar.et-navbar { background: var(--brand) !important; }
    .navbar.et-navbar .navbar-collapse { background: var(--brand-700); border-radius: var(--radius-sm); margin-top: .5rem; padding: .5rem; }
    .et-hero { min-height: auto; margin-top: -70px; padding-top: 70px; }
    .et-hero .hero-content { padding: 3rem 0; }
    .quick-search { margin: 2rem auto 0; max-width: 100%; }
    .contact-sidebar { position: static; }
    .detalle-carousel .carousel-item img, .detalle-carousel .carousel-item iframe { height: 300px; }
}
@media (max-width: 575.98px) {
    .section { padding: 2.6rem 0; }
    .price-tag { font-size: 1.3rem; }
    .wa-fab { width: 54px; height: 54px; font-size: 1.6rem; bottom: 18px; right: 18px; }
}
