﻿/* Landing Home - CSS ordenado */

/* === Reserva === */

/* ======= Estilos Reserva / Card ======= */
.ux-reserva{
  min-height:100svh; display:grid; place-items:center;
  padding:64px 20px; background:#fff; color:#1f242b; position:relative; isolation:isolate;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.ux-reserva .elementor-container{max-width:1240px}
@media (min-width:1025px){
  .ux-reserva .elementor-container{display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center}
}
@media (max-width:1024px){
  .ux-reserva .elementor-container{display:block}
}

/* Texto izquierda */
.ux-reserva h1{font-weight:800; font-size:42px; line-height:1.1; color:#ff6a00; margin:0 0 20px}
.ux-reserva p{font-weight:400; font-size:18px; line-height:1.6; margin:0 0 22px}
.ux-reserva .bullets{display:grid; gap:12px; margin:10px 0 0}
.ux-reserva .bullets li{list-style:none; display:flex; gap:10px; align-items:flex-start; font-weight:600; font-size:15px}

/* Card derecha (contenedor del CF7) */
.ux-reserva .card{
  background:#f6f8fb; border:1px solid #e6ebf2; border-radius:22px;
  box-shadow:0 20px 60px rgba(9,18,32,.12); padding:36px;
}
.ux-reserva .card h3{margin:0 0 8px; font-weight:800; font-size:26px}
.ux-reserva .card .sub{margin:0 0 22px; color:#6a7280; font-weight:600; font-size:13px}

/*  Contact Form 7 dentro de la card  */
.ux-reserva .card .wpcf7 form{display:grid; gap:18px}
.ux-reserva .card .wpcf7 input[type="text"],
.ux-reserva .card .wpcf7 input[type="tel"],
.ux-reserva .card .wpcf7 input[type="email"],
.ux-reserva .card .wpcf7 textarea,
.ux-reserva .card .wpcf7 select{
  width:100%; padding:18px 14px 16px; border-radius:16px; border:1.5px solid #d8dfeb; background:#fff; outline:none;
  font-weight:600; font-size:15px; line-height:1; color:#1a2433;
  transition:border .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s cubic-bezier(.2,.8,.2,1);
}
.ux-reserva .card .wpcf7 input:focus,
.ux-reserva .card .wpcf7 textarea:focus,
.ux-reserva .card .wpcf7 select:focus{border-color:#b9c7e3; box-shadow:0 6px 24px rgba(25,62,110,.15)}
.ux-reserva .card .wpcf7 .wpcf7-not-valid{border-color:#f1a19b; background:#fff5f5}
.ux-reserva .card .wpcf7 .wpcf7-not-valid-tip{font-weight:600; font-size:12px; color:#b42318; margin-top:4px}

.ux-reserva .legal{margin:4px 0 0; color:#6b7382; font-weight:600; font-size:12px}

/* BotÃ³n naranja */
.ux-reserva .card .wpcf7 input[type="submit"]{
  position:relative; display:inline-grid; place-items:center; padding:14px 22px; border-radius:16px; border:0; cursor:pointer;
  background:#ff6a00; color:#fff; font-weight:800; font-size:15px;
  transition:transform .2s ease, box-shadow .2s ease; box-shadow:0 8px 24px rgba(255,106,0,.4);
}
.ux-reserva .card .wpcf7 input[type="submit"]:hover{transform:translateY(-2px)}
.ux-reserva .card .wpcf7 input[type="submit"]::after{
  content:""; position:absolute; inset:-2px; border-radius:inherit; pointer-events:none;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 15%, transparent 30%);
  transform:translateX(-120%); animation:shine 3.2s ease-in-out infinite;
}
@keyframes shine{50%{transform:translateX(0)} 100%{transform:translateX(120%)}}

/* Mensaje de respuesta CF7 */
.ux-reserva .card .wpcf7 form .wpcf7-response-output{
  margin:8px 0 0; border-radius:12px; border:1px solid #e6ebf2; background:#fff; color:#1f242b; padding:12px 14px;
}

:root{
  --ink:#ffffff;
  --muted:#FF6A14;
  --orange:#FFFFFF;
  --overlay: rgba(0,0,0,.1);
  --maxw:1240px;
  --brand-h:104px;
  --hdr-h:calc(var(--brand-h) + 12px);
  --radius:14px;
  --hdr-side-pad: 34px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:#FFFFFF;
  color:var(--ink);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}
/* === Header + Hero === */
.site-header{
  position:relative;
  height:var(--hdr-h);
  z-index:100;
  display:flex;
  align-items:center;
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-wrap{
  position:relative;
  z-index:101;
  width:100%;
  max-width:none;
  margin:0;
  padding:6px var(--hdr-side-pad);
  display:grid;
  gap:14px;
  grid-template-columns:auto 1fr auto;
  grid-template-areas:"brand nav social";
  align-items:center;
}
.brand{
  grid-area:brand;
  justify-self:start;
  margin-left:0;
  max-width:520px;
}
.brand img{
  height:var(--brand-h);
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}
.main-nav{
  grid-area:nav;
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:center;
  font-weight:700;
  letter-spacing:.02em;
}
.main-nav a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  padding:8px 0;
  position:relative;
}
.main-nav a:hover{ opacity:.85; }

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background:transparent;
  transition:background .2s ease;
}
.main-nav a:hover::after{
  background:var(--orange);
}
.main-nav .nav-ctas{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-left:12px;
}
.main-nav .btn-pill{
  background-color:#ff7c00;
  color:#fff;
  font-weight:700;
  border-radius:50px;
  padding:10px 26px;
  text-decoration:none;
  transition:opacity .25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}
.main-nav .btn-pill:hover{ opacity:.8; }

.social{
  grid-area:social;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:flex-end;
  justify-self:end;
  margin-left:0;
}
.social img{
  width:36px;
  height:36px;
  display:block;
  transition:opacity .25s ease, transform .2s ease;
}
.social img:hover{
  opacity:.85;
  transform:translateY(-1px);
}
.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .2s ease;
}
.nav-toggle img{
  width:24px;
  height:24px;
  display:block;
  object-fit:contain;
  filter:brightness(0) invert(1);
  transition:filter .25s ease;
}

.hero{
  position:relative;
  min-height:100svh;
  width:100%;
  display:grid;
  place-items:center;
  overflow:hidden;
  isolation:isolate;
  margin-top:calc(-1 * var(--hdr-h));
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
  z-index:0;
}
.hero-bg.active{ opacity:1; }

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.45) 100%),
    var(--overlay);
  pointer-events:none;
}

.hero-inner{
  width:100%;
  max-width:var(--maxw);
  padding:calc(var(--hdr-h) + 72px) 20px 40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
  position:relative;
  z-index:2;
  color:#fff;
}
.title{
  margin:0;
  line-height:1.08;
  font-weight:900;
  font-size:clamp(1.9rem, 4.5vw + .8rem, 4rem);
  text-wrap:balance;
  text-shadow:0 1px 2px rgba(0,0,0,.35);
}
.hero .title .white{ color:#fff !important; }
.hero .title .orange{ color:var(--orange) !important; }

.subtitle{
  margin:0;
  max-width:min(68ch, 92%);
  color:#f3f4f6;
  opacity:.95;
  font-size:clamp(.98rem, 1.5vw + .6rem, 1.125rem);
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:6px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  min-height:44px;
  background:#ff7c00;
  color:#fff;
  transition:opacity .25s ease;
  transform:none !important;
  box-shadow:none !important;
}
.btn:hover,
.btn:focus-visible{
  opacity:0.7;
  outline:none;
}
.btn:active{ opacity:0.65; }

.btn::before,
.btn::after{
  content:none !important;
  display:none !important;
}
.hero .actions .btn,
.hero .actions .btn:visited,
.hero .actions .btn:hover,
.hero .actions .btn:focus,
.hero .actions .btn:active{
  color:#fff !important;
  text-shadow:none !important;
  transform:none !important;
  box-shadow:none !important;
}

.mobile-nav{
  position:fixed;
  left:0;
  right:0;
  top:var(--hdr-h);
  background:rgba(8,8,8,.96);
  border-top:1px solid rgba(255,255,255,.08);
  transform:translateY(-12px);
  opacity:0;
  visibility:hidden;
  transition:transform .25s ease, opacity .25s ease, visibility .25s;
  z-index:999;
  backdrop-filter:saturate(110%) blur(6px);
}
.mobile-nav.open{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
}
.mobile-nav__inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 20px 18px;
  display:grid;
  gap:8px;
}
.mobile-nav a{
  color:#fff;
  text-decoration:none;
  padding:12px 0;
  font-weight:700;
  font-size:16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-nav a:last-child{ border-bottom:0; }

.mobile-nav .mobile-cta{
  background:#ff7c00;
  border-radius:999px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
}
.mobile-nav .mobile-cta:hover{ opacity:.85; }

@media (max-width:1024px){
  :root{ --brand-h:92px; }
  .main-nav{ gap:22px; }
  .brand{ max-width:420px; }
}

@media (max-width:900px){
  :root{ --brand-h:88px; }

  .main-nav{ display:none; }

  .nav-toggle{
    display:inline-flex;
    grid-area:toggle;
    justify-self:end;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible{
    background:rgba(255,255,255,.14);
    border-color:rgba(255,255,255,.55);
    box-shadow:0 0 14px rgba(255,255,255,.35);
    outline:none;
  }

  .nav-toggle:active{
    transform:scale(.96);
  }

  .nav-wrap{
    grid-template-columns:auto auto auto;
    grid-template-areas:"brand social toggle";
    justify-content:space-between;
    gap:10px;
    padding:6px 18px;
  }

  .brand{ max-width:60vw; }
}

@media (max-width:640px){
  :root{ --brand-h:84px; }

  .social{ gap:20px; }
  .social img{
    width:35px;
    height:35px;
  }
  .brand{ max-width:58vw; }
}

@media (max-width:420px){
  :root{ --brand-h:80px; }
  .title{ font-size:clamp(1.8rem, 7vw, 2.2rem); }
  .brand{ max-width:56vw; }
}
/* === Popup === */
.promo-popup{
  position:fixed;
  top:0; left:0; width:100vw; height:100vh;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.65);
  z-index:999999;
  padding:16px;
}
.promo-popup.is-open{ display:flex; }

.promo-popup__card{
  position:relative;
  width:min(720px, 95vw);
  max-height:90vh;
  border-radius:18px;
  overflow:hidden;
}
.promo-popup__img{
  display:block;
  width:100%;
  height:auto;
  max-height:90vh;
  object-fit:contain;
}
.promo-popup__close{
  position:absolute;
  top:10px; right:10px;
  background:transparent;
  border:0;
  width:auto;
  height:auto;
  line-height:1;
  color:#fff;
  font-size:32px;
  font-weight:900;
  cursor:pointer;
  padding:0;
}
:root{ --orange:#FF6A14; }

/* === Proyectos === */
.projects{
  position:relative;
  min-height:100dvh;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  padding:16px;
  background:#ffffff;
}
@media (max-width:1024px){
  .projects{ grid-template-columns:repeat(2, 1fr); min-height:auto; }
}
@media (max-width:640px){
  .projects{ grid-template-columns:1fr; } 
}

.projects-head{
  grid-column:1 / -1;
  display:flex; align-items:center; justify-content:center;
  padding:8px 0 18px;
}
.projects-head h2{
  margin:0;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  font-size:clamp(1.6rem, 2.6vw + .6rem, 2.6rem);
  color:#111;
  position:relative;
}
.projects-head h2::after{
  content:"";
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:-8px; width:72px; height:4px; border-radius:2px;
  background:var(--orange);
}

.tile{
  position:relative; display:block;
  height:calc(100dvh - 32px);
  border-radius:14px; overflow:hidden; isolation:isolate;
  color:#fff; text-decoration:none;
  background:none;
  box-shadow:0 0 15px rgba(0,0,0,.25);
  transition:transform .35s ease, box-shadow .35s ease, opacity .6s ease;

  contain: layout paint style;
  will-change: transform;
}

.tile::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--bg);   
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transition:opacity .6s ease;
  z-index:0;
}
.tile.loaded::before{
  opacity:1;
}

.tile-preload{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:1;
  pointer-events:none;
  z-index:0;
}

.tile::after{
  content:""; position:absolute; inset:0;
  border:3px solid rgba(255,255,255,.4);
  border-radius:14px; pointer-events:none;
  box-shadow:0 0 15px rgba(0,0,0,.25) inset;
}
.tile:hover{
  transform:translateY(-4px);
  box-shadow:0 0 99px rgba(0,0,0,.55), 0 10px 30px rgba(0,0,0,.35);
}
.tile:hover .tile-logo{
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.55));
}
@media (max-width:1024px){ .tile{ height:68vh; } }
@media (max-width:640px){ .tile{ height:54vh; } }

.tile-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.1) 20%, rgba(0,0,0,.3) 100%);
}
.tile-content{
  position:relative; z-index:2; height:100%;
  display:grid; place-items:center; text-align:center; padding:24px;
}
.tile-logo{
  max-width:min(60%, 420px);
  width:100%; height:auto; display:block;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform .35s ease, filter .35s ease;
}

.band{
  --band: var(--orange);
  position:absolute;
  left:0; right:0; bottom:0;
  height:44px;
  display:flex; align-items:center;
  padding:0 16px;
  background: var(--band);
  color:#fff;
  font-weight:700;
  letter-spacing:.02em;
  z-index:3;
  pointer-events:none;
  text-shadow:0 1px 2px rgba(0,0,0,.25);
  transition: filter .35s ease;
}
.tile:hover .band{
  filter: brightness(1.05);
}

.yt-modal[hidden]{ display:none; }
.yt-modal{ position:fixed; inset:0; z-index:90; display:grid; place-items:center; }
.yt-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.75); }
.yt-dialog{
  position:relative; width:min(1000px, 92vw); aspect-ratio:16/9;
  background:#000; border-radius:14px; overflow:hidden; z-index:1;
  box-shadow:0 10px 40px rgba(0,0,0,.5);
}
.yt-close{
  position:absolute; top:8px; right:8px; z-index:2;
  width:40px; height:40px; border-radius:10px; border:0; cursor:pointer;
  background:#fff; color:#111; font-size:24px; line-height:1; font-weight:700;
  opacity:.9;
}
.yt-close:hover{ opacity:1; }
.yt-frame-wrap, .yt-frame-wrap iframe{ width:100%; height:100%; display:block; }

.tile:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; }

.reveal{
  opacity:0;
  transform:translateY(24px) scale(.98);
  will-change:opacity, transform;
}
.reveal.in-view{
  opacity:1;
  transform:none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  .tile{ transition:none; }
}

/* === Mapas Interactivos === */
#lotes-ubicacion{
      --color-primary:#FF7915;
      --color-primary-2:#FF8F1C;
      --color-accent:#FFB20F;
      --color-dark:#2D2926;
      --color-dark-2:#3a3531;
      --color-light:#f7f3ee;
      --color-white:#ffffff;
      --color-border:#ded6cd;
      --shadow-main:0 18px 50px rgba(45,41,38,.18);
      --shadow-soft:0 10px 25px rgba(45,41,38,.10);

      width:100vw;
      margin-left:calc(50% - 50vw);
      margin-right:calc(50% - 50vw);
      padding:56px 18px;
      background:
        linear-gradient(180deg, #f6f1eb 0%, #efe6dc 100%);
      font-family:'Inter',system-ui,sans-serif;
      position:relative;
      overflow:hidden;
    }

    #lotes-ubicacion *{
      box-sizing:border-box;
    }

    #lotes-ubicacion .maps-shell{
      width:min(1320px, 100%);
      margin:0 auto;
    }

    #lotes-ubicacion .maps-header{
      text-align:center;
      max-width:980px;
      margin:0 auto 34px auto;
    }

    #lotes-ubicacion .maps-kicker{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:10px 20px;
      border-radius:999px;
      background:var(--color-dark);
      color:#fff;
      font-size:12px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:18px;
      box-shadow:var(--shadow-soft);
    }

    #lotes-ubicacion .maps-title{
      margin:0;
      color:var(--color-dark);
      font-size:clamp(30px,4.4vw,64px);
      line-height:1.02;
      font-weight:900;
      letter-spacing:-0.04em;
    }

    #lotes-ubicacion .maps-title .accent{
      color:var(--color-primary);
    }

    #lotes-ubicacion .maps-description{
      margin:18px auto 0 auto;
      max-width:850px;
      color:#5f5853;
      font-size:clamp(15px,1.25vw,20px);
      line-height:1.7;
      font-weight:500;
    }

    #lotes-ubicacion .maps-card{
      background:var(--color-white);
      border:1px solid var(--color-border);
      border-radius:28px;
      box-shadow:var(--shadow-main);
      overflow:hidden;
    }

    #lotes-ubicacion .maps-toolbar{
      background:
        linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
      padding:26px 28px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }

    #lotes-ubicacion .toolbar-copy h3{
      margin:0;
      color:#fff;
      font-size:clamp(20px,1.5vw,28px);
      font-weight:800;
      letter-spacing:-0.02em;
    }

    #lotes-ubicacion .toolbar-copy p{
      margin:8px 0 0 0;
      color:rgba(255,255,255,.78);
      font-size:15px;
      line-height:1.5;
      font-weight:500;
    }

    #lotes-ubicacion .switch-buttons{
      display:inline-flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      background:#ffffff;
      padding:8px;
      border-radius:999px;
      box-shadow:inset 0 0 0 1px rgba(45,41,38,.08);
    }

    #lotes-ubicacion .switch-buttons button{
      appearance:none;
      border:none;
      border-radius:999px;
      min-width:210px;
      padding:14px 20px;
      background:transparent;
      color:var(--color-dark);
      font-size:13px;
      font-weight:900;
      letter-spacing:.03em;
      cursor:pointer;
      transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
      white-space:nowrap;
    }

    #lotes-ubicacion .switch-buttons button:hover{
      transform:translateY(-1px);
      background:#f4eee8;
    }

    #lotes-ubicacion .switch-buttons button.active{
      background:linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
      color:#fff;
      box-shadow:0 10px 22px rgba(255,121,21,.28);
    }

    #lotes-ubicacion .switch-buttons button:focus-visible{
      outline:3px solid rgba(255,178,15,.45);
      outline-offset:2px;
    }

    #lotes-ubicacion .maps-stage{
      padding:28px;
      background:#fbf8f4;
    }

    #lotes-ubicacion .project-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }

    #lotes-ubicacion .project-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:44px;
      padding:10px 18px;
      border-radius:999px;
      background:linear-gradient(135deg, #fff6eb, #fff0d8);
      border:1px solid #f1d3b0;
      color:var(--color-dark);
      font-size:12px;
      font-weight:900;
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    #lotes-ubicacion .project-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--color-accent);
      box-shadow:0 0 0 6px rgba(255,178,15,.18);
      flex:0 0 auto;
    }

    #lotes-ubicacion .project-note{
      color:#736b64;
      font-size:14px;
      font-weight:600;
    }

    #lotes-ubicacion .map-frame{
      position:relative;
      min-height:720px;
      background:#ffffff;
      border:1px solid #e3dbd2;
      border-radius:24px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      padding:16px;
    }

    #lotes-ubicacion .map-panel{
      position:absolute;
      inset:16px;
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transform:translateY(8px);
      transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
      overflow:auto;
      border-radius:18px;
      background:#fff;
    }

    #lotes-ubicacion .map-panel.active{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translateY(0);
      z-index:2;
    }

    #lotes-ubicacion .map-panel-inner{
      min-height:100%;
      background:#fff;
      border-radius:18px;
    }

    /* Intenta forzar que el plugin ocupe bien el espacio */
    #lotes-ubicacion .map-panel iframe,
    #lotes-ubicacion .map-panel svg,
    #lotes-ubicacion .map-panel canvas,
    #lotes-ubicacion .map-panel img{
      max-width:100%;
    }

    @media (max-width: 1100px){
      #lotes-ubicacion .maps-toolbar{
        align-items:flex-start;
        flex-direction:column;
      }

      #lotes-ubicacion .switch-buttons{
        width:100%;
      }

      #lotes-ubicacion .switch-buttons button{
        flex:1 1 calc(50% - 10px);
        min-width:unset;
      }
    }

    @media (max-width: 768px){
      #lotes-ubicacion{
        padding:38px 12px;
      }

      #lotes-ubicacion .maps-toolbar{
        padding:20px 18px;
      }

      #lotes-ubicacion .maps-stage{
        padding:18px;
      }

      #lotes-ubicacion .switch-buttons{
        border-radius:20px;
      }

      #lotes-ubicacion .switch-buttons button{
        width:100%;
        flex:1 1 100%;
      }

      #lotes-ubicacion .map-frame{
        min-height:520px;
        padding:10px;
      }

      #lotes-ubicacion .map-panel{
        inset:10px;
      }
    }

*{box-sizing:border-box}
  html,body{margin:0;padding:0}
  body{
    margin:0;
    background:#f4eee7;
    color:#2D2926;
    font-family:system-ui,-apple-system,"Inter",Segoe UI,Roboto,Arial,sans-serif;
  }

  .fullbleed{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
  }

  .anchor-precios{
    display:block;
    height:0;
    position:relative;
    scroll-margin-top:var(--hdr-h, 80px);
  }

  .reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .8s ease, transform .8s ease;
    will-change:opacity,transform;
  }
  .reveal.is-visible{
    opacity:1;
    transform:none;
  }
  @media (prefers-reduced-motion: reduce){
    .reveal{transition:none; transform:none; opacity:1}
  }

  :root{
    --urbi-orange:#FF7915;
    --urbi-orange-2:#FF8F1C;
    --urbi-yellow:#FFB20F;
    --urbi-dark:#2D2926;
    --urbi-dark-2:#3b3632;
    --urbi-cream:#f4eee7;
    --urbi-card:#ffffff;
    --urbi-border:#ddd3c8;
    --urbi-text-soft:#6f6861;
    --shadow-main:0 20px 60px rgba(45,41,38,.14);
    --shadow-soft:0 10px 30px rgba(45,41,38,.09);
    --radius-xl:28px;
    --radius-lg:22px;
    --radius-md:16px;
  }

  /* === Precios === */
section.pricing-showcase{
    position:relative;
    padding:56px 18px;
    background:
      radial-gradient(circle at top right, rgba(255,178,15,.10), transparent 24%),
      linear-gradient(180deg, #f7f2ec 0%, #efe7dd 100%);
    overflow:hidden;
  }

  .pricing-shell{
    width:min(1320px,100%);
    margin:0 auto;
  }

  .pricing-header{
    max-width:980px;
    margin:0 auto 30px auto;
    text-align:center;
  }

  .pricing-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 20px;
    border-radius:999px;
    background:var(--urbi-dark);
    color:#fff;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:16px;
    box-shadow:var(--shadow-soft);
  }

  .pricing-title{
    margin:0;
    font-size:clamp(30px,4.3vw,62px);
    line-height:1.02;
    letter-spacing:-.04em;
    font-weight:900;
    color:var(--urbi-dark);
  }

  .pricing-title .accent{
    color:var(--urbi-orange);
  }

  .pricing-description{
    margin:16px auto 0 auto;
    max-width:850px;
    color:var(--urbi-text-soft);
    font-size:clamp(15px,1.2vw,19px);
    line-height:1.7;
    font-weight:500;
  }

  .pricing-card{
    background:var(--urbi-card);
    border:1px solid var(--urbi-border);
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-main);
    overflow:hidden;
  }

  .pricing-topbar{
    background:linear-gradient(135deg, var(--urbi-dark), var(--urbi-dark-2));
    padding:24px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
  }

  .pricing-topbar-copy h3{
    margin:0;
    color:#fff;
    font-size:clamp(20px,1.5vw,28px);
    font-weight:800;
    letter-spacing:-.02em;
  }

  .pricing-topbar-copy p{
    margin:8px 0 0 0;
    color:rgba(255,255,255,.76);
    font-size:15px;
    line-height:1.5;
    font-weight:500;
  }

  .project-tabs,
  .plan-tabs{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
  }

  .project-tabs{
    background:#fff;
    padding:8px;
    border-radius:999px;
    box-shadow:inset 0 0 0 1px rgba(45,41,38,.08);
  }

  .project-btn,
  .plan-btn{
    appearance:none;
    border:none;
    cursor:pointer;
    transition:all .25s ease;
    font-family:inherit;
  }

  .project-btn{
    min-width:180px;
    padding:14px 18px;
    border-radius:999px;
    background:transparent;
    color:var(--urbi-dark);
    font-size:13px;
    font-weight:900;
    letter-spacing:.03em;
    white-space:nowrap;
  }

  .project-btn:hover{
    background:#f5efe8;
    transform:translateY(-1px);
  }

  .project-btn.active{
    background:linear-gradient(135deg, var(--urbi-orange), var(--urbi-orange-2));
    color:#fff;
    box-shadow:0 10px 24px rgba(255,121,21,.24);
  }

  .pricing-body{
    padding:26px;
    background:#fbf8f4;
  }

  .selection-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:18px;
  }

  .selection-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-height:44px;
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(135deg, #fff6eb, #fff1dc);
    border:1px solid #efd3b3;
    color:var(--urbi-dark);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
  }

  .selection-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--urbi-yellow);
    box-shadow:0 0 0 6px rgba(255,178,15,.18);
    flex:0 0 auto;
  }

  .plan-tabs{
    padding:4px;
    background:#efe8df;
    border-radius:999px;
  }

  .plan-btn{
    padding:12px 16px;
    border-radius:999px;
    background:transparent;
    color:var(--urbi-dark);
    font-size:13px;
    font-weight:900;
    letter-spacing:.03em;
    min-width:140px;
  }

  .plan-btn:hover{
    background:#e7ded4;
  }

  .plan-btn.active{
    background:var(--urbi-dark);
    color:#fff;
    box-shadow:0 8px 20px rgba(45,41,38,.18);
  }

  .pricing-grid{
    display:grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(420px, 1.35fr);
    gap:20px;
    align-items:stretch;
  }

  .info-panel{
    background:linear-gradient(180deg, #fff 0%, #fcf8f3 100%);
    border:1px solid var(--urbi-border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-soft);
    padding:28px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:100%;
  }

  .info-top .mini-label{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:7px 12px;
    border-radius:999px;
    background:#2D2926;
    color:#fff;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:14px;
  }

  .info-title{
    margin:0;
    color:var(--urbi-dark);
    font-size:clamp(28px,2.7vw,44px);
    line-height:1.02;
    font-weight:900;
    letter-spacing:-.04em;
  }

  .info-title .accent{
    color:var(--urbi-orange);
  }

  .info-desc{
    margin:16px 0 0 0;
    color:var(--urbi-text-soft);
    font-size:16px;
    line-height:1.7;
    font-weight:500;
  }

  .info-metrics{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    margin-top:24px;
  }

  .metric-card{
    border-radius:18px;
    padding:18px;
    border:1px solid #eadfd4;
    background:#fff;
  }

  .metric-label{
    display:block;
    color:#7a736c;
    font-size:12px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
    margin-bottom:8px;
  }

  .metric-value{
    display:block;
    color:var(--urbi-dark);
    font-size:clamp(24px,2vw,34px);
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.03em;
  }

  .metric-value.highlight{
    color:var(--urbi-orange);
  }

  .method-chip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:22px;
    min-height:44px;
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(135deg, var(--urbi-orange), var(--urbi-orange-2));
    color:#fff;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    box-shadow:0 12px 24px rgba(255,121,21,.22);
  }

  .visual-panel{
    background:#fff;
    border:1px solid var(--urbi-border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
    min-height:680px;
    position:relative;
  }

  .visual-stage{
    position:relative;
    width:100%;
    height:100%;
    min-height:680px;
    background:
      linear-gradient(160deg, #fffaf4 0%, #fff 35%, #fff7ec 100%);
  }

  .visual-item{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(8px);
    transition:opacity .32s ease, transform .32s ease, visibility .32s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
  }

  .visual-item.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .visual-item img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
  }

  .floating-tag{
    position:absolute;
    top:18px;
    right:18px;
    z-index:5;
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(45,41,38,.92);
    color:#fff;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    box-shadow:var(--shadow-soft);
  }

  @media (max-width: 1120px){
    .pricing-grid{
      grid-template-columns:1fr;
    }

    .visual-panel,
    .visual-stage{
      min-height:560px;
    }

    .project-tabs{
      width:100%;
    }

    .project-btn{
      flex:1 1 calc(33.333% - 10px);
      min-width:unset;
    }
  }

  @media (max-width: 768px){
    section.pricing-showcase{
      padding:40px 12px;
    }

    .pricing-topbar{
      padding:20px 16px;
      flex-direction:column;
      align-items:flex-start;
    }

    .pricing-body{
      padding:16px;
    }

    .selection-bar{
      flex-direction:column;
      align-items:flex-start;
    }

    .project-tabs,
    .plan-tabs{
      width:100%;
      border-radius:20px;
    }

    .project-btn,
    .plan-btn{
      width:100%;
      flex:1 1 100%;
      min-width:unset;
    }

    .info-panel{
      padding:20px;
    }

    .info-metrics{
      grid-template-columns:1fr;
    }

    .visual-panel,
    .visual-stage{
      min-height:420px;
    }
  }

/* ======= Franja naranja a ancho completo ======= */
  .benefits-band{
    background:#ff6a00;
    color:#fff;
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    align-items:center;
    justify-items:center;
    gap:24px;
    padding:40px 20px;
  }
  .benefits-band.full-bleed{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
  }

  /* Ãtems */
  .benefit{
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    opacity:0;                /* oculto inicialmente */
    transform:translateY(30px); /* desplazado hacia abajo */
    transition:opacity .8s ease, transform .8s ease;
  }
  .benefit img{
    width:56px; height:56px; object-fit:contain;
    filter:brightness(0) invert(1);
    display:block;
  }
  .benefit span{
    font:600 16px/1.2 "Inter",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    text-align:center;
    color:#fff;
    transition:color .2s ease;
  }

  /* Estado visible */
  .benefit.visible{
    opacity:1;
    transform:translateY(0);
  }

  /* Hover: texto a negro */
  .benefit:hover span{ color:#000; }
  .benefit:hover{ transform:translateY(-2px) scale(1.2); }

  /* Responsivo */
  @media (max-width:1024px){
    .benefits-band{ grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width:640px){
    .benefits-band{
      grid-template-columns: repeat(2, 1fr);
      gap:18px; padding:28px 12px;
    }
    .benefit img{ width:44px; height:44px; }
    .benefit span{ font-size:14px; }
  }

/* === Comparador === */
.compare2{
    position:relative;
    width:100%;
    height:100svh;                 /* desktop: pantalla completa */
    overflow:hidden;
    background:#000;
    --handle:44px;                 /* diÃ¡metro del asa (desktop) */
    --divider:2px;                 /* grosor del divisor (desktop) */
  }
  /* Preferir 100dvh si estÃ¡ disponible */
  @supports (height:100dvh){ .compare2{ height:100dvh } }
  @supports not (height:100svh){ .compare2{ height:100vh } }

  /* Full-bleed seguro (ancho a viewport sin afectar otras secciones) */
  .compare2.cmp2-bleed-safe{
    width:100vw; max-width:100vw;
    left:50%; margin-left:-50vw;
    background:#000;
    overflow-x:clip;
  }

  .compare2 .cmp2-wrap{ position:absolute; inset:0 }
  .compare2 .cmp2-layer{ position:absolute; inset:0 }
  .compare2 .cmp2-layer img{
    width:100%; height:100%;
    object-fit:cover;              /* desktop: cubrir */
    object-position:center;
    display:block;
  }

  .compare2 .cmp2-overlay{ clip-path: inset(0 50% 0 0) }

  .compare2 .cmp2-divider{
    position:absolute; inset:0 auto 0 50%;
    width:var(--divider);
    background:rgba(255,255,255,.95);
    z-index:9; pointer-events:none;
    transform:translateX(calc(-1 * var(--divider) / 2));
  }

  .compare2 .cmp2-handle{
    position:absolute; top:50%; left:50%;
    width:var(--handle); height:var(--handle);
    margin-left:calc(-1 * var(--handle) / 2);
    margin-top:calc(-1 * var(--handle) / 2);
    border-radius:999px; background:rgba(255,255,255,.9);
    border:2px solid rgba(0,0,0,.35);
    display:grid; place-items:center;
    z-index:10; cursor:ew-resize; user-select:none; touch-action:none;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .compare2 .cmp2-handle:before,
  .compare2 .cmp2-handle:after{
    content:""; width:0; height:0;
    border-top:6px solid transparent; border-bottom:6px solid transparent;
  }
  .compare2 .cmp2-handle:before{ border-right:8px solid #444; margin-right:6px }
  .compare2 .cmp2-handle:after{  border-left:8px solid #444;  margin-left:6px }

  /* ====== Breakpoints igual que el ejemplo ====== */

  /* 900px: compactar un poco */
  @media (max-width:900px){
    .compare2{ --handle:40px; --divider:2px }
  }

  /* 700px: baja altura y evita recortes de contenido como tablas/texto */
  @media (max-width:700px){
    .compare2{
      height:66vh;                 /* como el ejemplo */
      --handle:36px;
      --divider:3px;
    }
    @supports (height:100dvh){ .compare2{ height:66dvh } }
    .compare2 .cmp2-layer img{
      object-fit:contain;          /* como el ejemplo: mostrar todo sin recortar */
      background:#000;
    }
  }

  /* 420px: aÃºn mÃ¡s compacto */
  @media (max-width:420px){
    .compare2{
      height:60vh;
    }
    @supports (height:100dvh){ .compare2{ height:60dvh } }
  }

:root{
    --accent:#FF6A14;   /* color de la lÃ­nea */
    --ink:#0f0f0f;      /* color del texto */
  }

  .section-title{
    margin:24px 0 48px;
    text-align:center;
  }
  .section-title h2{
    margin:0;
    color:var(--ink);
    font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight:900;
    letter-spacing:.5px;
    line-height:1.15;
    font-size:clamp(24px, 3.4vw, 44px);
    position:relative;
    padding-bottom:22px;        /* espacio para la lÃ­nea */
  }
  .section-title h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:clamp(48px, 8vw, 84px);  /* largo de la lÃ­nea */
    height:6px;                    /* grosor de la lÃ­nea */
    background:var(--accent);
    border-radius:999px;
  }
  @media (max-width:767px){
    .section-title h2{ padding-bottom:18px; }
    .section-title h2::after{ height:4px; }
  }

/* Variables de FAQ aisladas para no afectar otros bloques */
/* === FAQ === */
#container-faq{
  --faq-brand:#FF6B00;
  --faq-brand-ink:#000;
  --faq-muted:#555;
  --faq-border:#e5e7eb;
  --faq-maxw:1280px;
}
  /* ===== Contenedor ===== */
  #container-faq{max-width:var(--faq-maxw); margin:0 auto; padding:24px}
  #container-preguntas{width:100%; padding:16px}

  /* ===== Ãtems del FAQ ===== */
  .faq-item{
    border-bottom:1px solid var(--faq-border);
    margin-bottom:1rem;
    overflow:hidden; /* para animaciÃ³n de altura */
    /* visibles por defecto (fallback sin JS) */
    opacity:1;
    transform:none;
  }
  /* solo los que JS marque como "reveal" se animan */
  .faq-item.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease, transform .8s ease;
  }
  .faq-item.reveal.is-visible{
    opacity:1;
    transform:translateY(0);
  }
  /* ===== Summary / Question ===== */
  .faq-question{
    position:relative;
    display:block;
    list-style:none;
    cursor:pointer;
    font-size:1.08rem;
    font-weight:800;
    color:var(--faq-brand);
    padding:.9rem 1.6rem .9rem 0;
    outline:none;
    user-select:none;
    transition:color .25s ease;
  }
  /* quitar marcador nativo del summary */
  .faq-item summary::-webkit-details-marker{display:none}
  .faq-item summary{list-style:none}
  /* Flecha */
  .faq-question .arrow{
    position:absolute; right:0; top:50%;
    width:.65rem; height:.65rem;
    border-right:2px solid #fcb615; border-bottom:2px solid #fcb615;
    transform:translateY(-50%) rotate(45deg);
    transition:transform .25s ease;
  }
  /* Estado abierto */
  .faq-item[open] .faq-question{color:var(--faq-brand-ink)}
  .faq-item[open] .faq-question .arrow{transform:translateY(-50%) rotate(-135deg)}
  /* ===== Respuesta (animaciÃ³n de altura suave) ===== */
  .faq-answer{padding:0 0 .75rem 0}
  .faq-answer p{margin:0; color:var(--faq-muted)}
  /* tÃ©cnica grid-rows para transiciÃ³n de altura */
  .faq-item .faq-answer{display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s ease}
  .faq-item[open] .faq-answer{grid-template-rows:1fr}
  .faq-item .faq-answer > *{overflow:hidden}
  /* ===== Responsive ===== */
  @media (max-width:770px){
    #container-faq{padding:16px}
    #container-preguntas{padding:0}
  }

/* ===== Fondo a 100% real (full-bleed) ===== */
  /* === Footer === */
.uf-footer{
    width:100vw;                           /* ocupa todo el viewport */
    margin-left: calc(50% - 50vw);         /* rompe el contenedor padre centrado */
    margin-right: calc(50% - 50vw);
    background:#1c1c1c;
    color:#fff;
  }

  /* Contenido centrado y limitado */
  .uf-footer__inner{
    max-width:1200px;
    margin:0 auto;
    padding:40px 16px 28px;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
    display:flex;
    flex-direction:column;
    gap:24px;
  }

  /* Grid superior responsive */
  .uf-footer__top{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:20px;
    align-items:flex-start;
  }

  .uf-col{
    text-align:center;
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .uf-logo{
    width:180px;
    max-width:100%;
    margin:0 auto 8px;
    display:block;
  }

  /* Fuerza tÃ­tulos blancos */
  .uf-footer .uf-col h2,
  .uf-footer .uf-title{
    font-size:24px;
    margin-bottom:6px;
    font-weight:700;
    color:#ffffff !important;
  }

  .uf-item, .uf-col p{
    font-size:16px;
    line-height:1.5;
    color:#fff;
    text-decoration:none;
    display:inline-block;
    margin:2px 0;
  }

  .uf-link{
    color:#fff; 
    text-decoration:underline;
  }

  .uf-claim img{
    width:160px;
    max-width:100%;
    display:block;
    margin:0 auto 8px;
  }

  .uf-follow{
    margin-top:6px;
    font-size:14px;
    opacity:.9;
  }

  .uf-social{
    display:flex;
    justify-content:center;
    gap:12px;
  }

  .uf-social a{
    color:#fff;
    font-size:20px;
    line-height:1;
    transition:transform .2s ease, opacity .2s ease;
  }
  .uf-social a:hover{ transform:translateY(-2px); opacity:.9; }

  /* Fila media */
  .uf-footer__middle{
    text-align:center;
    font-size:14px;
    padding:14px 10px;
    border-top:1.5px solid #808080;
    border-bottom:1.5px solid #808080;
    opacity:.95;
  }

  /* Fila inferior */
  .uf-footer__bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    font-size:13px;
    padding-top:6px;
    flex-wrap:wrap;
  }

  .uf-copy{ text-align:left; }
  .uf-dev{ text-align:right; }
  .uf-dev a{ color:#fff; text-decoration:none; }

  /* ====== Responsivo ====== */
  @media (max-width: 1024px){
    .uf-footer__top{ grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px){
    .uf-footer__top{ grid-template-columns: 1fr; }
    .uf-copy, .uf-dev{ width:100%; text-align:center; }
    .uf-footer .uf-col h2, .uf-footer .uf-title{ font-size:22px; }
    .uf-item, .uf-col p{ font-size:15px; }
  }

/* === Image Map Builder === */
.isimb-6310-hover-content {
      transform: scale(0);
      transition: all .5s;
      position: absolute;
      z-index:9999999999;
  }

.ui-tooltip{
                  padding:0 !important;
                }
                .ui-widget-content{
                  border: none !important;
                  background: none;
                } 
                .ui-widget-shadow{
                  box-shadow: none;
                }
               .isimb-6310-main-svg .isimb-6310-pol-22-1{
                  fill: rgba(255, 13, 0, 0.01) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
               }
               .isimb-6310-main-svg .isimb-6310-pol-22-1:hover{
                  fill: rgb(255, 255, 255) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
                  cursor: pointer;
                  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.99));
               }
               

.ui-tooltip{
                  padding:0 !important;
                }
                .ui-widget-content{
                  border: none !important;
                  background: none;
                } 
                .ui-widget-shadow{
                  box-shadow: none;
                }
               .isimb-6310-main-svg .isimb-6310-pol-22-2{
                  fill: rgba(255, 13, 0, 0.01) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
               }
               .isimb-6310-main-svg .isimb-6310-pol-22-2:hover{
                  fill: rgba(255, 255, 255, 1) !important;
                  stroke:rgba(255, 255, 255, 0.8) !important;
                  stroke-width:1px !important;
                  cursor: pointer;
                  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.99));
               }
               

.ui-tooltip{
                  padding:0 !important;
                }
                .ui-widget-content{
                  border: none !important;
                  background: none;
                } 
                .ui-widget-shadow{
                  box-shadow: none;
                }
               .isimb-6310-main-svg .isimb-6310-pol-22-3{
                  fill: rgba(255, 13, 0, 0.05) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
               }
               .isimb-6310-main-svg .isimb-6310-pol-22-3:hover{
                  fill: rgb(255, 255, 255) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
                  cursor: pointer;
                  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.99));
               }
               

.ui-tooltip{
                  padding:0 !important;
                }
                .ui-widget-content{
                  border: none !important;
                  background: none;
                } 
                .ui-widget-shadow{
                  box-shadow: none;
                }
               .isimb-6310-main-svg .isimb-6310-pol-22-4{
                  fill: rgba(0, 0, 0, 0.01) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
               }
               .isimb-6310-main-svg .isimb-6310-pol-22-4:hover{
                  fill: rgba(255, 255, 255, 1) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
                  cursor: pointer;
                  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.99));
               }
               

.ui-tooltip{
                  padding:0 !important;
                }
                .ui-widget-content{
                  border: none !important;
                  background: none;
                } 
                .ui-widget-shadow{
                  box-shadow: none;
                }
               .isimb-6310-main-svg .isimb-6310-pol-22-5{
                  fill: rgba(255, 13, 0, 0.01) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
               }
               .isimb-6310-main-svg .isimb-6310-pol-22-5:hover{
                  fill: rgba(255, 255, 255, 1) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
                  cursor: pointer;
                  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.99));
               }
               

.ui-tooltip{
                  padding:0 !important;
                }
                .ui-widget-content{
                  border: none !important;
                  background: none;
                } 
                .ui-widget-shadow{
                  box-shadow: none;
                }
               .isimb-6310-main-svg .isimb-6310-pol-22-6{
                  fill: rgba(0, 0, 0, 0.01) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
               }
               .isimb-6310-main-svg .isimb-6310-pol-22-6:hover{
                  fill: rgba(255, 255, 255, 1) !important;
                  stroke:rgb(255, 255, 255, .1) !important;
                  stroke-width:1px !important;
                  cursor: pointer;
                  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.99));
               }
               

.isimb-6310-builder-box-22 .isimb-6310-point-1  .isimb-6310-pin-main-img {           
         color: red;
         font-size: 15px;
      }    
      .isimb-6310-builder-box-22 .isimb-6310-point-1 .isimb-6310-pin-hover-img {           
         color: yellow;
         font-size: 15px;
      }   
      
               .isimb-6310-hover-content-22-1-element{
                  background-color: rgba(255, 255, 255, 1) !important;
                  color: rgb(18, 0, 0);
                  font-size: 18px;
                  line-height: 24px;
                  padding: 5px 10px;
                  border-radius: 5px;
                  max-width: 400px !important;
               }  
               .isimb-6310-hover-content-22-1-element a, .isimb-6310-hover-content-22-1-element a:hover {
                  color: rgb(18, 0, 0);
                  display: block;
               }
               

.isimb-6310-builder-box-22 .isimb-6310-point-2  .isimb-6310-pin-main-img {           
         color: red;
         font-size: 15px;
      }    
      .isimb-6310-builder-box-22 .isimb-6310-point-2 .isimb-6310-pin-hover-img {           
         color: yellow;
         font-size: 15px;
      }   
      
               .isimb-6310-hover-content-22-2-element{
                  background-color: rgba(255, 255, 255, 1) !important;
                  color: rgb(18, 0, 0);
                  font-size: 17px;
                  line-height: 23px;
                  padding: 5px 10px;
                  border-radius: 5px;
                  max-width: 400px !important;
               }  
               .isimb-6310-hover-content-22-2-element a, .isimb-6310-hover-content-22-2-element a:hover {
                  color: rgb(18, 0, 0);
                  display: block;
               }
               

.isimb-6310-builder-box-22 .isimb-6310-point-3  .isimb-6310-pin-main-img {           
         color: red;
         font-size: 15px;
      }    
      .isimb-6310-builder-box-22 .isimb-6310-point-3 .isimb-6310-pin-hover-img {           
         color: yellow;
         font-size: 15px;
      }   
      
               .isimb-6310-hover-content-22-3-element{
                  background-color: rgba(255, 255, 255, 1) !important;
                  color: rgb(18, 0, 0);
                  font-size: 18px;
                  line-height: 24px;
                  padding: 5px 10px;
                  border-radius: 5px;
                  max-width: 400px !important;
               }  
               .isimb-6310-hover-content-22-3-element a, .isimb-6310-hover-content-22-3-element a:hover {
                  color: rgb(18, 0, 0);
                  display: block;
               }
               

.isimb-6310-builder-box-22 .isimb-6310-point-4  .isimb-6310-pin-main-img {           
         color: red;
         font-size: 15px;
      }    
      .isimb-6310-builder-box-22 .isimb-6310-point-4 .isimb-6310-pin-hover-img {           
         color: yellow;
         font-size: 15px;
      }   
      
               .isimb-6310-hover-content-22-4-element{
                  background-color: rgba(255, 255, 255, 1) !important;
                  color: rgb(18, 0, 0);
                  font-size: 18px;
                  line-height: 24px;
                  padding: 5px 10px;
                  border-radius: 5px;
                  max-width: 400px !important;
               }  
               .isimb-6310-hover-content-22-4-element a, .isimb-6310-hover-content-22-4-element a:hover {
                  color: rgb(18, 0, 0);
                  display: block;
               }
               

.isimb-6310-builder-box-22 .isimb-6310-point-5  .isimb-6310-pin-main-img {           
         color: red;
         font-size: 15px;
      }    
      .isimb-6310-builder-box-22 .isimb-6310-point-5 .isimb-6310-pin-hover-img {           
         color: yellow;
         font-size: 15px;
      }   
      
               .isimb-6310-hover-content-22-5-element{
                  background-color: rgba(255, 255, 255, 1) !important;
                  color: rgb(18, 0, 0);
                  font-size: 18px;
                  line-height: 24px;
                  padding: 5px 10px;
                  border-radius: 5px;
                  max-width: 400px !important;
               }  
               .isimb-6310-hover-content-22-5-element a, .isimb-6310-hover-content-22-5-element a:hover {
                  color: rgb(18, 0, 0);
                  display: block;
               }
               

.isimb-6310-builder-box-22 .isimb-6310-point-6  .isimb-6310-pin-main-img {           
         color: red;
         font-size: 15px;
      }    
      .isimb-6310-builder-box-22 .isimb-6310-point-6 .isimb-6310-pin-hover-img {           
         color: yellow;
         font-size: 15px;
      }   
      
               .isimb-6310-hover-content-22-6-element{
                  background-color: rgba(255, 255, 255, 1) !important;
                  color: rgb(18, 0, 0);
                  font-size: 18px;
                  line-height: 24px;
                  padding: 5px 10px;
                  border-radius: 5px;
                  max-width: 400px !important;
               }  
               .isimb-6310-hover-content-22-6-element a, .isimb-6310-hover-content-22-6-element a:hover {
                  color: rgb(18, 0, 0);
                  display: block;
               }
               

.isimb-6310-main-svg-22{
            background-image: url(https://urbifrax.com/wp-content/uploads/2026/04/LEGADO_14042026-scaled.png);
          }
        

.isimb-6310-annotation-box-wrapper-22 .isimb-6310-zoom-buttons{
      display: none !important;
                  flex-direction: column;
                  align-items: center; 
                  gap: 5px; 
                  position: absolute;
                  z-index: 9999;
                  background: ;
                  padding: 5px;
                  border-radius: 6px;top: 15px; right: 15px;
   }
   .isimb-6310-annotation-box-wrapper-22 .isimb-6310-zoom-buttons img{
      width: 30px;
      height: 30px;
      cursor: pointer;
      position: relative;
               display: block;
               opacity: .8;
               padding: 3px;
               
   }
   
   .isimb-6310-annotation-box-wrapper-22 .isimb-6310-zoom-buttons img:hover{
      opacity: 1;
   }
   .isimb-6310-close-button{
      width: 30px;
      height: 30px;
      background-image: none;
      right: -15px;
      top: -15px;
      background-size: cover;
   }
   .isimb-6310-close-button-mobile{
      display: none;
   }
   @media screen and (max-width: 767px) {
      .isimb-6310-annotation-box-wrapper-22 .isimb-6310-zoom-buttons{
         display: none !important;
         top: 10px; right: 10px;
      }
      .isimb-6310-annotation-box-wrapper-22 .isimb-6310-zoom-buttons img{
         width: 25px;
         height: 25px;
      }
      .isimb-6310-close-button{
         width: 20px;
         height: 20px;
         right: -10px;
         top: -10px;
         background-size: cover;
      }
      .isimb-6310-close-button-mobile{
         display: block;
      }
   }

.isimb-6310-hover-content {
      transform: scale(0);
      transition: all .5s;
      position: absolute;
      z-index:9999999999;
  }

.isimb-6310-main-svg-27{
            background-image: url(https://urbifrax.com/wp-content/uploads/2026/04/CCC-plano-20042026-scaled.png);
          }
        

.isimb-6310-annotation-box-wrapper-27 .isimb-6310-zoom-buttons{
      display: none !important;
                  flex-direction: column;
                  align-items: center; 
                  gap: 5px; 
                  position: absolute;
                  z-index: 9999;
                  background: rgba(0, 0, 0, 0.9);
                  padding: 5px;
                  border-radius: 6px;top: 15px; right: 15px;
   }
   .isimb-6310-annotation-box-wrapper-27 .isimb-6310-zoom-buttons img{
      width: 30px;
      height: 30px;
      cursor: pointer;
      position: relative;
               display: block;
               opacity: .8;
               padding: 3px;
               
   }
   
   .isimb-6310-annotation-box-wrapper-27 .isimb-6310-zoom-buttons img:hover{
      opacity: 1;
   }
   .isimb-6310-close-button{
      width: 30px;
      height: 30px;
      background-image: none;
      right: -15px;
      top: -15px;
      background-size: cover;
   }
   .isimb-6310-close-button-mobile{
      display: none;
   }
   @media screen and (max-width: 767px) {
      .isimb-6310-annotation-box-wrapper-27 .isimb-6310-zoom-buttons{
         display: none !important;
         top: 10px; right: 10px;
      }
      .isimb-6310-annotation-box-wrapper-27 .isimb-6310-zoom-buttons img{
         width: 25px;
         height: 25px;
      }
      .isimb-6310-close-button{
         width: 20px;
         height: 20px;
         right: -10px;
         top: -10px;
         background-size: cover;
      }
      .isimb-6310-close-button-mobile{
         display: block;
      }
   }

