*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --paper: #f1f5ef;
  --paper-alt: #e9efe6;
  --ink: #12332b;
  --forest: #1d4a42;
  --accent: #2f7d5a;
  --lime: #8fbf3f;
  --muted: #5c7168;
  --font-family: Akt;
}
body {
  margin: 0;
  background: var(--paper);
  font-family: "Space Grotesk + DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

nav {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 6vw;
  background: var(--paper);
  border-bottom: 1px solid rgba(18, 51, 43, 0.08);
}

.div-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.img-logo {
  width: 28px;
  height: 28px;
  flex: none;
}
.nav-brand {
font-family: var(--font-family);
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight:bold;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 4px;
}
.nav-brand span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
}

.nav-desktop-cta {
  min-width: 0;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
}
#hero span{
  color: #0f1f1f;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}
.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-dropdown{
  position:relative;
}
.nav-dropdown-trigger{
  display:flex;
  align-items:center;
  gap:.4rem;
  cursor:pointer;
}
.dropdown-caret{
  color:var(--muted);
  transition:transform .2s ease;
}

.dropdown-menu{
  position:absolute;
  top:calc(100% + .8rem);
  left:50%;
  transform:translateX(-50%) translateY(-6px);
  min-width:220px;
  background:#fff;
  border:1px solid rgba(18,51,43,.08);
  border-radius:10px;
  box-shadow:0 16px 32px rgba(18,51,43,.12);
  padding:.6rem;
  list-style:none;
  opacity:0;
  visibility:hidden;
  transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

/* escritorio: se abre con hover */
@media (min-width:901px){
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
    transition:opacity .18s ease, transform .18s ease;
  }
  .nav-dropdown:hover .dropdown-caret{
    transform:rotate(180deg);
  }
}

.dropdown-menu li{width:100%;}
.dropdown-menu a{
  display:block;
  padding:.65rem .8rem;
  border-radius:6px;
  font-size:.88rem;
  color:var(--forest);
  text-decoration:none;
  border-bottom:none; /* evita heredar el border-bottom del móvil */
  transition:background .15s ease, color .15s ease;
}
.dropdown-menu a:hover{
  background:var(--paper-alt);
  color:var(--ink);
}

/* móvil: sin hover, se abre con click via clase .open */
@media (max-width:900px){
  .nav-dropdown-trigger{
    justify-content:space-between;
  }
  .dropdown-menu{
    position:static;
    transform:none;
    box-shadow:none;
    border:none;
    border-radius:0;
    background:var(--paper-alt);
    padding:0;
    max-height:0;
    overflow:hidden;
    opacity:1;
    visibility:visible;
    transition:max-height .25s ease;
  }
  .nav-dropdown.open .dropdown-menu{
    max-height:200px;
    padding:.4rem 0;
  }
  .nav-dropdown.open .dropdown-caret{
    transform:rotate(180deg);
  }
  .dropdown-menu a{
    padding:.8rem 6vw .8rem 8vw;
    font-size:1rem;
  }
}

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

  .btn-primary-nav{
    display: none !important;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 0 8vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(18, 51, 43, 0.08);
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.btn-primary-nav {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  white-space: nowrap;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  border: 1px solid var(--lime);
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-primary-nav:hover {
  background: #7daa35;
}



.btn-primary {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  white-space: nowrap;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  border: 1px solid var(--lime);
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-primary:hover {
  background: #7daa35;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: var(--paper);
  padding: 0 6vw;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8vh 0;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: 0 0 1.4rem;
}

.hero-title {
  /*   font-family:"Anton", sans-serif;
 */

  font-family: "Akt", sans-serif;
  font-weight: bold;
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.8rem;
  letter-spacing: 1.2px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--forest);
  max-width: 46ch;
  margin: 0 0 2.6rem;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.btn {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(18, 51, 43, 0.22);
}
.btn-outline:hover {
  border-color: var(--ink);
}

/* --- decorative shapes, right column --- */
.hero-visual {
  position: relative;
  height: 70vh;
  min-height: 440px;
  z-index: 1;
}
.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-glow {
  width: 420px;
  height: 420px;
  top: 8%;
  right: 0;
  background: radial-gradient(
    circle,
    rgba(47, 125, 90, 0.18) 0%,
    rgba(47, 125, 90, 0) 70%
  );
  filter: blur(10px);
}
.shape-ring {
  width: 260px;
  height: 260px;
  top: 32%;
  right: 14%;
  border: 1px solid rgba(18, 51, 43, 0.14);
}
.shape-blob {
  width: 190px;
  height: 170px;
  bottom: 14%;
  right: 22%;
  background: var(--accent);
  opacity: 0.92;
  border-radius: 48% 52% 58% 42% / 45% 40% 60% 55%;
}
.shape-dot {
  width: 14px;
  height: 14px;
  bottom: 28%;
  right: 10%;
  background: var(--lime);
}

.scroll-hint {
  position: absolute;
  bottom: 2.4rem;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--muted);
  z-index: 2;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 26px;
  background: linear-gradient(var(--muted), transparent);
}

@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 0 6vw;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    padding: 12vh 0 8vh;
  }
}

.services-section {
  background: var(--paper);
  padding: 10vh 6vw;
}
.services-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* header */
.services-header {
  max-width: 640px;
  margin-bottom: 6vh;
}

.services-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.eyebrow-line {
  width: 24px;
  height: 1px;
  background: rgba(18, 51, 43, 0.25);
}

.services-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.services-title span {
  display: block;
  color: var(--forest);
}

.services-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--forest);
  max-width: 52ch;
  margin: 0;
}

/* grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card {
  background: var(--paper-alt);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.service-card-main {
  border-left: 2px solid var(--accent);
  background: #fff;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.service-number {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.service-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.service-body h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.28;
  color: var(--ink);
  margin: 0 0 0.8rem;
}

.service-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--forest);
  margin: 0 0 1.3rem;
}

.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.service-benefit span {
  color: var(--accent);
  flex: none;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 51, 43, 0.25);
  align-self: flex-start;
  padding-bottom: 2px;
  margin-top: auto;
  transition: border-color 0.15s ease;
}
.service-link:hover {
  border-color: var(--ink);
}
.service-link .arrow {
  display: none;
}

/* featured (04) */
.service-featured {
  position: relative;
  background: var(--ink);
  border-radius: 10px;
  padding: 2.6rem 2.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5vh;
  overflow: hidden;
}
.featured-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -60px;
  top: -100px;
  background: radial-gradient(
    circle,
    rgba(143, 191, 63, 0.25) 0%,
    rgba(143, 191, 63, 0) 70%
  );
}
.featured-number {
  font-size: 0.8rem;
  color: rgba(241, 245, 239, 0.55);
  align-self: flex-start;
  z-index: 1;
}
.featured-content {
  position: relative;
  z-index: 1;
}
.featured-content .service-label {
  color: var(--lime);
}
.featured-content h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1.28;
  color: var(--paper);
  margin: 0 0 0.9rem;
}
.featured-content h3 span {
  display: block;

  color: rgba(241, 245, 239, 0.7);
}
.featured-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(241, 245, 239, 0.75);
  max-width: 44ch;
  margin: 0 0 1.4rem;
}
.featured-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.featured-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(241, 245, 239, 0.8);
  border: 1px solid rgba(241, 245, 239, 0.2);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
}

.featured-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-left: 1px solid rgba(241, 245, 239, 0.15);
  padding-left: 2.5rem;
}
.featured-action-text small {
  display: block;
  font-size: 0.8rem;
  color: rgba(241, 245, 239, 0.6);
  margin-bottom: 0.3rem;
}
.featured-action-text strong {
  font-family: var(--font-family);

  font-weight: 600;
  font-size: 1.05rem;
  color: var(--paper);
}

/* buttons reused from hero */

/* bottom CTA */
.services-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 5vh;
  border-top: 1px solid rgba(18, 51, 43, 0.12);
}
.bottom-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.services-bottom h3 {
  font-family: var(--font-family);

  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.services-bottom h3 span {
  display: block;
  color: var(--accent);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-featured {
    grid-template-columns: 1fr;
  }
  .featured-action {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(241, 245, 239, 0.15);
    padding-top: 1.4rem;
  }
}

/* ── SECCIÓN ENFOQUE (ESTILO LÍNEA TÉCNICA) ── */
#approach {
  background: var(--paper-alt);
  padding: 10vh 6vw;
}
.approach-container {
  max-width: 1180px;
  margin: 0 auto;
}

.approach-header {
  max-width: 640px;
  margin-bottom: 8vh;
}

.approach-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.approach-title {
  font-family: "Akt", sans-serif;

  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 1.4rem;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.4rem;
}

.approach-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--forest);
  max-width: 52ch;
  margin: 0;
}

/* timeline */
.approach-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 6vh;
}
.approach-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(18, 51, 43, 0.15);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.timeline-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(18, 51, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.timeline-info h3 {
  font-family: var(--font-family);

  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.28;
  color: var(--ink);
  margin: 0 0 0.6rem;
}

.timeline-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--forest);
  margin: 0;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* paso destacado */
.timeline-highlight {
  background: #fff;
  border: 1px solid rgba(47, 125, 90, 0.25);
  border-radius: 10px;
  padding: 1.6rem 1.4rem;
  margin-top: -1.6rem;
  box-shadow: 0 12px 28px rgba(18, 51, 43, 0.08);
}
.timeline-highlight .timeline-marker {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* banner CTA */
.approach-cta-banner {
  background: var(--ink);
  border-radius: 10px;
  padding: 3rem 2.4rem;
}
.approach-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.approach-cta-content p {
  font-family: var(--font-family);

  font-weight: 600;
  font-size: 1.4rem;
  color: var(--paper);
  margin: 0;
}
.approach-cta-content .btn-primary {
  background: var(--lime);
  color: var(--ink);
}

@media (max-width: 900px) {
  .approach-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .approach-timeline::before {
    display: none;
  }
  .timeline-highlight {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .approach-timeline {
    grid-template-columns: 1fr;
  }
}

#about {
  background: var(--paper);
  padding: 10vh 6vw;
}
.about-container {
  max-width: 1180px;
  margin: 0 auto;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5vw;
}

/* left column */
.about-left {
  max-width: 440px;
}

.about-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.about-title {
  font-family: var(--font-family);

  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 1.4rem;
}

.hero-divider-left {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.6rem;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--forest);
  margin: 0;
}

/* right column */
.about-right {
  padding-top: 0.4rem;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--forest);
  max-width: 60ch;
  margin: 0 0 1.6rem;
}
.about-paragraph:last-of-type {
  margin-bottom: 2.2rem;
}

.about-signature-block {
  border-left: 2px solid var(--accent);
  padding-left: 1.4rem;
}

.about-quote {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
  margin: 0;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-left {
    max-width: none;
  }
}

/* ── SECCIÓN CONTACTO (ESTILO MINIMALISTA / SIN CAJAS) ── */
#contact {
  padding: 130px 24px;
  background: #0f1f1f; /* Fondo oscuro sofisticado */
  color: #ffffff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

/* Cabecera */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007562;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: var(--font-family);
}

.section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* Formulario sin contenedores ni bordes de tarjeta */
.contact-form-minimal {
  display: flex;
  flex-direction: column;
  gap: 32px; /* Espacios generosos para lectura limpia */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Inputs minimalistas: solo línea inferior, sin fondos de caja */
.form-group input,
.form-group textarea,
.form-select-minimal {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #ffffff;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2); /* Única línea sutil abajo */
  border-radius: 0;
  padding: 12px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

/* Al hacer foco, la línea inferior cambia a tu verde de acento */
.form-group input:focus,
.form-group textarea:focus,
.form-select-minimal:focus {
  border-bottom-color: #007562;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Select minimalista adaptado */
.form-select-minimal {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px;
  padding-right: 24px;
}

/* Opciones del select para navegadores compatibles con modo oscuro */
.form-select-minimal option {
  background-color: #0f1f1f;
  color: #ffffff;
}

.form-submit {
  margin-top: 20px;
}
/* ── ESTILOS PARA EL CHECKBOX DE PRIVACIDAD ── */
.form-group-checkbox {
  margin-top: 5px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

/* Ocultar el checkbox nativo feo */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Crear una casilla personalizada alineada con el diseño minimalista */
.checkmark {
  position: relative;
  top: 2px;
  flex-shrink: 0;
  height: 18px;
  width: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: #007562;
}

/* Estilo cuando está seleccionado (checked) */
.checkbox-container input:checked ~ .checkmark {
  background-color: #007562;
  border-color: #007562;
}

/* Dibujar la palomita (check) usando CSS puro */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Texto del checkbox y enlace */
.checkbox-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.checkbox-text a {
  color: #007562;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.checkbox-text a:hover {
  color: #5aa02c;
}

/* ── SECCIÓN FOOTER ── */
#footer-light {
  background: var(--paper-alt);
  padding: 8vh 6vw 4vh;
  border-top: 1px solid rgba(18, 51, 43, 0.1);
}
.footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 6vh;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: "Akt", "Anton", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--forest);
  margin: 0;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-info {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--forest);
  margin: 0 0 1.2rem;
}

.footer-action-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 3vh;
  border-top: 1px solid rgba(18, 51, 43, 0.1);
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.footer-credits a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
}
.footer-credits a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 1rem;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}
/* ── SECCIÓN POLÍTICA DE PRIVACIDAD ── */
.privacy-section {
  padding: 140px 24px 100px;
  background: #0f1f1f; /* Fondo oscuro corporativo */
  color: #ffffff;
  min-height: 100vh;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
}

.privacy-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007562;
  margin-bottom: 16px;
  display: block;
}

.privacy-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.privacy-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Contenido de los bloques legales */
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.privacy-block p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-block ul {
  margin: 0 0 16px 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-block ul li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.privacy-block strong {
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
}

/* 1. ANIMACIÓN GLOBAL DEL SCROLL */
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
