/* ==================================================================
   1. VARIABLES GLOBALES Y CONFIGURACIÓN (EL CEREBRO DEL DISEÑO)
   Aquí definimos colores y medidas que se usarán en toda la web.
   Si cambias un color aquí, se cambia en todos lados.
   ================================================================== */
:root {
  --bg: #ffffff;           /* Color de fondo de la página */
  --muted: #efb810;        /* Color secundario (dorado/amarillo) */
  --accent: #1c4960;       /* Color principal (azul verdoso corporativo) */
  --card: #fbfbfb;         /* Fondo gris muy claro para las tarjetas */
  --shadow: 0 6px 18px rgba(15,15,15,0.06); /* Sombra suave para dar profundidad */
  --max-width: 1200px;     /* Ancho máximo para que la web no se estire demasiado */
  font-family: 'Poppins', sans-serif; /* Tipografía global */
}

/* ==================================================================
   2. RESETEO Y ESTILOS BASE
   Quitamos los márgenes por defecto del navegador para tener control total.
   ================================================================== */
* {
  box-sizing: border-box; /* El padding no aumenta el tamaño total de los elementos */
  margin: 0;
  padding: 0;
  max-width: 100vw; /* Evita que aparezca scroll horizontal indeseado */
}

body {
  background: var(--bg);
  color: #111; /* Color de texto casi negro (más suave que #000) */
  overflow-x: hidden; /* Oculta desbordamientos laterales */
}

/* ==================================================================
   3. LAYOUT Y ESTRUCTURA GENERAL
   Contenedores para centrar el contenido.
   ================================================================== */
.container {
  max-width: var(--max-width);
  margin: auto; /* Centra el bloque horizontalmente */
  padding: 18px;
  width: 100%;
}

/* Grid principal para páginas de detalle (Columna info + Columna lateral) */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 350px; /* Contenido flexible | Lateral fijo de 350px */
  gap: 18px;
  margin-top: 15px;
}

/* ==================================================================
   4. NAVEGACIÓN (NAVBAR)
   La barra superior con el logo y el menú.
   ================================================================== */
.nav {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky; /* Se pega al techo al hacer scroll */
  top: 0;
  z-index: 99; /* Se asegura de estar por encima del contenido */
  width: 100%;
}

.nav-wrap {
  display: flex;
  justify-content: space-between; /* Logo a la izq, menú a la der */
  align-items: center;
}

.logo-img { width: 60px; }

.menu {
  display: flex;
  gap: 16px;
  list-style: none; /* Quita los puntos de la lista */
}

.menu a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.hamb-btn { display: none; } /* Oculto en PC, aparece en móvil */

/* ==================================================================
   5. COMPONENTES GLOBALES (BOTONES Y TARJETAS)
   Elementos reutilizables en cualquier parte.
   ================================================================== */
/* Tarjeta base */
.card {
  background: var(--card);
  padding: 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Botón Principal (Azul Verdoso -> Naranja al Hover) */
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease; /* Suaviza el cambio de color */
}

.btn-primary:hover {
  background: #ac840c; /* Se vuelve dorado al pasar el mouse */
  transform: scale(1.05); /* Crece un poquito */
}

/* Títulos con acciones (botones de compartir) */
.title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.share-actions-container {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.share-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%; /* Círculo perfecto */
  background-color: #f0f0f0;
  color: #666;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.share-icon-btn:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Botón especial "Escuchar Audio" */
.listen-audio-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 50px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-left: 10px;
}

.listen-audio-btn i { font-size: 16px; }

.listen-audio-btn:hover {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(255, 122, 0, 0.3);
}

/* ==================================================================
   6. MÓDULO: PÁGINA DE INICIO (ABOUT & PARTNERS)
   ================================================================== */

/* --- Sección Quiénes Somos (VUP ABOUT) --- */
.vup-about {
  width: 100%;
  padding: 50px 20px;
  background: white;
  display: flex;
  justify-content: center;
}

.vup-about-wrapper {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vup-about-imgbox {
  width: 300px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vup-about-img {
  width: 100%;
  height: auto;
  transition: opacity .6s ease;
  animation: vupFadeZoom 6s infinite alternate; /* Efecto respiración */
}

@keyframes vupFadeZoom {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.vup-about-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

.vup-about-text h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ac840c;
}

/* Bloque de firma (debajo del texto about) */
.signature-block {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signature-img {
  width: 180px;
  height: auto;
  margin-bottom: 5px;
  opacity: 0.9;
}

.signature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.signature-text .name { font-weight: 600; font-size: 16px; color: #333; }
.signature-text .title { font-size: 13px; color: var(--muted); font-weight: 400; }

/* --- Carrusel Infinito de Partners --- */
.vup-partners {
  background: #fafafa;
  padding: 40px 10px;
  text-align: center;
  margin-top: 30px;
  overflow: hidden;
}

.vup-partner-title {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #333;
}

.partner-carousel-window {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden; /* Oculta lo que se sale del marco */
  position: relative;
}

.partner-carousel-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scrollLeft 20s linear infinite; /* Movimiento continuo */
  width: max-content;
}

.partner-carousel-track img {
  height: 60px;
  width: auto;
  filter: grayscale(100%); /* Blanco y negro por defecto */
  opacity: 0.6;
  transition: 0.3s;
  user-select: none;
}

.partner-carousel-track img:hover {
  filter: none; /* Color al pasar el mouse */
  opacity: 1;
  cursor: pointer;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================================================================
   7. MÓDULO: CATÁLOGO DE PROPIEDADES (GRID Y CARDS)
   ================================================================== */
.catalog-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Columnas automáticas responsivas */
  gap: 20px;
}

/* Tarjeta de propiedad individual */
.property-card {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
  transition: .25s;
  position: relative;
  overflow: visible !important; /* Permite que la etiqueta salga de la caja */
  z-index: 1;
  border: 1px solid #eee;
}

.property-card:hover {
  transform: scale(1.02); /* Zoom suave al hover */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.img-wrapper {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  z-index: 2;
}

.property-img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* Recorta la imagen para llenar el espacio sin deformar */
  border-radius: 10px;
  display: block;
}

.property-card h3 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 600;
}

.location-text {
  color: #666;
  font-size: 14px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.location-text i { color: #1c4960; }

/* Precio en la tarjeta */
.property-card .price {
  color: #efb810;
  font-weight: 700;
  font-size: 20px;
  margin: 10px 0 15px 0;
}

.old-price {
  text-decoration: line-through; /* Precio tachado */
  color: #ff0000;
  font-size: 1.2rem;
  margin-left: 15px;
}

/* Etiqueta "SHOPPY" o estado (Nueva/Oferta) */
.status-badge {
  position: absolute;
  top: 35px;
  left: -15px;
  z-index: 100;
  color: white;
  font-family: sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(163, 54, 0, 0.8);
  padding: 10px 15px 10px 35px;
  clip-path: polygon(25px 0, 100% 0, 100% 100%, 25px 100%, 0 50%); /* Forma de etiqueta */
  background: radial-gradient(circle at 12px 50%, white 3.5px, white 4.5px, transparent 5px), linear-gradient(135deg, #ac840c 0%, #efb810 100%);
  filter: drop-shadow(6px 8px 6px rgba(0,0,0,0.4));
  transform-origin: top left;
  animation: balanceoSuave 3s ease-in-out infinite; /* Se mueve con el viento */
  pointer-events: none;
}

@keyframes balanceoSuave {
  0% { transform: rotate(-35deg); }
  50% { transform: rotate(-32deg); }
  100% { transform: rotate(-35deg); }
}

/* ==================================================================
   8. MÓDULO: DETALLE DE PROPIEDAD (INTERIOR)
   ================================================================== */

/* Header del Precio y Estado (Detalle) */
.price-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.price-header .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.status-tag {
  background-color: #FFF0E6;
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-tag i { font-size: 16px; }

/* Galería de Fotos (Slider) */
.gallery {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  transform: translateY(-50%);
}

.ctrl-btn {
  background: var(--accent);
  color: white;
  border: none;
  font-size: 22px;
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: .25s;
}

.ctrl-btn:hover {
  background: #cc6200;
  transform: scale(1.1);
}

/* Lista de Especificaciones (Iconos: Camas, Baños...) */
.spec-list.icon-list {
  list-style-type: none; /* Quita viñetas */
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 10px;
}

.spec-list.icon-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.spec-list.icon-list li i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Sección de Amenidades (Iconos horizontales) */
.amenities-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.amenity-box {
  flex: 1 1 150px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-box i {
  font-size: 25px;
  color: var(--accent);
  margin-bottom: 10px;
}

.amenity-box h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #555;
}

.amenity-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Pestañas Multimedia (Mapa, Video, 360) */
.multimedia-tabs-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.tab-buttons-container {
  display: flex;
  gap: 5px;
  margin-bottom: -1px;
  padding-left: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: #f4f4f4;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn i { font-size: 18px; }

.tab-btn:hover { background-color: #ac840c; color: #555; }
.tab-btn.active { background-color: var(--accent); color: white; }

.tab-display-area.card {
  background: white;
  position: relative;
  z-index: 2;
  padding: 20px;
  border-top-left-radius: 0;
}

.iframe-container {
  width: 100%;
  height: 450px;
  position: relative;
  background-color: #eee;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
}

.tab-content { display: none; }
.tab-content.active {
  display: block;
  animation: fadeInSoft 0.4s ease;
}

@keyframes fadeInSoft {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================================================================
   9. MÓDULO: MAPA Y TALLER
   ================================================================== */
/* Mapa Interactivo */
#map-interactivo-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

#map {
  height: 500px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.icono-saltarin {
  animation: bounce 1.3s infinite ease-in-out;
  filter: drop-shadow(0 4px 3px rgba(0,0,0,0.3));
}

.icono-hover-foto {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  transition: all 0.3s ease;
  border: 2px solid white;
  border-radius: 4px;
  background: white;
}

/* Carrusel de Taller (Videos) */
.vup-taller {
  background: #fafafa;
  padding: 50px 10px;
  text-align: center;
  overflow: hidden;
  position: relative;
  font-family: sans-serif;
}

.vup-taller-title {
  font-size: 26px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.taller-carousel-window {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.taller-carousel-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scrollInfinito 25s linear infinite;
}

.taller-carousel-track:hover { animation-play-state: paused; }

.taller-carousel-track img {
  height: 180px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.taller-carousel-track img:hover { transform: scale(1.08); }

@keyframes scrollInfinito {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================================================================
   10. FOOTER Y BARRA LEGAL
   ================================================================== */
.site-footer {
  background: #1c4960;
  margin-top: 30px;
  padding: 25px 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.legal-footer {
  background-color: #efb810;
  color: #ffffff;
  padding: 0px 0;
  width: 100%;
  border-top: 1px solid #333;
  font-size: 14px;
  font-weight: 300;
}

.legal-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-text { margin: 0; opacity: 0.9; }

.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.legal-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.legal-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.separator { color: #555; }

/* ==================================================================
   11. UTILIDADES Y ELEMENTOS FLOTANTES
   Modales, botones fijos, burbujas de chat.
   ================================================================== */
/* Botones Flotantes (WhatsApp y Teléfono) */
.float, .floatp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  background: linear-gradient(135deg, #1c4960, #efb810);
}

.float { right: 120px; }
.floatp { right: 40px; }

.float:hover { text-decoration: none; color: #25d366; background-color: #fff; }
.floatp:hover { text-decoration: none; color: #000000; background-color: #f2f2f2; }
.my-float, .my-floatp { margin-top: 16px; }

/* Burbuja de Mensaje Animada */
.message-bubble {
  position: fixed;
  bottom: 90px;
  right: 120px;
  background-color: white;
  color: #333;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  transform: scale(0.8) translateX(20px);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.message-bubble.show {
  opacity: 1;
  transform: scale(1) translateX(0);
  visibility: visible;
}

.message-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 30px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: white transparent;
  display: block;
  width: 0;
}

/* Modales (Popups) - General y Video */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  justify-content: center; align-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  cursor: pointer;
}

.modal-content { max-width: 90vw; max-height: 90vh; border-radius: 10px; }
.close { color: white; position: absolute; top: 20px; right: 30px; font-size: 45px; }

/* Modal específico para videos de Taller */
.vup-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2147483647; /* Máxima prioridad */
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.vup-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.vup-close-btn {
  position: absolute;
  top: -45px; right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.vup-close-btn:hover { color: #ff4444; }

.vup-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.vup-video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ==================================================================
   12. RESPONSIVE (ADAPTACIÓN MÓVIL)
   Todas las reglas que cambian el diseño en pantallas pequeñas.
   ================================================================== */
@media(max-width: 900px) {
  /* About: imagen arriba, texto abajo centrado */
  .vup-about-text { text-align: center; }
  .vup-about-imgbox { width: 240px; }
}

@media(max-width: 850px) {
  /* Layout: Pasa de 2 columnas (grid) a 1 sola */
  .main-grid { grid-template-columns: 1fr; }

  /* Menú Hamburguesa activado */
  .menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute; right: 20px; top: 65px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  .menu.show { display: flex; }
  .hamb-btn { display: block; font-size: 28px; background: none; border: none; cursor: pointer; }

  /* Footer: Pasa a 1 sola columna */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  /* Ajustes del Footer Legal */
  .legal-flex { flex-direction: column; text-align: center; justify-content: center; }
  .legal-links { justify-content: center; font-size: 13px; }

  /* Ajustes del Carrusel Taller */
  .taller-carousel-track img { height: 100px; gap: 40px; }
  .vup-taller-title { font-size: 20px; }
}

@media (max-width: 480px) {
  /* Ajuste posición botones flotantes en pantallas muy pequeñas */
  .message-bubble { right: 120px; bottom: 90px; }
}


/* ==================================================================
   12. RESPONSIVE 
   CONTACTO.
   ================================================================== */



    /* 1. Contenedor Principal con Grid */
    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1.5fr; /* Columna info más angosta, Mapa más ancho */
        gap: 30px;
        margin-bottom: 40px;
    }

    /* 2. Tarjetas Limpias */
    .contact-card {
        background: #fff;
        border-radius: 15px; /* Bordes redondeados como tu estilo */
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Sombra suave */
        padding: 30px; /* MUCHO ESPACIO INTERNO para que no se vea revuelto */
        height: 100%;
    }

    /* 3. Organización de los Items de Texto (Icono + Texto) */
    .contact-item {
        display: flex; /* Esto evita que el texto se encime */
        align-items: flex-start;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0; /* Línea separadora sutil */
    }
    
    .contact-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .contact-icon {
        background-color: #fff0ec; /* Color suave de fondo para el icono */
        color: #1c4960; /* Tu color AZUL VERDOSO */
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
        margin-right: 20px; /* Separación entre icono y texto */
        flex-shrink: 0; /* Evita que el icono se aplaste */
    }

    .contact-text h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
        font-weight: 700;
        color: #efb810;
    }

    .contact-text p, .contact-text a {
        margin: 0;
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        text-decoration: none;
    }

    /* 4. Formulario */
    .form-section {
        margin-top: 30px;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-input {
        width: 100%;
        padding: 15px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        background: #fcfcfc;
        font-family: 'Poppins', sans-serif;
    }

    .btn-send {
        background: #efb810;
        color: white;
        padding: 15px 40px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        transition: 0.3s;
    }
    
    .btn-send:hover {
        background: #1c4960;
    }

    /* Responsive: En celular se pone uno debajo del otro */
    @media (max-width: 768px) {
        .contact-layout { grid-template-columns: 1fr; }
        .form-row { grid-template-columns: 1fr; }
    }




/* ==================================================================
   12. RESPONSIVE 
   aviso de privacidad.
   ================================================================== */

    /* Estilos específicos para documentos legales para mejorar lectura */
    .legal-content {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        margin-top: 30px;
        margin-bottom: 50px;
        text-align: justify; /* Texto justificado para apariencia formal */
        line-height: 1.8;
    }

    .legal-content h1 {
        color: var(--accent);
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
        font-size: 28px;
    }

    .legal-content h2 {
        color: #333;
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 15px;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
        text-transform: uppercase;
    }

    .legal-content h3 {
        color: #555;
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .legal-content p {
        margin-bottom: 15px;
        color: #444;
    }

    .legal-content ul {
        list-style-type: disc;
        margin-left: 20px;
        margin-bottom: 20px;
        color: #444;
    }

    .legal-content ul li {
        margin-bottom: 5px;
    }

    .legal-content a {
        color: var(--accent);
        font-weight: 600;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .legal-content {
            padding: 20px;
        }
        .legal-content h1 {
            font-size: 24px;
        }
    }

