/* ==========================================
   VARIABLES & RESET
   ========================================== */
:root {
  --green-dark:  #1e3a1e;
  --green-mid:   #2e6b3e;
  --green-light: #6aab7f;
  --green-pale:  #d4edd9;
  --sand:        #f4ede0;
  --sand-light:  #faf7f2;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --text:        #2d2d2d;
  --gray:        #6b7280;
  --gray-light:  #e5e7eb;
  --shadow:      0 4px 24px rgba(30,58,30,.10);
  --shadow-lg:   0 12px 40px rgba(30,58,30,.16);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .25s ease;
  --max-w:       1160px;
  --font:        'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.section-heading {
  text-align: center;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-heading.left { text-align: left; }

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: .5rem;
}
.section-subintro {
  text-align: center;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: .97rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46,107,62,.35);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 8px 24px rgba(46,107,62,.45); }

.btn-outline {
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
}
.btn-outline:hover { background: var(--green-mid); color: var(--white); }

.btn-linkedin {
  background: #0a66c2;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,102,194,.3);
  margin-top: 1rem;
}
.btn-linkedin:hover { background: #004182; }

.full-width { width: 100%; justify-content: center; }

/* ==========================================
   REVEAL ANIMATION
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   NAVIGATION
   ========================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(30,58,30,.10);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
  flex-shrink: 0;
}
#navbar.scrolled .nav-logo { color: var(--green-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color var(--transition), background var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.15); }
#navbar.scrolled .nav-links a:hover { color: var(--green-mid); background: var(--green-pale); }

.nav-links .nav-cta {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 8px 20px;
}
.nav-links .nav-cta:hover { background: var(--green-dark) !important; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
}
#navbar.scrolled .lang-switcher { color: var(--gray-light); }

.lang-btn {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
#navbar.scrolled .lang-btn { color: var(--gray); }
.lang-btn.active, .lang-btn:hover { color: var(--white) !important; background: rgba(255,255,255,.2); }
#navbar.scrolled .lang-btn.active, #navbar.scrolled .lang-btn:hover { color: var(--green-mid) !important; background: var(--green-pale); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
#navbar.scrolled .nav-burger span { background: var(--green-dark); }

/* ==========================================
   HERO
   ========================================== */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 100vh;
}

.hero-col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(24px, 4vw, 56px) 80px clamp(24px, 5vw, 72px);
}

.hero-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 16px;
  gap: 0;
}

.hero-photo-card {
  width: 78%;
  height: 37vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 10px 36px rgba(0,0,0,.4);
}

.hero-photo-card:first-child {
  align-self: flex-start;
  z-index: 2;
}

.hero-photo-card:last-child {
  align-self: flex-end;
  margin-top: -22px;
  z-index: 1;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.88) saturate(.95);
  transition: filter .6s ease;
}
.hero-photo-card:hover img { filter: brightness(.98) saturate(1.05); }

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  max-width: 600px;
  line-height: 1.75;
}

/* ---- Hero typographic headline ---- */
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hl-top {
  font-family: var(--font);
  font-size: clamp(.75rem, 1.6vw, 1rem);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
}

.hl-word {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(5rem, 13vw, 10rem);
  color: var(--white);
  line-height: 1;
  /* padding-bottom lifts the descender of "p" clear of the next line */
  padding-bottom: .18em;
  margin-bottom: .1rem;
  text-shadow: 0 4px 40px rgba(46,107,62,.5);
  display: block;
}

.hl-bottom {
  font-family: var(--font);
  font-size: clamp(1.35rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255,255,255,.88);
}

.hl-green {
  color: var(--green-light);
  font-weight: 600;
}

/* Bold words in hero subtitle */
.hero-subtitle {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-subtitle strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.18em;
  font-weight: 700;
  color: var(--white);
  border-bottom: 3px solid var(--green-light);
  padding-bottom: 2px;
  letter-spacing: .01em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   DIFERENCIAL
   ========================================== */
#diferencial {
  background: var(--sand-light);
  padding: 64px 0;
}

.diferencial-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-mid);
}

.diferencial-icon { flex-shrink: 0; margin-top: 4px; }

.diferencial-label {
  font-size: 1.3rem;
  color: var(--green-mid);
  margin-bottom: .6rem;
}
#diferencial p { color: var(--text); font-size: 1.05rem; max-width: 700px; }

/* ==========================================
   SERVICES
   ========================================== */
#servicios {
  background: var(--white);
  padding: 96px 0 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, border-color .25s, box-shadow .25s;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); transform: translateY(-4px); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
  letter-spacing: -.01em;
}

.service-card p { color: var(--gray); font-size: .93rem; line-height: 1.65; }

.tooltip-trigger {
  border-bottom: 1px dashed var(--green-mid);
  cursor: help;
  color: var(--green-mid);
  font-weight: 500;
  position: relative;
}
.tooltip-trigger:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  font-size: .8rem;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: normal;
  width: 260px;
  line-height: 1.5;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  font-weight: 400;
}
.tooltip-trigger:hover::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--green-dark);
  z-index: 10;
}

.services-extra {
  text-align: center;
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
}
.extra-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .6rem;
}
.services-extra p { color: var(--gray); margin-bottom: 1.5rem; }

/* ==========================================
   IMPACT PHOTOS
   ========================================== */
#impact-photos {
  padding: 0;
  overflow: hidden;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 380px;
}

.impact-card {
  position: relative;
  overflow: hidden;
}

.impact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
  filter: brightness(.75) saturate(.9);
}
.impact-card:hover img { transform: scale(1.04); filter: brightness(.65) saturate(1); }

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,30,.80) 0%, rgba(30,58,30,.15) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px 40px;
}

.impact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* ==========================================
   STATS
   ========================================== */
#stats {
  background: var(--green-dark);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-value {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.4; }
.stat-note  { font-size: .72rem; color: rgba(255,255,255,.38); margin-top: .35rem; line-height: 1.35; }

.stats-context {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  letter-spacing: .04em;
}

/* ==========================================
   MODALIDADES
   ========================================== */
#modalidades {
  background: var(--sand);
  padding: 96px 0;
}

.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.modalidad-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.modalidad-card.visible { opacity: 1; transform: translateY(0); }
.modalidad-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.modalidad-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalidad-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 20px;
}

.modalidad-card h3 { color: var(--green-dark); font-size: 1.1rem; }
.modalidad-card p { color: var(--gray); font-size: .93rem; line-height: 1.65; }

/* ==========================================
   ABOUT / QUIÉN SOY
   ========================================== */
#quien {
  background: var(--white);
  padding: 96px 0 64px;
}

/* Float layout for embedded photo in bio text */
.about-content {
  margin-top: 2rem;
  margin-bottom: 64px;
}
.about-content::after {
  content: '';
  display: table;
  clear: both;
}

.about-photo-float {
  float: left;
  width: 220px;
  margin: 0 36px 24px 0;
  position: relative;
  flex-shrink: 0;
}

/* Stale grid layout kept below for reference — HTML now uses float */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 2rem;
  margin-bottom: 64px;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: grayscale(10%);
  box-shadow: var(--shadow-lg);
}

.about-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--green-pale);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-mid);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
}

.about-bio {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.about-bio p { margin-bottom: 1rem; }

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

.tag-group h3 {
  color: var(--green-dark);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.tag-group ul { display: flex; flex-direction: column; gap: 8px; }
.tag-group li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .93rem;
  color: var(--text);
}
.tag-group li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* Certifications */
.certifications {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.certifications h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--green-pale);
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cert-col h4 {
  color: var(--green-mid);
  margin-bottom: 1rem;
}

.cert-col ul { display: flex; flex-direction: column; gap: 10px; }
.cert-col li {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.45;
}
.cert-col li::before {
  content: '▸';
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
#testimonios {
  background: var(--sand);
  padding: 96px 0;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform .4s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 24px;
  left: 36px;
  font-size: 5rem;
  color: var(--green-pale);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-mid);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-dark);
}
.author-role { font-size: .82rem; color: var(--gray); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: scale(1.3);
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition);
}
.slider-btn:hover { background: var(--green-mid); color: var(--white); }

/* ==========================================
   CONTACT
   ========================================== */
#contacto {
  background: var(--green-dark);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

#contacto .section-heading { color: var(--white); }
.contact-text p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7; margin-bottom: .5rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray); }
.form-group input, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--sand-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,107,62,.12);
  background: var(--white);
}

.form-status {
  margin-top: .75rem;
  font-size: .9rem;
  text-align: center;
  min-height: 24px;
}
.form-status.success { color: var(--green-mid); }
.form-status.error { color: #dc2626; }

/* ==========================================
   FOOTER
   ========================================== */
#footer {
  background: #111c11;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
}

.footer-copy { color: rgba(255,255,255,.4); font-size: .82rem; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: var(--white); }

.footer-admin {
  font-size: .78rem;
  color: rgba(255,255,255,.3) !important;
  text-decoration: underline;
}

.carbon-badge {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 12px;
}
.carbon-badge #wcb_2 {
  color: rgba(255,255,255,.65) !important;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-col-right { flex-direction: row; height: 260px; padding: 0 0 8px 0; gap: 8px; }
  .hero-photo-card { border-radius: var(--radius-lg); }
  .hero-col-left { padding: 110px 24px 32px; }
  .impact-grid { height: 300px; }
  .stats-grid  { grid-template-columns: repeat(3, 1fr); }
  .stat-item:last-child:nth-child(3n+1) { grid-column: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .impact-grid { grid-template-columns: 1fr; height: auto; }
  .impact-card { height: 240px; }
  .impact-label { font-size: 1.05rem; }
  .impact-overlay { padding: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .about-tags { grid-template-columns: 1fr; }
  .diferencial-card { flex-direction: column; padding: 28px 24px; gap: 16px; }
  .certifications { padding: 28px 24px; }
  .cert-grid { grid-template-columns: 1fr; gap: 28px; }
  .modalidades-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-photo-float { float: none; width: 200px; margin: 0 auto 24px; display: block; }
  .testimonial-inner { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; width: 100%; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:last-child:nth-child(3n+1) { grid-column: auto; }
  .hero-col-left { padding: 100px 20px 28px; }
  .hero-col-right { height: 200px; }
  .services-grid, .modalidades-grid { gap: 16px; }
}
