:root {
  --navy: #0b1f3a;
  --navy-dark: #071327;
  --gold: #c8a24a;
  --teal: #1f6f78;
  --slate: #4b5563;
  --muted: #f4f7fb;
  --white: #ffffff;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--navy-dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

figure {
  margin: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 19, 39, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(7, 19, 39, 0.12);
  box-shadow: 0 10px 24px rgba(7, 19, 39, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--slate);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--slate);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--navy);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 500;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, #123a63);
  color: var(--white);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.hero-text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.hero-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(7, 19, 39, 0.35);
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.85);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge.badge-secondary {
  top: 1.2rem;
  bottom: auto;
  background: rgba(200, 162, 74, 0.9);
  color: var(--navy-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 16px 40px rgba(200, 162, 74, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy-dark);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(7, 19, 39, 0.2);
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(6px);
}

.hero-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
}

.stats {
  padding: 2rem 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  color: var(--slate);
  font-size: 0.95rem;
}

.section {
  padding: 4.5rem 0;
}

.section.muted {
  background: var(--muted);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.section-heading p {
  color: var(--slate);
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.highlight {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(7, 19, 39, 0.2);
}

.highlight h3 {
  margin-bottom: 0.8rem;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.highlight-list span {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(7, 19, 39, 0.08);
  border: 1px solid rgba(7, 19, 39, 0.06);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 31, 58, 0.08);
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.card p {
  color: var(--slate);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-grid span {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 19, 39, 0.12);
  background: var(--white);
  font-size: 0.92rem;
}

.image-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.image-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 39, 0.08);
  box-shadow: 0 12px 30px rgba(7, 19, 39, 0.08);
  display: grid;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-card figcaption {
  padding: 1.5rem;
}

.image-card h3 {
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.image-card p {
  color: var(--slate);
}

.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(7, 19, 39, 0.08);
  box-shadow: 0 12px 24px rgba(7, 19, 39, 0.05);
}

.step span {
  display: inline-block;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.cta {
  background: linear-gradient(120deg, #0e2a4d, #1b4c7d);
  color: var(--white);
  padding: 3.5rem 0;
}

.cta-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(7, 19, 39, 0.1);
}

.form-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 1.2rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--slate);
}

input,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(7, 19, 39, 0.15);
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(200, 162, 74, 0.4);
  border-color: var(--gold);
}

.info-list p {
  margin-bottom: 0.6rem;
  color: var(--slate);
}

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2rem;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Ticker divisas */
.ticker {
  background: var(--navy-dark);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-track {
  display: inline-flex;
  animation: scroll-ticker 20s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.ticker-item strong {
  color: var(--gold);
}

@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Globe */
.globe-wrapper {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.globe {
  position: relative;
  width: 280px;
  height: 280px;
}

.globe-sphere {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1f6f78, #0b1f3a 70%);
  box-shadow: 0 0 60px rgba(31, 111, 120, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.3);
  animation: globe-rotate 12s linear infinite;
}

@keyframes globe-rotate {
  0% { box-shadow: 0 0 60px rgba(31, 111, 120, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 80px rgba(200, 162, 74, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.3); }
  100% { box-shadow: 0 0 60px rgba(31, 111, 120, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.3); }
}

.globe-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(200, 162, 74, 0.2);
  animation: ring-spin 20s linear infinite;
}

.ring-1 { inset: 10px; animation-duration: 25s; border-color: rgba(31, 111, 120, 0.3); }
.ring-2 { inset: -5px; animation-duration: 18s; animation-direction: reverse; }
.ring-3 { inset: 30px; animation-duration: 30s; border-color: rgba(255,255,255,0.1); }

@keyframes ring-spin {
  0% { transform: rotateX(60deg) rotateZ(0deg); }
  100% { transform: rotateX(60deg) rotateZ(360deg); }
}

.globe-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(200, 162, 74, 0.8);
  animation: dot-pulse 2s ease-in-out infinite;
}

.dot-1 { top: 25%; left: 30%; animation-delay: 0s; }
.dot-2 { top: 40%; left: 65%; animation-delay: 0.4s; }
.dot-3 { top: 60%; left: 45%; animation-delay: 0.8s; }
.dot-4 { top: 35%; left: 50%; animation-delay: 1.2s; }
.dot-5 { top: 55%; left: 25%; animation-delay: 1.6s; }

@keyframes dot-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.6); }
}

.globe-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  animation: line-travel 3s ease-in-out infinite;
}

.line-1 { top: 32%; left: 32%; width: 80px; transform: rotate(-20deg); animation-delay: 0s; }
.line-2 { top: 48%; left: 28%; width: 100px; transform: rotate(15deg); animation-delay: 1s; }
.line-3 { top: 42%; left: 40%; width: 60px; transform: rotate(-40deg); animation-delay: 2s; }

@keyframes line-travel {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

/* Aliados */
.aliados-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.aliados-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 19, 39, 0.15);
}

.aliados-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.aliados-content {
  display: grid;
  gap: 1.5rem;
}

.aliados-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(7, 19, 39, 0.08);
  box-shadow: 0 8px 20px rgba(7, 19, 39, 0.06);
}

.aliados-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--teal);
}

.aliados-item h3 {
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.aliados-item p {
  color: var(--slate);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
  z-index: 20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .aliados-grid {
    grid-template-columns: 1fr;
  }

  .aliados-image img {
    height: 240px;
  }

  .globe {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav {
    gap: 0.6rem;
    font-size: 0.85rem;
  }

  .nav-cta {
    padding: 0.45rem 0.9rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    font-size: 0.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading h2 {
    font-size: 1.4rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.4rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .pill-grid {
    gap: 0.5rem;
  }

  .pill-grid span {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }

  .globe {
    width: 180px;
    height: 180px;
  }

  .globe-wrapper {
    padding: 0;
  }

  .ticker-item {
    padding: 0.45rem 1.5rem;
    font-size: 0.75rem;
  }

  .cta {
    padding: 2.5rem 0;
  }

  .contact-form {
    padding: 1.4rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .aliados-item {
    flex-direction: column;
    gap: 0.7rem;
  }
}
