@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

@font-face {
  font-family: "MonumentExtended";
  src: url("../assets/fonts/MonumentExtended-Regular.otf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

:root {
  --negro: #393939;
  --blanco: #ececec;
  --sombra-ppal: #c9c9c9;
  --sombra-sec: #ffffff;
  --borde-negro: #00000050;
  --marcado: rgb(127, 195, 255);

  --card-bg: #fff;
  --text: #111;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 22px rgba(0, 0, 0, 0.12), 0 18px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.12), 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* dark mode base */
@media (prefers-color-scheme: dark) {
  :root {
    --negro: #ececec;
    --blanco: #303030;
    --sombra-ppal: #242424;
    --sombra-sec: #3c3c3c;
    --borde-negro: #ffffff50;
  }
}

/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: #000;
  background-color: #fff;
}

video,
iframe,
figure {
  object-fit: cover;
  object-position: center center;
  max-width: 100%;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: var(--negro);
  color: var(--blanco);
}

::selection {
  background-color: var(--negro);
  color: var(--blanco);
}

form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  hyphens: auto;
  background-color: transparent;
  display: block;
  color: inherit;
  appearance: none;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  background-color: #7fff00;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #ff1493;
  border-radius: 8px;
}

/* BOTON FLOTANTE WHATSAPP (desactivado en tu HTML pero lo dejo) */
.my-button {
  position: fixed;
  right: 40px;
  bottom: 80px;
  width: 70px;
  height: 70px;
  z-index: 100;
}

/* HERO / HEADER */
.header-CieloOk {
  height: 520px;
}

.cielo {
  height: 520px;
  background-image: url("../assets/img/sofa.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Roboto, Arial, sans-serif;
  position: relative;
}

/* NAV DESKTOP */
.cielo ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 30px;
  padding-top: 25px;
}
.cielo ul li {
  color: black;
  list-style: none;
  margin: 1rem;
  padding: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.cielo ul li a {
  display: inline-block;
  text-decoration: none;
  color: #7fff00;
  position: relative;
}
.cielo ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ff1493;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.cielo ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cielo-servicios {
  text-decoration: none;
  color: black;
  transition: all 0.7s;
  text-underline-offset: 40%;
}
.cielo-servicios:hover {
  color: #ff1493;
}

h1:hover {
  text-shadow: red -6px 0, cyan 6px 0;
}

/* HAMBURGER BTN */
.menu-btn {
  position: absolute;
  cursor: pointer;
  top: 15px;
  left: 20px;
  z-index: 1001;
  font-size: 1.5rem;
  padding: 4px 12px;
  border-radius: 4px;
  background-color: rgb(26, 26, 26, 0.9);
  display: none;
}
.menu-btn img {
  padding-top: 5px;
  padding-bottom: 1px;
  vertical-align: middle;
}

/* GRID PRINCIPAL */
.containerRealState {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "bim"
    "notes"
    "planosPlanta"
    "matterPak"
    "google"
    "fotos4k"
    "modoDeMedicion"
    "blurBrush"
    "vistaMaqueta"
    "recorridos";
}

/* BLOQUES */
.bim {
  grid-area: bim;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0px 70px;
}

.miniFoto {
  width: 600px;
  max-width: 100%;
  height: auto;
  opacity: 150;
}

.bim-miniFoto {
  margin-bottom: 30px;
  max-width: 100%;
  height: auto;
}

.bim-texto {
  max-width: 600px;
  line-height: 1.7rem;
  font-size: 16px;
  word-break: break-word;
}
.bim-texto1 {
  max-width: 600px;
  line-height: 1.7rem;
  font-size: 16px;
  word-break: break-word;
}
.bim-miniTitulo {
  margin-bottom: 25px;
}

.masInformacion {
  color: black;
  font-weight: bold;
  text-decoration: underline;
}

.notes {
  grid-area: notes;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0px 0px;
  margin-left: 100px;
}

.miniIcon {
  width: 72px;
  max-width: 100%;
  margin-bottom: 30px;
  height: auto;
}

.notes-texto1 {
  max-width: 650px;
  line-height: 1.73rem;
  font-size: 16px;
  word-break: break-word;
}
.notes-texto2 {
  max-width: 650px;
  line-height: 1.5rem;
  word-break: break-word;
}
.miniTitulo {
  margin-bottom: 20px;
}
.miniFotoNotes {
  width: 600px;
  max-width: 100%;
  height: auto;
}

.notes-texto-largo {
  margin-top: 30px;
  line-height: 1.72rem;
  font-size: 16px;
  margin: 20px 80px 0px 80px;
  word-break: break-word;
}
.notes-texto-largo1 {
  line-height: 1.72rem;
  width: auto;
  font-size: 16px;
  word-break: break-word;
}

.planosPlanta {
  grid-area: planosPlanta;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 0px 70px;
}
.miniFotoFloor {
  width: 500px;
  max-width: 100%;
  height: auto;
}

.matterPak {
  grid-area: matterPak;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.liDeStreet::marker {
  color: #ff1493;
}
.liDeStreet:hover {
  color: #8a2be2;
}

.google {
  grid-area: google;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  gap: 0px 70px;
}
.miniFotoGoogle {
  width: 550px;
  max-width: 100%;
  height: auto;
  border-radius: 7px;
}

.google-compare {
  width: auto;
}

.googleTitCompare h5 {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 0px 4px 0px;
  min-width: 450px;
  flex-wrap: wrap;
  width: auto;
}

.googleFrames {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 15px;
  gap: 0px 20px;
}
.googleFrames1Tit {
  height: 30px;
  padding-top: 3px;
  margin-bottom: 15px;
  background-color: rgb(221, 217, 217);
  width: 100%;
  text-align: center;
  border-radius: 3px;
}
.googleFrames1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.miniFoto-gsv {
  margin-top: 40px;
  width: auto;
  max-width: 100%;
  height: auto;
}
.google-pie {
  margin-top: 30px;
  font-size: 1.2rem;
}

.fotos4k {
  grid-area: fotos4k;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  gap: 0px 70px;
}
.miniFoto4k {
  margin-top: 10px;
  width: 90px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.modoDeMedicion {
  grid-area: modoDeMedicion;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  gap: 0px 40px;
}
.miniFoto4k {
  width: 70px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.blurBrush {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
  gap: 0px 70px;
}

.vistaMaqueta {
  grid-area: vistaMaqueta;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 0px 70px;
}

.recorridos {
  grid-area: recorridos;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  gap: 0px 70px;
}

/* FOOTER */
.footer {
  color: #fff;
  padding: 40px 0px;
  background-image: url("../assets/img/pattern2.png");
  background-size: contain;
  background-position: center;
}

.text1_footer {
  font-family: "MonumentExtended", sans-serif;
  text-align: center;
  font-size: 20px;
}
@media (min-width: 768px) {
  .text1_footer {
    font-size: 40px;
  }
}

.matters {
  color: #8a2ae3;
}
.logoFooter {
  font-size: 50px;
}
.bi-linkedin {
  color: #8a2ae3;
}
.bi-instagram {
  color: #ff1493;
}

.cursor_pointer {
  cursor: pointer;
}

.img_footer {
  width: 200px;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}
.container1_text_footer {
  width: 200px;
  max-width: 100%;
}
.title_container1_text_footer {
  font-family: "MonumentExtended", sans-serif;
  font-size: 17px;
  color: #fff;
  text-align: center;
}
.derechos {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

#preguntame {
  color: #000;
  font-size: 1.1rem;
}

.color-negro {
  color: #000;
}

/* WIDGET */
.leadclick-widget,
.leadclick-fab {
  z-index: 1000;
}

/* ----- TABS ESTILO CARTOON (NO LO ESTAS USANDO EN EL HTML FINAL PERO LO DEJAMOS) ----- */
.tabs-notes {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000;
  border-radius: 14px;
  padding: 16px;
  height: auto;
  max-width: 680px;
  box-shadow: 8px 8px 0 #000, 0 2px 18px rgba(0, 0, 0, 0.08);
}
.tabs-notes .ul {
  gap: 10px;
  flex-wrap: wrap;
}
.tabs-notes .li {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  margin: 0;
  box-shadow: 4px 4px 0 #000;
  transform: translate(0, 0);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease;
  outline: none;
  line-height: 1;
  cursor: pointer;
}
.tabs-notes .li:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 #000;
}
.tabs-notes .li:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 #000;
}
.tabs-notes .li.activo {
  background: #f4f4f4;
}
.tabs-notes .subcontenedor {
  position: relative;
  min-height: 120px;
}
.tabs-notes .bloque {
  position: relative;
  top: auto;
  margin: 14px 6px 6px 6px;
  padding: 16px 18px;
  border: 2px solid #000;
  border-radius: 14px;
  background: #fff;
  color: #000;
  box-shadow: 6px 6px 0 #000, 0 1px 12px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: none;
}
.tabs-notes .bloque.activo {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.tabs-notes p,
.tabs-notes li,
.tabs-notes ol,
.tabs-notes ul {
  color: #000;
}
.tabs-notes ul,
.tabs-notes ol {
  padding-left: 1.1rem;
}
.tabs-notes ul li {
  list-style: none;
}
.tabs-notes ol li {
  list-style: decimal;
}

/* ----- BIM CARD (CAJA ROSA) ----- */
.bim-card {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px 22px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12), 0 40px 80px rgba(0, 0, 0, 0.15);
}
.bim-badge {
  display: inline-block;
  background: #ff1493;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 20, 147, 0.25);
  margin-bottom: 10px;
}
.bim-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 4px 0 12px 0;
}
.bim-points {
  margin: 0 0 16px 0;
  padding-left: 1.1rem;
}
.bim-points li {
  list-style: disc;
  margin: 6px 0;
  text-align: justify;
  hyphens: auto;
}
.bim-cta {
  display: inline-block;
  background: #ff1493;
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(255, 20, 147, 0.25);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.bim-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 20, 147, 0.3);
}
.bim-cta:active {
  transform: translateY(0);
}

/* ----- CONTENEDOR TABS MODERNO (EL QUE ESTÁS USANDO EN NOTES) ----- */
.contenedor {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 20px 20px 24px;
  max-width: 680px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.05);
  font-family: "Roboto", system-ui, sans-serif;
}
.contenedor .ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}
.contenedor .li {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  text-align: left;
}
.contenedor .li:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
}
.contenedor .li.activo {
  background: #7fff00;
  color: #000;
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 24px 36px rgba(127, 255, 0, 0.28),
    0 8px 16px rgba(0, 0, 0, 0.18);
  font-weight: 700;
}
.contenedor .subcontenedor {
  position: relative;
  min-height: 140px;
}
.contenedor .bloque {
  display: none;
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 18px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(6px) scale(0.99);
  transition: opacity 0.18s ease, transform 0.18s ease;
  text-align: left;
}
.contenedor .bloque.activo {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.contenedor .bloque p:first-child {
  font-weight: 600;
  color: #000;
}
.contenedor .bloque strong {
  font-weight: 700;
  color: #000;
  background: rgba(127, 255, 0, 0.18);
  border-radius: 0.4em;
  padding: 0 0.35em;
}
.contenedor .bloque ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}
.contenedor .bloque ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.6em;
  font-weight: 500;
  line-height: 1.45;
}
.contenedor .bloque ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
  font-size: 0.8rem;
  font-weight: 700;
  color: #04c200;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* text long fixes */
.notes-texto-largo1,
.notes-texto-largo2 {
  text-align: left !important;
  hyphens: manual;
  word-break: break-word;
}

/* QUITAR BORDES DEL BLOQUE ACTIVO (MOBILE CLEAN) */
.contenedor .subcontenedor .bloque {
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

/* ------------------- MEDIA QUERIES ------------------- */

/* NAV MOBILE, TEXT WRAP, LAYOUT COLUMN */
@media (max-width: 910px) {
  .cielo .cieloLista {
    width: 100%;
    background-color: rgba(47, 54, 64, 0.6);
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    margin: 0;
    transform: translateX(-100vw);
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 100%;
  }
  .cielo .cieloLista.show {
    transform: translateX(0);
  }

  .cielo ul li {
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px 0px;
  }

  .menu-btn {
    display: block;
  }

  .notes-texto-largo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin-left: 0;
    margin-right: 0;
  }
  .notes-texto-largo1 {
    max-width: 400px;
  }
  .notes-texto-largo2 {
    max-width: 400px;
  }

  .miniFoto-gsv {
    max-width: 450px;
  }

  .planosPlanta {
    width: 100%;
    max-width: 600px;
    flex-direction: column;
    justify-content: center;
  }
}

/* BLOQUES MOBILE STACK */
@media (max-width: 700px) {
  main.containerRealState {
    padding: 0 16px 110px;
    margin: 0 !important;
  }

  .bim,
  .notes,
  .planosPlanta,
  .matterPak,
  .google,
  .fotos4k,
  .modoDeMedicion,
  .blurBrush,
  .vistaMaqueta,
  .recorridos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    row-gap: 12px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    width: 100%;
    max-width: 100%;
  }

  .miniFoto,
  .miniFotoGoogle,
  .miniFotoFloor,
  .miniFotoNotes,
  .notes-foto .miniFoto,
  .modoDeMedicion > img.miniFoto,
  .fotos4k > img.miniFoto {
    width: 100% !important;
    max-width: clamp(260px, 92vw, 420px);
    height: auto !important;
    margin-left: 0 !important;
    margin-bottom: 6px;
    display: block;
  }

  .miniFotoNotes {
    border-radius: 7px;
  }

  .bim-texto,
  .bim-texto1,
  .bim-texto2,
  .notes-texto1,
  .notes-texto2,
  .notes-texto,
  .google-texto,
  .notes-texto-largo,
  .planosPlanta .notes-texto,
  .matterPak .notes-texto,
  .bim-points li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left !important;
    word-break: break-word;
    hyphens: auto;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  h3,
  h4,
  h5,
  h6,
  .miniTitulo,
  .bim-title,
  .bim-miniTitulo {
    width: auto !important;
    max-width: 100% !important;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    word-break: break-word;
  }

  .notes-foto,
  .google > article:not(.google-texto),
  .planosPlanta > img,
  .matterPak > img,
  .fotos4k > img,
  .modoDeMedicion > img,
  .blurBrush .notes-foto,
  .vistaMaqueta .notes-foto,
  .recorridos .notes-foto {
    width: 100%;
    display: block !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  /* Reordenar bloques visuales en mobile para que siempre texto arriba / foto abajo si querés eso */
  .google {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 16px;
  }
  .google .google-texto {
    order: 1;
  }
  .google > article:not(.google-texto) {
    order: 2;
  }

  .fotos4k {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 16px;
  }
  .fotos4k > article.notes-texto {
    order: 1;
  }
  .fotos4k > img.miniFoto {
    order: 2;
  }

  .modoDeMedicion {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 16px;
  }
  .modoDeMedicion > article.notes-texto {
    order: 1;
  }
  .modoDeMedicion > img.miniFoto {
    order: 2;
  }

  .blurBrush,
  .vistaMaqueta,
  .recorridos {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 16px;
  }
  .blurBrush > article.notes-texto,
  .vistaMaqueta > article.notes-texto,
  .recorridos > article.notes-texto {
    order: 1;
  }
  .blurBrush > article.notes-foto,
  .vistaMaqueta > article.notes-foto,
  .recorridos > article.notes-foto {
    order: 2;
  }

  .google > article,
  .fotos4k > article,
  .modoDeMedicion > article,
  .blurBrush > article,
  .vistaMaqueta > article,
  .recorridos > article,
  .fotos4k > img.miniFoto,
  .modoDeMedicion > img.miniFoto,
  .google .miniFotoGoogle,
  .notes-foto .miniFoto {
    width: 100%;
    max-width: 600px;
  }

  .bim-miniFoto {
    width: 50px;
    max-width: 50px;
    height: auto;
  }

  .googleFrames1Tit,
  .google-pie {
    width: 100%;
    max-width: 450px;
  }

  .notes-texto-largo1,
  .notes-texto-largo2 {
    text-align: left !important;
    max-width: 92vw;
    margin-left: 0;
  }

  footer.footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container1_text_footer,
  .container1_text_footer p,
  .container1_text_footer .title_container1_text_footer,
  .derechos {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .contenedor_redes {
    justify-content: flex-start !important;
  }

  .contenedor {
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  .contenedor .li {
    font-size: 0.85rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    text-align: left !important;
  }

  .contenedor .subcontenedor {
    min-height: 140px;
  }

  .contenedor .bloque {
    border-radius: 14px;
    padding: 16px 16px 18px;
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  /* lista BIM: sacar bullets y márgenes que empujan */
  .bim-points {
    padding-left: 0;
    margin-left: 0;
  }

  .bim-points li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }
}

/* tweaks extra */
@media (max-width: 600px) {
  .bim-card {
    border-radius: 14px;
    padding: 18px;
  }
  .bim-title {
    font-size: 1.2rem;
  }
  .bim-cta {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* header altura menor en celu chico */
@media (max-width: 530px) {
  .header-CieloOk {
    height: 350px;
  }
  .cielo {
    height: 350px;
  }
}

/* iframe mapa footer */
@media (max-width: 465px) {
  .gmap_canvas {
    max-width: 350px;
  }
  .mapouter {
    max-width: 350px;
  }
}
