/* ============================================================
   RESET & VARIABLES
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --accent:       #d4f210;
  --accent-dark:  #2bb8a8;
  --accent-glow:  rgba(78, 222, 203, 0.22);
  --bg-dark:      #0b0f14;
  --bg-dark2:     #101820;
  --bg-card:      rgba(255,255,255,0.04);
  --text-light:   #eaffff;
  --text-muted:   #bfe6e6;
  --text-body:    #cfd8e3;
  --white:        #ffffff;
  --border:       rgba(78, 222, 203, 0.15);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --transition:   0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #ffffff;
  color: #1f2f2f;
  line-height: 1.65;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

a { text-decoration: none; }

img { max-width: 100%; display: block; }

/* ============================================================
   TIPOGRAFÍA UTILITARIA
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label.light {
  color: var(--accent);
  opacity: 0.85;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-dark);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--accent-glow);
}

.btn.outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn.outline:hover {
  background: var(--white);
  color: var(--bg-dark);
  border-color: var(--white);
}

/* ============================================================
   ANIMACIÓN FADE-IN (scroll observer)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  background: rgba(11, 15, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header.scrolled {
  background: rgba(11, 15, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--accent);
  font-size: 22px;
}
.logo-accent {
  color: var(--accent);
}

/* Menú */
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu a {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.menu a:hover {
  color: var(--accent);
  background: rgba(78, 222, 203, 0.08);
}
.menu a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.menu a:hover::after {
  width: calc(100% - 24px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.30) 30%, rgba(0,0,0,0.92) 100%),
    url("img/Lago-Lariscota.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(78,222,203,0.07), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2bb8a8;
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-dark);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%       { box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-accent {
  color: var(--accent);
}

.hero-sub {
  color: rgba(238, 255, 0, 0.7);
  font-size: 16px;
  font-weight: bold;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}
.stat strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   INFO CARDS (debajo del hero)
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: -1px auto 0;
  position: relative;
  z-index: 10;
}

.info-card {
  background: #ffffff;
  padding: 36px 32px;
  border-top: 3px solid transparent;
  border-right: 1px solid #eef0f0;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.info-card:last-child { border-right: none; }
.info-card:hover {
  border-top-color: var(--accent);
  background: #f8fefe;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(78,222,203,0.12);
}

.info-card-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.info-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a2a;
}
.info-card p {
  font-size: 13px;
  color: #6a8a8a;
  line-height: 1.5;
}
.info-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: auto;
  padding-top: 8px;
}

/* ============================================================
   SECTION GENÉRICO
   ============================================================ */
.section {
  padding: 100px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* ============================================================
   SOBRE NOSOTROS
   ============================================================ */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.nosotros-texto p {
  font-size: 15px;
  color: #3a4a4a;
  margin-bottom: 16px;
  line-height: 1.75;
}
.nosotros-texto .btn { margin-top: 8px; }

.nosotros-imagen {
  position: relative;
}
.imagen-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.imagen-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.imagen-wrapper:hover img {
  transform: scale(1.03);
}
.imagen-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11,15,20,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.imagen-badge span {
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* ============================================================
   NOTICIAS
   ============================================================ */
/* === NOTICIAS SECTION (blanco) === */
.noticias-section {
  padding: 100px 24px;
  background: #ffffff; /* era: linear-gradient(180deg, var(--bg-dark)...) */
  position: relative;
  overflow: hidden;
}
.noticias-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at top center, rgba(78,222,203,0.06), transparent 60%); /* era: rgba(78,222,203,0.08) — más suave en blanco */
  pointer-events: none;
}

.noticias-section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  color: #1a2a2a; /* era: var(--text-light) */
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.noticias-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2.5px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 3px;
}
.noticias-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.noticias-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.noticia {
  background: #ffffff; /* era: var(--bg-card) */
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e0eeee; /* era: var(--border) */
  box-shadow: 0 16px 40px rgba(0,0,0,0.08); /* era: rgba(0,0,0,0.35) */
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.noticia:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(78,222,203,0.18); /* era: rgba(0,0,0,0.5) */
  border-color: rgba(78,222,203,0.4);
}

.noticia-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark); /* era: var(--accent) */
  background: rgba(78,222,203,0.1);
  padding: 4px 10px;
  border-radius: 30px;
  width: fit-content;
}

.noticia h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a2a2a; /* era: var(--text-light) */
  line-height: 1.4;
}
.noticia p {
  font-size: 13.5px;
  color: #000000; /* era: var(--text-muted) */
  line-height: 1.65;
  flex: 1;
}
.leer-mas {
  display: inline-block;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43,184,168,0.5); /* era: rgba(78,222,203,0.5) — accent-dark más legible en blanco */
  color: var(--accent-dark); /* era: var(--accent) */
  font-size: 12.5px;
  font-weight: 600;
  align-self: flex-start;
  transition: all var(--transition);
}
.leer-mas:hover {
  background: rgba(43,184,168,0.08); /* era: rgba(78,222,203,0.12) */
  box-shadow: 0 0 14px rgba(43,184,168,0.2); /* era: var(--accent-glow) */
  border-color: var(--accent-dark);
}



/* ============================================================
   VENTA / INVERSIÓN
   ============================================================ */
#venta2 {
  background: #ffffff;
}
#venta2 .section-label { color: var(--accent-dark); }
#venta2 h2 {
  color: #1a2a2a;
  font-size: clamp(26px, 4vw, 38px);
}

.venta2-desc {
  max-width: 680px;
  font-size: 16px;
  color: #4a6a6a;
  line-height: 1.75;
  margin-bottom: 44px;
}

.venta2-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.venta2-feature {
  background: #ffffff;
  border: 1px solid #e0eeee;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.venta2-feature:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(78,222,203,0.15);
  transform: translateY(-3px);
}
.venta2-feature span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.venta2-feature p {
  font-size: 13px;
  font-weight: 600;
  color: #2a4a4a;
}

.venta2-btn-center {
  display: flex;
  justify-content: center;
}


#venta {
  background: #f7fafa;
}
#venta .section-label { color: var(--accent-dark); }
#venta h2 {
  color: #171517;
  font-size: clamp(26px, 4vw, 38px);
}

.venta-desc {
  max-width: 680px;
  font-size: 16px;
  color: #1f2525;
  line-height: 1.75;
  margin-bottom: 44px;
}

.venta-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.venta-feature {
  background: #ffffff;
  border: 1px solid #e0eeee;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.venta-feature:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(78,222,203,0.15);
  transform: translateY(-3px);
}
.venta-feature span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.venta-feature p {
  font-size: 13px;
  font-weight: 600;
  color: #2a4a4a;
}

.venta-btn-center {
  display: flex;
  justify-content: center;
}

/* ============================================================
   GALERÍA
   ============================================================ */
/* === GALERÍA (fondo claro) === */
#galeria {
  background: #f7fafa; /* era: linear-gradient(180deg, var(--bg-dark)...) */
  padding: 100px 0;
}
#galeria .container {
  padding: 0 24px;
  text-align: center;
}
#galeria h2 {
  text-align: center;
  color: #1a2a2a; /* añadido para fondo claro */
}
.galeria-desc {
  font-size: 15px;
  color: #000000; /* era: var(--text-body) */
  max-width: 700px;
  margin: 16px auto 50px;
  line-height: 1.75;
  text-align: center;
}
.galeria-desc strong { color: var(--accent-dark); /* era: var(--accent) */ }

.gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
}
.gallery::-webkit-scrollbar { display: none; }

.gallery img {
  width: 305px;
  height: 205px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1px solid #e0eeee; /* era: var(--border) */
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15); /* era: rgba(0,0,0,0.5) */
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(43,184,168,0.08); /* era: rgba(78,222,203,0.12) */
  border: 1px solid #e0eeee; /* era: var(--border) */
  color: var(--accent-dark); /* era: var(--accent) */
  font-size: 20px;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 50%;
  z-index: 5;
  transition: all var(--transition);
  line-height: 1;
}
.arrow.left  { left: 0; }
.arrow.right { right: 0; }
.arrow:hover {
  background: rgba(43,184,168,0.15); /* era: rgba(78,222,203,0.25) */
  box-shadow: 0 0 20px rgba(43,184,168,0.2); /* era: var(--accent-glow) */
}

/* ============================================================
   CONTACTO
   ============================================================ */
#contacto {
  background: #ffffff;
}
#contacto h2 { color: #1a2a2a; }
#contacto .section-label { color: var(--accent-dark); }

.contacto-desc {
  font-size: 15px;
  color: #6a8a8a;
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-form {
  max-width: 600px;
  background:
    linear-gradient(rgba(11,15,20,0.90), rgba(11,15,20,0.90)),
    url("img/contact-bg.jpg") center / cover;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 0 0 1px rgba(78,222,203,0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all var(--transition);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(78,222,203,0.5);
  background: rgba(78,222,203,0.06);
  box-shadow: 0 0 0 3px rgba(78,222,203,0.12);
}

.form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-dark);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.4px;
  margin-top: 6px;
}
.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--accent-glow);
}
.btn-icon {
  font-size: 16px;
  transition: transform var(--transition);
}
.form-btn:hover .btn-icon { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
}
.footer-brand strong { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   GALLERY GRID (páginas de noticias)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ============================================================
   HEADER NOTICIA (páginas internas)
   ============================================================ */
.header-noticia {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2f2f 100%);
  padding: 90px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.header-noticia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(78,222,203,0.15), transparent 60%);
  pointer-events: none;
}
.header-noticia h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.header-noticia .subtitulo,
.header-noticia p {
  max-width: 700px;
  margin: 14px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.header-noticia a { color: var(--accent); transition: color var(--transition); }
.header-noticia a:hover { color: #7ff3e4; }

.btn-volver {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 20px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-volver:hover {
  background: var(--accent);
  color: var(--bg-dark);
}
.header-noticia .btn-volver {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

/* Layout noticia interna */
.noticia-layout {
  max-width: 1100px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.noticia-texto { text-align: left; }
.noticia-texto .subtitulo,
.noticia-texto p { margin-left: 0; margin-right: 0; text-align: left; }

.noticia-imagen {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  margin-top: 28px;
}
.noticia-imagen img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   NAVBAR alternativa (páginas internas)
   ============================================================ */
.navbar {
  background: var(--bg-dark);
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .venta-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 40px; }
  .noticia-layout { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid #eef0f0; }
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(11,15,20,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-top: 1px solid var(--border);
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px 16px; font-size: 15px; }
  .hamburger { display: flex; }
  .hero-title { font-size: 38px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 24px; }
  .gallery-wrapper { padding: 0 40px; }
  .venta-features { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-stats .stat strong { font-size: 20px; }
  .venta-features { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .navbar { padding: 14px 20px; }
}
