@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Marcellus&display=swap");

:root {
  --navy: #0b1f3a;
  --navy-dark: #07162b;
  --sky: #2a5d9f;
  --mist: #e9edf3;
  --sand: #f3f1ed;
  --gold: #3fb0d9;
  --ink: #1b2a3d;
  --slate: #4d5f77;
  --white: #ffffff;
  --radius: 0.375rem;
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 16px 32px rgba(7, 19, 40, 0.16);
}

.site-header.scrolled .brand-logo {
  width: 100px;
}

.site-header.scrolled .nav-links {
  color: var(--navy);
}

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

main {
  position: relative;
  z-index: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand-logo {
  width: 180px;
  height: auto;
  transition: width 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 34px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  color: var(--white);
  padding: 120px 0 90px;
  background-color: var(--navy);
  background-image:
    linear-gradient(120deg, rgba(9, 25, 50, 0.88) 0%, rgba(10, 30, 60, 0.75) 55%, rgba(13, 35, 70, 0.4) 100%),
    url("../assets/images/hero-ciudad.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.eyebrow {
  letter-spacing: 0.38em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hero-tags span {
  padding: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.hero-tags span::after {
  content: "•";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-tags span:last-child::after {
  content: "";
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.feature-collage {
  position: relative;
  min-height: 360px;
}

.feature-collage::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(63, 176, 217, 0.35) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.7;
  z-index: 0;
}

.feature-split.reverse .feature-collage {
  order: 2;
}

.feature-split.reverse .feature-copy {
  order: 1;
}

.feature-split.reverse .feature-collage::after {
  right: auto;
  left: -10px;
}

.feature-photo {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo.primary {
  width: 85%;
  height: 260px;
  left: 0;
  top: 45px;
  z-index: 1;
}

.feature-photo.secondary {
  width: 75%;
  height: 290px;
  right: -4%;
  top: 0;
  z-index: 2;
}

.feature-split.reverse .feature-photo.primary {
  width: 90%;
  height: 280px;
  left: auto;
  right: 0;
  top: 55px;
}

.feature-split.reverse .feature-photo.secondary {
  width: 80%;
  height: 310px;
  right: auto;
  left: -6%;
}

.feature-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-copy p {
  margin: 0;
  color: var(--slate);
}

.feature-eyebrow {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

.clients-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--slate);
  margin: 24px 0;
  font-weight: 600;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  justify-items: center;
  align-items: center;
}

.clients-logos img {
  width: 100%;
  max-width: 150px;
  height: clamp(40px, 6vw, 56px);
  object-fit: contain;
}

.clients-logos span {
  padding: 10px 12px;
  border: 1px solid rgba(27, 42, 61, 0.12);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--slate);
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.advantages-visual {
  position: relative;
  width: min(360px, 80%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.advantages-visual::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(63, 176, 217, 0.25);
}

.advantages-visual::after {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(63, 176, 217, 0.2);
}

.advantages-visual img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  position: relative;
  z-index: 1;
}

.orb {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(63, 176, 217, 0.4);
  box-shadow: 0 10px 18px rgba(11, 31, 58, 0.12);
  z-index: 2;
}

.orb-1 {
  top: -6px;
  right: 20%;
}

.orb-2 {
  top: 25%;
  right: -8px;
}

.orb-3 {
  bottom: 12%;
  right: 8%;
}

.orb-4 {
  bottom: -6px;
  left: 18%;
}

.advantages-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.advantages-list li {
  position: relative;
  padding-left: 20px;
  color: var(--slate);
}

.advantages-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.6em;
}

.advantages-list strong {
  color: var(--navy);
}

.contact-strip {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
}

.contact-strip-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 60px 0 0;
  position: relative;
}


.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  color: var(--navy);
}

.kicker {
  display: block;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 16px;
  text-align: center;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 400;
  color: var(--navy);
}

.kicker::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: min(320px, 80%);
  height: 1px;
  background: rgba(63, 176, 217, 0.45);
}

.kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translate(-50%, 50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
}


.cards {
  display: grid;
  gap: 26px;
}

.cards.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 24, 47, 0.08);
}

.card.soft {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(243, 244, 248, 0.9));
}

.card h3 {
  font-size: 1.2rem;
  color: var(--navy);
}

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

.icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(63, 176, 217, 0.16);
  color: var(--navy);
}

.icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services {
  background: var(--white);
}

.services .cards.three {
  gap: 0;
}

.services .card {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  padding: 10px 24px;
}

.services .card:not(:last-child) {
  border-right: 1px solid rgba(27, 42, 61, 0.15);
}

.services .card .icon {
  margin: 0 auto 16px;
}


.model .cards.two,
.experience .cards.two {
  gap: 0;
}

.model .card,
.experience .card {
  background: var(--white);
  border: none;
  box-shadow: none;
  padding: 16px 24px;
}

.model .card:not(:last-child),
.experience .card:not(:last-child) {
  border-right: 1px solid rgba(27, 42, 61, 0.15);
}

.model .card.soft,
.experience .card.soft {
  background: var(--white);
}


.model,
.experience {
  background: var(--white);
}

.contact {
  background: var(--white);
  padding-bottom: 90px;
}

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

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

.contact-form h2 {
  color: var(--navy);
}

.contact-form .lead {
  color: var(--slate);
  margin-bottom: 20px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

input,
textarea {
  border: 1px solid rgba(10, 24, 47, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f8f9fb;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

button {
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(120deg, #5bc0e2, #2a95bf);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(144, 108, 48, 0.35);
}

.contact-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  background: linear-gradient(135deg, #06142b, #0b1f3a 55%, #0e2748);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  gap: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-logo {
  width: 96px;
  margin-bottom: 2px;
}

.footer-name {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer-note {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-list li,
.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-meta span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-right: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal {
  margin: 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: rgba(8, 22, 43, 0.96);
    padding: 16px;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.scrolled .nav-links {
    background: var(--white);
    box-shadow: 0 16px 32px rgba(7, 19, 40, 0.12);
  }

  .hero {
    padding: 100px 0 70px;
  }

  .feature-collage {
    min-height: 0;
    display: grid;
    gap: 16px;
  }

  .feature-collage::after {
    display: none;
  }

  .feature-photo {
    position: static;
    width: 100%;
    height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .services .card:not(:last-child) {
    border-right: none;
  }

  .model .card:not(:last-child),
  .experience .card:not(:last-child) {
    border-right: none;
  }

  .advantages-visual {
    width: min(300px, 90%);
  }

  .advantages-visual::after {
    inset: -28px;
  }
}

@media (max-width: 600px) {
  .hero-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header {
    text-align: center;
  }
}
