/* ==========================================================================
   Puente de Dios — Tokens
   ========================================================================== */
:root {
  --turquoise-deep:   #0B7A75;
  --turquoise-bright: #17B8AE;
  --turquoise-mist:   #E4F5F3;
  --leaf-green:       #4C7A3A;
  --leaf-green-light: #8FBF6A;
  --cream-white:      #FBFBF9;
  --stone-gray:       #F2F1EC;
  --ink:              #23292B;
  --ink-soft:         #52605C;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 14px;
  --shadow-soft: 0 12px 30px rgba(11, 122, 117, 0.14);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 10px;
}

.eyebrow--center { text-align: center; }

:focus-visible {
  outline: 3px solid var(--leaf-green-light);
  outline-offset: 3px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 251, 249, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(11, 122, 117, 0.1);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  transition: color 0.35s ease;
}

.logo span { color: var(--turquoise-bright); }

.site-header.is-scrolled .logo { color: var(--ink); }
.site-header.is-scrolled .logo span { color: var(--turquoise-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.92;
}

.nav-links a:hover { opacity: 1; color: var(--turquoise-bright); }

.site-header.is-scrolled .nav-links a { color: var(--ink); }
.site-header.is-scrolled .nav-links a:hover { color: var(--turquoise-deep); }

.nav-cta {
  background: var(--leaf-green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover { background: var(--leaf-green-light); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--turquoise-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-links.is-open { transform: translateX(0); }

  .nav-links a { color: #fff; font-size: 1.1rem; }
  .site-header.is-scrolled .nav-links a { color: #fff; }

  .nav-cta { margin-top: 10px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(11,40,38,0.35) 0%, rgba(11,40,38,0.55) 100%),
    url('Resurces/imagen1.jpg');
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,52,49,0.25) 0%, rgba(9,52,49,0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
  max-width: 720px;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--turquoise-bright);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-bottom: 34px;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
  background: var(--turquoise-bright);
  color: #04302d;
}

.btn--primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 20px;
}

.scroll-cue__line {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
  animation: scrollCue 1.8s ease infinite;
}

@keyframes scrollCue {
  0%   { top: 8px; opacity: 1; }
  70%  { top: 20px; opacity: 0; }
  100% { top: 8px; opacity: 0; }
}

/* ==========================================================================
   Wave dividers (signature element — the river's edge)
   ========================================================================== */
.wave-divider {
  position: relative;
  margin-top: -2px;
  line-height: 0;
  z-index: 1;
}
.wave-divider svg { width: 100%; height: 100px; display: block; }

.wave-divider--top svg path { fill: var(--cream-white); }
.wave-divider--footer svg path { fill: var(--turquoise-deep); }
.wave-divider--sobre svg path { fill: var(--stone-gray); }

.wave-divider--sobre {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.wave-divider__brand {
  position: absolute;
  top: 55px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  letter-spacing: 1em;
  color: var(--turquoise-deep);
  z-index: 2;
}


@media (min-width: 768px) {
  .wave-divider svg { height: 90px; }
}

/* ==========================================================================
   Info / El Lugar
   ========================================================================== */
.info {
  padding: 5px 0 70px;
  background: var(--cream-white);
}

.info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.info__text h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 20px;
}

.info__text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.info__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 860px) {
  .info__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre {
  padding: 20px 0 100px;
  background: var(--stone-gray);
}
.sobre__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.sobre__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.sobre__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.sobre__text {
  padding: 0 6px;
}
.sobre__text h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 20px;
}
.sobre__text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.sobre__valores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.sobre__valores li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(11, 122, 117, 0.14);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--turquoise-deep);
}
.sobre__valores i { color: var(--leaf-green); }

.sobre__content {
  max-width: 680px;
  margin: 0 auto;
}

.sobre__image {
  margin: 24px 0;
}

.sobre__map-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--ink);
}

@media (min-width: 860px) {
  .sobre__grid { grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
  
}

/* ==========================================================================
   Servicios
   ========================================================================== */
.servicios {
  padding: 60px 0 100px;
  background: var(--turquoise-deep);
  color: #fff;
  text-align: center;
}

.servicios .eyebrow { color: var(--turquoise-mist); }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 50px;
  color: #fff;
}

.servicios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.servicio-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.servicio-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}

.servicio-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--leaf-green-light);
  color: #143c1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.servicio-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fff;
}

.servicio-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}

@media (min-width: 600px) {
  .servicios__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .servicios__grid { grid-template-columns: repeat(4, 1fr); }
}

.bg-chalecos {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Resurces/imagRentaC.jpeg');
}
.bg-estacionamiento {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Resurces/imagenEsta.jpeg');
}
.bg-campamento {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Resurces/imagenCamp.jpeg');
}
.bg-orientacion {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Resurces/imagenOrientacion.jpeg');
}
/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--turquoise-deep);
  color: #fff;
  padding-bottom: 20px;
  margin-top: -1px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
  padding: 10px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer__title span { color: var(--turquoise-bright); }

.footer__location {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.footer__location i { color: var(--turquoise-bright); margin-right: 6px; }

.footer__cta-text {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition: background 0.3s ease, transform 0.25s ease;
}

.social-links a:hover {
  background: var(--leaf-green-light);
  color: #143c1f;
  transform: translateY(-4px);
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 700px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
