*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0f6cb2;
  --blue-light: #3a8fd4;
  --blue-dark: #0a4f8a;
  --blue-soft: rgba(15, 108, 178, 0.07);
  --blue-mid: rgba(15, 108, 178, 0.14);
  --blue-border: rgba(15, 108, 178, 0.18);
  --orange: #f07c1a;
  --orange-light: #f59030;
  --orange-soft: rgba(240, 124, 26, 0.07);
  --orange-mid: rgba(240, 124, 26, 0.14);
  --orange-border: rgba(240, 124, 26, 0.22);
  --white: #ffffff;
  --gray-50: #f6f9fd;
  --gray-100: #edf2f9;
  --gray-200: #dce6f2;
  --gray-300: #c5d5e8;
  --gray-400: #8eaac6;
  --gray-600: #4a6480;
  --gray-800: #1e3048;
  --text-main: #0c1e34;
  --text-mid: #385570;
  --text-light: #6888a4;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 2px 12px rgba(15, 108, 178, 0.07);
  --shadow-md: 0 6px 28px rgba(15, 108, 178, 0.11);
  --shadow-lg: 0 14px 48px rgba(15, 108, 178, 0.15);
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 99px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--t);
}
nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.03em;
}
.nav-logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.02em !important;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
}
.btn-cta::after {
  display: none !important;
}
.btn-cta:hover {
  background: var(--orange-light) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(240, 124, 26, 0.32);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition:
    transform var(--t),
    opacity var(--t);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 22px 5vw 26px;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--t);
}
.mobile-menu a:hover {
  color: var(--blue);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 96px 5vw 80px;
  overflow: hidden;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(15, 108, 178, 0.065) 1.5px,
    transparent 1.5px
  );
  background-size: 34px 34px;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(15, 108, 178, 0.07) 0%,
    transparent 70%
  );
  top: -140px;
  right: -140px;
}
.hero-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(240, 124, 26, 0.05) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  border: 1.5px solid var(--blue-border);
  border-radius: 99px;
  background: var(--blue-soft);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--orange-mid);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px var(--orange-mid);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(240, 124, 26, 0.06);
  }
}
.hero-eyebrow span {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 20px;
}
h1.hero-title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
h1.hero-title em::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

.hero-desc {
  color: var(--text-mid);
  font-size: clamp(0.9rem, 1.3vw, 1.04rem);
  line-height: 1.78;
  margin-bottom: 34px;
  max-width: 470px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(240, 124, 26, 0.32);
}
.btn-primary svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue-border);
  transition:
    border-color var(--t),
    background var(--t);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  width: fit-content;
}
.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-div {
  width: 1px;
  height: 34px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Hero image */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 530px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 52, 0.88) 0%,
    rgba(10, 30, 52, 0.28) 45%,
    transparent 100%
  );
}
.hero-img-footer {
  position: absolute;
  bottom: 22px;
  left: 20px;
  right: 20px;
}
.img-tag {
  display: inline-block;
  padding: 4px 11px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 9px;
}
.hero-img-footer h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 5px;
}
.hero-img-footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.deco-ring {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 88px;
  height: 88px;
  border: 2.5px solid var(--orange);
  border-radius: var(--radius-md);
  opacity: 0.28;
  pointer-events: none;
}
.deco-dot {
  position: absolute;
  bottom: 46px;
  left: -22px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

/* ===== STRIP ===== */
.strip {
  background: var(--blue);
}
.strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px 18px 0;
  flex: 1;
  min-width: 180px;
}
.strip-item + .strip-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 36px;
}
.strip-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-ico svg {
  width: 15px;
  height: 15px;
  color: var(--white);
}
.strip-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.strip-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* ===== SECTIONS ===== */
section {
  scroll-margin-top: 68px;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  background: var(--orange-soft);
  border: 1.5px solid var(--orange-border);
  border-radius: 99px;
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.s-tag svg {
  width: 12px;
  height: 12px;
}
.s-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 14px;
}
.s-text {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ===== NOSOTROS ===== */
.nosotros {
  padding: 92px 5vw;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.nosotros::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(15, 108, 178, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.nos-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.pillar {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 19px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-border);
}
.pillar:hover::before {
  transform: scaleX(1);
}

.p-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  transition: background var(--t);
}
.pillar:hover .p-icon {
  background: var(--orange-soft);
}
.p-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  transition: color var(--t);
}
.pillar:hover .p-icon svg {
  color: var(--orange);
}
.pillar h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.81rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACTO ===== */
.contacto {
  padding: 92px 5vw;
  background: var(--white);
  position: relative;
}
.contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(15, 108, 178, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.con-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 52px;
  align-items: start;
}

.con-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.con-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.con-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  border: 1.5px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.con-ico svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}
.con-item h6 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.con-item p,
.con-item a {
  color: var(--text-mid);
  font-size: 0.87rem;
  line-height: 1.5;
  text-decoration: none;
  margin: 0;
  transition: color var(--t);
}
.con-item a:hover {
  color: var(--blue);
}

.con-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: var(--blue-soft);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--radius-sm);
}
.con-trust svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
  flex-shrink: 0;
}
.con-trust span {
  color: var(--text-mid);
  font-size: 0.81rem;
  line-height: 1.5;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}
.form-hd {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-hd-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-hd-ico svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.form-hd h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}
.form-hd p {
  color: var(--text-light);
  font-size: 0.83rem;
  margin: 0;
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fgrid .full {
  grid-column: 1/-1;
}
.fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flabel {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.flabel-opt {
  font-weight: 400;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
}

.iwrap {
  position: relative;
}
.iico {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  transition: color var(--t);
}
.iico svg {
  width: 14px;
  height: 14px;
  display: block;
}
.txico {
  position: absolute;
  left: 12px;
  top: 13px;
  color: var(--gray-400);
  pointer-events: none;
}

.finput {
  width: 100%;
  padding: 11px 12px 11px 38px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  color: var(--text-main);
  transition:
    border-color var(--t),
    background var(--t),
    box-shadow var(--t);
  outline: none;
}
.finput::placeholder {
  color: var(--text-light);
}
.finput:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 108, 178, 0.09);
}
.iwrap:focus-within .iico {
  color: var(--blue);
}
.finput.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.07);
}
textarea.finput {
  padding-top: 12px;
  resize: vertical;
  min-height: 118px;
}

.ferr {
  font-size: 0.72rem;
  color: #e53e3e;
  font-weight: 500;
  display: none;
}
.ferr.show {
  display: block;
}

.btn-send {
  width: 100%;
  padding: 13px 26px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: "Outfit", sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.btn-send::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn-send:hover::before {
  transform: scaleX(1);
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(240, 124, 26, 0.28);
}
.btn-send > * {
  position: relative;
  z-index: 1;
}
.btn-send svg {
  width: 15px;
  height: 15px;
}
.btn-send:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.fmsg {
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
  margin-top: 2px;
}
.fmsg.ok {
  background: rgba(72, 187, 120, 0.07);
  border: 1.5px solid rgba(72, 187, 120, 0.28);
  color: #22543d;
  display: block;
}
.fmsg.err {
  background: rgba(229, 62, 62, 0.06);
  border: 1.5px solid rgba(229, 62, 62, 0.22);
  color: #c53030;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-50);
  border-top: 1.5px solid var(--gray-200);
}

.ft-top {
  padding: 56px 5vw 44px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}
.ft-logo {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.ft-socials {
  display: flex;
  gap: 9px;
}
.ft-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition:
    border-color var(--t),
    color var(--t),
    background var(--t);
}
.ft-soc svg {
  width: 14px;
  height: 14px;
}
.ft-soc:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

.ft-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ft-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t);
}
.ft-links a svg {
  width: 11px;
  height: 11px;
  color: var(--orange);
  opacity: 0.65;
}
.ft-links a:hover {
  color: var(--blue);
}

.ft-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ft-info li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-mid);
  font-size: 0.83rem;
  line-height: 1.5;
}
.ft-info li svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  opacity: 0.65;
  flex-shrink: 0;
  margin-top: 2px;
}
.ft-small {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 12px;
}

.ft-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 18px 5vw;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.ft-copy,
.ft-ruc {
  font-size: 0.76rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== WHATSAPP ===== */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.38);
  z-index: 900;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.wa svg {
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 1;
}
.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.48);
}
.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wap 2.5s ease-out infinite;
}
@keyframes wap {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.72);
    opacity: 0;
  }
}

/* ===== REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.62s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.62s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-d="1"] {
  transition-delay: 0.12s;
}
[data-reveal][data-d="2"] {
  transition-delay: 0.24s;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fu 0.62s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0.08s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.32s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.44s;
}
.hero-content > *:nth-child(5) {
  animation-delay: 0.56s;
}
.hero-visual {
  opacity: 0;
  transform: translateX(22px);
  animation: fl 0.68s cubic-bezier(0.4, 0, 0.2, 1) 0.26s forwards;
}
@keyframes fu {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fl {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .hero-eyebrow,
  .hero-btns,
  .hero-stats {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-img-wrap {
    aspect-ratio: 3/2;
    max-height: 340px;
  }
  .nos-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .con-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .strip-inner {
    flex-direction: column;
  }
  .strip-item + .strip-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-left: 0;
    padding-top: 16px;
  }
  .strip-item {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 86px 5vw 58px;
  }
  .hero-img-wrap {
    aspect-ratio: 4/3;
    max-height: 290px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
  }
  .nosotros {
    padding: 64px 5vw;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .contacto {
    padding: 64px 5vw;
  }
  .form-card {
    padding: 24px 18px;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 5vw 30px;
  }
  .ft-bottom {
    flex-direction: column;
    text-align: center;
    gap: 3px;
  }
  .wa {
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }
  .wa svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .stat-div {
    width: 36px;
    height: 1px;
  }
  .hero-img-wrap {
    aspect-ratio: 1/1;
    max-height: 270px;
  }
  .s-title {
    font-size: 1.6rem;
  }
}
