/* =========================================================
   NEW GARDEN – CSS GENERAL (FUSIÓN FINAL)
   Base: original + ajustes de unificación visual
   Reglas:
   - Títulos robustos
   - Burbujas (HOME) como el original (misma distribución)
   - Botones genéricos: dorado + texto blanco
   - Footer: mantener tal cual (estructura y estilos del original)
========================================================= */


/* =========================================================
   1) VARIABLES (marca)
========================================================= */
:root{
  --ng-green: #213B2D;
  --ng-gold: #F3C955;        /* dorado marca */
  --ng-gold-2: #A78E48;      /* dorado oscuro marca */
  --ng-ivory: #F5F4EC;       /* marfil */
  --ng-gray: #A2ABA5;

  --ng-text: #1f2322;
  --ng-muted: rgba(31,35,34,.72);
  --ng-border: rgba(33,59,45,.14);
  --ng-shadow: 0 10px 30px rgba(0,0,0,.06);

  --ng-radius: 16px;
  --ng-radius-sm: 12px;
}


/* =========================================================
   2) BASE
========================================================= */
html{ scroll-behavior:smooth; }

body{
  color: var(--ng-text);
  background: #fff;
  line-height: 1.6;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a{
  color: var(--ng-gold-2);
  text-decoration: none;
}
a:hover{
  color: var(--ng-gold-2);
  text-decoration: underline;
}

img{ max-width:100%; height:auto; }

p{ color: var(--ng-muted); }


/* =========================================================
   3) TIPOGRAFÍA – TÍTULOS ROBUSTOS (GLOBAL)
   (más negro y más grueso, sin romper Helix)
========================================================= */
h1, h2, h3, h4{
  color: #0f0f0f;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.ng-head h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: #0f0f0f;
}

.ng-head p{
  margin: 0;
  max-width: 780px;
  font-size: 16px;
}


/* =========================================================
   4) CONTENEDORES Y SECCIONES
========================================================= */
.ng-container{ max-width: 1140px; margin: 0 auto; padding: 0 18px; }

.ng-section{ padding: 64px 0; }
.ng-section--tight{ padding: 40px 0; }
.ng-section--ivory{ background: var(--ng-ivory); }

.ng-section--line{ position: relative; }
.ng-section--line:before{
  content:"";
  position:absolute; left:0; right:0; top:0;
  height: 1px;
  background: var(--ng-border);
}


/* =========================================================
   5) GRIDS / CARDS (base)
========================================================= */
.ng-grid{ display:grid; gap: 18px; }
.ng-grid-2{ grid-template-columns: repeat(2, 1fr); }
.ng-grid-3{ grid-template-columns: repeat(3, 1fr); }
.ng-grid-4{ grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px){
  .ng-grid-4{ grid-template-columns: repeat(2, 1fr); }
  .ng-grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .ng-grid-4, .ng-grid-3, .ng-grid-2{ grid-template-columns: 1fr; }
}

.ng-card{
  background:#fff;
  border: 1px solid var(--ng-border);
  border-radius: var(--ng-radius);
  padding: 18px;
  box-shadow: var(--ng-shadow);
}
.ng-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: #0f0f0f;
  font-weight: 800;
}
.ng-card p{ margin:0; font-size: 14px; }


/* =========================================================
   6) BOTONES – GENÉRICOS (DORADO + TEXTO BLANCO)
   Nota: sin tocar estructura del footer (solo estilo de botones)
========================================================= */
.ng-actions{ margin-top: 18px; display:flex; gap: 12px; flex-wrap: wrap; align-items:center; }

/* Base */
button,
input[type="submit"],
input[type="button"],
a.btn,
.btn,
.button,
.ng-btn,
.ng-btn-services{
  background: var(--ng-gold) !important;
  color: #ffffff !important;
  border: 1px solid rgba(167,142,72,.45) !important;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  font-weight: 800 !important;
  letter-spacing: .2px;
  text-decoration:none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 8px 18px rgba(167,142,72,.18);
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a.btn:hover,
.btn:hover,
.button:hover,
.ng-btn:hover,
.ng-btn-services:hover{
  background: #e9bf4e !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(167,142,72,.22);
}

/* Variante outline (si la usás) */
.ng-btn--outline{
  background: transparent !important;
  color: var(--ng-gold-2) !important;
  border: 1px solid rgba(167,142,72,.45) !important;
  box-shadow: none !important;
}
.ng-btn--outline:hover{
  background: rgba(243,201,85,.12) !important;
}


/* =========================================================
   7) HEADER (Helix)
========================================================= */
.sp-header{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33,59,45,.10);
}
.sp-header .logo img{ max-height: 54px; }

.sp-megamenu-parent > li > a{
  color: var(--ng-green) !important;
  font-weight: 700;
  letter-spacing: .1px;
}
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li > a:hover{
  color: var(--ng-gold-2) !important;
}

#offcanvas-toggler{ color: var(--ng-green) !important; }


/* =========================================================
   8) SLIDER – SIMPLE FADE (DEJAMOS UNA SOLA DEFINICIÓN LIMPIA)
   Desktop 1920x760 / Mobile 1080x1350
========================================================= */
.ng-simple-slider{
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0 !important;
  background: #000;

  aspect-ratio: 1920 / 760;
  max-height: 760px;
  min-height: 360px;
}

.ng-simple-slider .ng-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: ngFade 15s infinite;
  will-change: opacity;
}

/* Fallback visible */
.ng-simple-slider .ng-slide.s1{ opacity: 1; }

.ng-simple-slider .ng-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ng-simple-slider .ng-slide.s1{ animation-delay: 0s; }
.ng-simple-slider .ng-slide.s2{ animation-delay: 5s; }
.ng-simple-slider .ng-slide.s3{ animation-delay: 10s; }

@keyframes ngFade{
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 768px){
  .ng-simple-slider{
    aspect-ratio: 4 / 5;
    max-height: none;
    min-height: 520px;
  }
}


/* =========================================================
   9) HOME – SEPARADO Y UNIFORME (espaciados y coherencia)
========================================================= */

/* Bloque servicios (tu versión) */
.ng-services{
  background: #ffffff;
  padding: clamp(60px, 6vw, 90px) 0;
  border: 1px solid rgba(184, 150, 70, 0.25);
  border-radius: 18px;
}

.ng-services__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.ng-services__header{
  max-width: 720px;
  margin-bottom: 42px;
}

.ng-services__header h2{
  font-size: clamp(30px, 3vw, 40px);
  margin-bottom: 14px;
  color: #0f0f0f;
  font-weight: 800;
}

.ng-services__header p{
  font-size: 16px;
  line-height: 1.8;
  color: #4a5a56;
}

/* Grid servicios */
.ng-services__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 56px; /* uniformidad */
}

.ng-service h3{
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f0f0f;
  font-weight: 800;
}

.ng-service p{
  font-size: 15px;
  line-height: 1.7;
  color: #5b6a66;
}

.ng-services__cta{ margin-top: 44px; }

@media (max-width: 768px){
  .ng-services{
    border-radius: 16px;
  }
  .ng-services__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ng-services__header{ margin-bottom: 32px; }
}

/* ===== Por qué elegir (BURBUJAS) – TAL CUAL ORIGINAL (misma distribución) ===== */
.ng-why{
  background: #ffffff;
  padding: clamp(60px, 6vw, 90px) 0;
}

.ng-why__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.ng-why__header{
  max-width: 760px;
  margin-bottom: 42px;
}

.ng-why__header h2{
  font-size: clamp(30px, 3vw, 40px);
  margin: 0 0 12px;
  color: #0f0f0f;
  font-weight: 800;
}

.ng-why__header p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5a56;
}

/* DISTRIBUCIÓN ORIGINAL */
.ng-why__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* BURBUJA ORIGINAL (borde dorado mantenido) */
.ng-why__card{
  background: #ffffff;
  border: 1px solid rgba(184, 150, 70, 0.25);
  border-radius: 16px;
  padding: 22px 22px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.ng-why__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(184, 150, 70, 0.18);
  border-color: rgba(184, 150, 70, 0.45);
}

.ng-why__card h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: #0f0f0f;
  font-weight: 800;
}

.ng-why__card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5b6a66;
}

.ng-why__card--wide{ grid-column: 1 / -1; }

@media (max-width: 768px){
  .ng-why__grid{ grid-template-columns: 1fr; }
}

/* Instalaciones + Actividades (como venía) */
.ng-duo-card{
  background: #ffffff;
  border: 1px solid rgba(184, 150, 70, 0.25);
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 18px;
}
.ng-duo-card h2,
.ng-duo-card h3{
  margin: 0 0 10px;
  color: #0f0f0f;
  font-weight: 800;
}
.ng-duo-card p{
  margin: 0 0 14px;
  color: #5b6a66;
  line-height: 1.7;
}
.ng-duo-card a{
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(184, 150, 70, 0.35);
}
.ng-duo-card a:hover{
  border-bottom-color: rgba(184, 150, 70, 0.75);
}
@media (max-width: 768px){
  .ng-duo-card{
    padding: 22px 20px;
    border-radius: 16px;
  }
}


/* =========================================================
   10) FORMULARIOS (general + WhatsApp)
========================================================= */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select{
  width: 100%;
  border: 1px solid rgba(33,59,45,.18);
  border-radius: var(--ng-radius-sm);
  padding: 12px 12px;
  background: #fff;
  outline: none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(243,201,85,.9);
  box-shadow: 0 0 0 4px rgba(243,201,85,.18);
}

.ng-wa{
  padding: clamp(60px, 6vw, 90px) 0;
}

.ng-wa__card{
  width: min(1100px, 92%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(184, 150, 70, 0.25);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 38px);
}

.ng-wa__title{
  margin: 0 0 12px;
  color: #0f0f0f;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
}

.ng-wa__intro{
  margin: 0 0 22px;
  color: #5b6a66;
  line-height: 1.7;
  max-width: 82ch;
}

.ng-wa__subtitle{
  margin: 0 0 16px;
  color: #0f0f0f;
  font-size: 18px;
  font-weight: 800;
}

.ng-wa__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.ng-wa__field--full{ grid-column: 1 / -1; }

.ng-wa__field label{
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f0f0f;
  font-size: 14px;
}

.ng-wa__field input,
.ng-wa__field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(184, 150, 70, 0.25);
  background: #ffffff;
  padding: 12px 14px;
  outline: none;
  color: #2c3b36;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ng-wa__field textarea{
  resize: vertical;
  min-height: 120px;
}
.ng-wa__field input:focus,
.ng-wa__field textarea:focus{
  border-color: rgba(184, 150, 70, 0.55);
  box-shadow: 0 0 0 4px rgba(184, 150, 70, 0.12);
}
.ng-wa__actions{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ng-wa__hint{
  margin: 0;
  color: #5b6a66;
  font-size: 14px;
}
@media (max-width: 768px){
  .ng-wa__grid{ grid-template-columns: 1fr; }
}


/* =========================================================
   11) FOOTER – MANTENER TAL CUAL ORIGINAL (NO TOCAR ESTRUCTURA)
========================================================= */
.ng-footer{
  background: #121614; /* color del centro */
  color: rgba(255,255,255,.62);
  margin-top: 70px;
}

.ng-footer__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.ng-footer__brand{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #f3c84b;
  margin-bottom: 10px;
}

.ng-footer__text{
  margin: 0;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 42ch;
}

.ng-footer__title{
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 12px;
}

.ng-footer__links{
  display: grid;
  gap: 10px;
}

.ng-footer__links a,
.ng-footer__meta a,
.ng-footer__bottom a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.ng-footer__links a:hover,
.ng-footer__meta a:hover,
.ng-footer__bottom a:hover{
  color: rgba(255,255,255,.95);
  border-bottom-color: rgba(243,200,75,.65);
}

.ng-footer__meta{
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.ng-footer__btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f3c84b;
  color: #151515;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.ng-footer__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

/* Franja inferior: MISMO fondo que el centro */
.ng-footer__bottom{
  background: #121614; /* igual al footer */
  border-top: 1px solid rgba(255,255,255,.08);
}

.ng-footer__bottom-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.ng-footer__sep{ opacity: .4; }

@media (max-width: 900px){
  .ng-footer__inner{
    grid-template-columns: 1fr;
    padding: 44px 0;
  }
  .ng-footer__bottom-inner{
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .ng-footer__sep{ display: none; }
}

/* FIX: unificar fondo footer (forzado) */
.ng-footer,
.ng-footer__inner,
.ng-footer__bottom,
.ng-footer__bottom-inner{
  background: #121614 !important;
  background-image: none !important;
}
.ng-footer::before,
.ng-footer::after,
.ng-footer__bottom::before,
.ng-footer__bottom::after{
  content: none !important;
}


/* =========================================================
   12) DETALLES PREMIUM (opcionales del original)
========================================================= */
.ng-divider{
  height: 1px;
  background: rgba(33,59,45,.12);
  margin: 22px 0;
}
.ng-badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(243,201,85,.22);
  color: var(--ng-green);
  font-weight: 800;
  border: 1px solid rgba(167,142,72,.25);
}

/* Texto H1 en dos columnas (solo desktop) */
.ng-h1-text{
  column-count: 2;
  column-gap: 48px;
}
@media (max-width: 768px){
  .ng-h1-text{ column-count: 1; }
}





/* =========================================================
   AJUSTE FINAL – IDENTIDAD VISUAL
   Links · Títulos · Botones
========================================================= */

/* ---------- ENLACES: sin subrayado en todo el sitio ---------- */
a,
a:visited{
  text-decoration: none !important;
}

a:hover{
  text-decoration: none !important;
}

/* ---------- TÍTULOS: dorado oscuro (como referencia 404) ---------- */
h1,
h2,
h3{
  color: #A78E48 !important; /* dorado oscuro */
  font-weight: 800;
  letter-spacing: -0.3px;
}

/* Subtítulos menores */
h4,
h5{
  color: #213B2D;
  font-weight: 700;
}

/* ---------- BOTONES: dorado oscuro + texto blanco ---------- */
button,
input[type="submit"],
input[type="button"],
a.btn,
.btn,
.ng-btn,
.ng-btn-services,
.ng-footer__btn{
  background: #A78E48 !important; /* dorado oscuro */
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

/* Hover botón – sombra premium */
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a.btn:hover,
.btn:hover,
.ng-btn:hover,
.ng-btn-services:hover,
.ng-footer__btn:hover{
  background: #8f783d !important; /* un poco más oscuro */
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

/* ---------- BOTÓN ESPECIAL 404 (por si hereda otro estilo) ---------- */
.ng-error__actions a{
  background: #A78E48 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.30);
}
.ng-error__actions a:hover{
  background: #8f783d !important;
}




/* =========================================================
   BLOQUE "POR QUÉ ELEGIR NEW GARDEN"
   Fondo imagen FULL WIDTH + overlay
========================================================= */

.ng-why{
  position: relative;

  /* Full width real aunque esté dentro de container */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background-image: url("/images/fondo.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  padding: clamp(60px, 6vw, 90px) 0;
}

/* Overlay para legibilidad */
.ng-why::before{
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

/* Contenido arriba del fondo */
.ng-why__inner{
  position: relative;
  z-index: 1;
}








/* =========================================================
   FOOTER – Ajustes finales (redes + mail) + GoTop
========================================================= */

/* Redes debajo del botón */
.ng-footer__social{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.ng-footer__social a{
  color: rgba(255,255,255,.92) !important;
  font-size: 18px;
  text-decoration: none !important;
  opacity: .92;
  transition: opacity .2s ease, transform .2s ease;
}

.ng-footer__social a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Mail en franja inferior */
.ng-footer__mail{
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}

.ng-footer__mail:hover{
  color: rgba(255,255,255,.95) !important;
  border-bottom-color: rgba(243,200,75,.65);
}

/* Go to Top con flecha (Helix) */
#sp-scroll-up,
.scrollup{
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  background: #A78E48 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
}

#sp-scroll-up i,
#sp-scroll-up span,
.scrollup i,
.scrollup span{
  display: none !important;
}

#sp-scroll-up::before,
.scrollup::before{
  content: "?" !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}





/* =========================================================
   FOOTER – Redes sociales (imágenes)
========================================================= */

.ng-footer__social{
  margin-top: 14px;
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 16px;
}

.ng-footer__social a{
  display: inline-flex;
  align-items: left;
  justify-content: left;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ng-footer__social img{
  width: 30px;
  height: 30px;
  display: block;
}

/* Hover sutil premium */
.ng-footer__social a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

