@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
  --orange: #F1860D;
  --cyan: #089CD7;
  --blue: #0F75BB;
  --deep: #095DA3;
  --ink: #09263d;
  --muted: #557086;
  --paper: #f5f9fc;
  --white: #fff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  padding-top: 0;
}
p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: capitalize;
}
a {
  text-decoration: none;
}

/* TOPBAR */
.topbar {
  background: var(--deep);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  border-bottom: 2px solid var(--orange);
  transition: none;
}
.topbar.hidden {
  display: none;
}
.topbar span {
  margin-right: 24px;
  opacity: .9;
}
.topbar i {
  margin-right: 6px;
  color: var(--orange);
}
.topbar a {
  color: #fff;
  transition: color 0.3s;
}
.topbar a:hover {
  color: var(--orange);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: none;
}
.site-header.hidden {
  display: none;
}
.site-header .navbar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 8px 20px;
  margin: 12px auto 0;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.site-header .navbar-brand img {
  height: 70px;
  max-width: 220px;
  width: auto;
}
.nav-link {
  font-size: 1rem;
  color: #fff;
  margin-left: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  font-weight: 400;
}
.nav-link i {
  color: rgba(255, 255, 255, .7);
  transition: color 0.3s;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  background: var(--deep);
  transition: .3s;
}
.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}
.nav-link.active {
  color: var(--deep) !important;
  font-weight: 700;
}
.nav-link.active i {
  color: var(--deep) !important;
}
.nav-link:hover {
  color: var(--deep) !important;
}
.nav-link:hover i {
  color: var(--deep) !important;
}
.nav-contact {
  padding: 10px 18px !important;
  background: rgba(255, 255, 255, .15);
  color: #fff !important;
  border-radius: 30px;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .3);
}
.nav-contact i {
  color: #fff !important;
}
.nav-contact:after {
  display: none;
}
.nav-contact.active {
  background: var(--deep);
  color: #fff !important;
}
.nav-contact.active i {
  color: #fff !important;
}
.nav-contact:hover {
  background: var(--deep);
  color: #fff !important;
}
.nav-contact:hover i {
  color: #fff !important;
}
.navbar-toggler {
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, .1);
  padding: 6px 12px;
  border-radius: 4px;
}
.navbar-toggler.hidden-toggler {
  display: none !important;
}

/* HERO */
.hero-carousel {
  position: relative;
  min-height: 100vh;
  padding-top: 40px;
  overflow: hidden;
}
.hero-carousel .carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-carousel .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-carousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(9,37,61,0.7) 0%, rgba(9,92,162,0.2) 60%, rgba(9,92,162,0.05) 100%);
}
.hero-carousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.hero-copy-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  display: block;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}
.hero-carousel .carousel-caption h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 10px rgba(0,0,0,0.4);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-carousel .carousel-caption h1 em {
  font-style: italic;
  color: var(--orange);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 10px rgba(0,0,0,0.4);
}
.hero-carousel .carousel-caption .eyebrow {
  color: #fff !important;
  background: rgba(8, 156, 215, 0.7);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.hero-carousel .carousel-caption .hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.hero-carousel .carousel-caption .btn {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 5%;
  z-index: 3;
}
.hero-carousel .carousel-indicators {
  z-index: 3;
}
.hero-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
}
.hero-carousel .carousel-indicators .active {
  background: var(--orange);
  border-color: var(--orange);
}

/* BOTONES */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.btn i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn:hover i {
  transform: translateX(4px);
}
.btn-primary-custom {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.btn-primary-custom:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
  box-shadow: 0 12px 30px rgba(9, 92, 162, .3);
}
.btn-outline-custom {
  border-color: var(--deep);
  color: var(--deep);
  background: transparent;
}
.btn-outline-custom:hover {
  background: var(--deep);
  color: #fff;
  box-shadow: 0 12px 30px rgba(9, 92, 162, .2);
}
.btn-light-custom {
  background: #fff;
  color: var(--deep);
  border-color: #fff;
}
.btn-light-custom:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(241, 134, 13, .3);
}
.btn-blue-custom {
  background: #095DA3;
  border-color: #095DA3;
  color: #fff;
}
.btn-blue-custom:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 12px 30px rgba(241, 134, 13, .3);
}

/* BANNERS Y SECCIONES CON FONDO */
.banner-bg,
.page-hero,
.mission-vision-bg {
  background: linear-gradient(to top, rgba(9, 37, 61, 0.92) 0%, rgba(9, 92, 162, 0.5) 60%, rgba(9, 92, 162, 0.2) 100%), url('../imgs/bgs/13.png') center/cover no-repeat;
  color: #fff;
}
.banner-bg .eyebrow,
.page-hero .eyebrow,
.mission-vision-bg .eyebrow {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}
.banner-bg h1,
.banner-bg h2,
.page-hero h1,
.page-hero h2,
.mission-vision-bg h1,
.mission-vision-bg h2 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.banner-bg h1 em,
.banner-bg h2 em,
.page-hero h1 em,
.page-hero h2 em,
.mission-vision-bg h1 em,
.mission-vision-bg h2 em {
  font-style: italic;
  color: var(--orange);
}
.banner-bg p,
.page-hero p,
.mission-vision-bg p {
  color: #d8edf9;
  font-weight: 400;
}

/* FONDOS DE SECCIONES BLANCAS CON IMÁGENES */
.bg-img-1 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/1.png') center/cover no-repeat;
}
.bg-img-2 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/2.png') center/cover no-repeat;
}
.bg-img-3 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/3.png') center/cover no-repeat;
}
.bg-img-4 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/4.png') center/cover no-repeat;
}
.bg-img-5 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/5.png') center/cover no-repeat;
}
.bg-img-6 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/6.png') center/cover no-repeat;
}
.bg-img-7 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/7.png') center/cover no-repeat;
}
.bg-img-8 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/8.png') center/cover no-repeat;
}
.bg-img-9 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/9.png') center/cover no-repeat;
}
.bg-img-10 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/10.png') center/cover no-repeat;
}
.bg-img-11 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/11.png') center/cover no-repeat;
}
.bg-img-12 {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../imgs/bgs/12.png') center/cover no-repeat;
}

/* MISION / VISION CARDS */
.mission-card {
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 45px;
  height: 100%;
  border-radius: 12px;
}
.mission-card .eyebrow {
  font-size: 2.2rem;
  color: var(--orange);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.mission-card p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}

/* SECCIONES GENERALES */
.section {
  padding: 110px 0;
}
.section-light {
  background: #fff;
  border-top: 4px solid var(--orange);
  position: relative;
}
.section-light:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--deep));
  opacity: .3;
}
.section-heading {
  margin-bottom: 55px;
}
.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  text-transform: capitalize;
  font-weight: 700;
}
.section-heading h2 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  background: rgba(241, 134, 13, .1);
  padding: 4px 16px;
  border-radius: 30px;
  border: 1px solid rgba(241, 134, 13, .2);
}

.welcome-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 30px;
}
.why-us-section {
  padding-top: 40px !important;
}

.info-card,
.value-card {
  height: 100%;
  padding: 34px;
  border: 1px solid #d9e7ef;
  background: #fff;
  transition: .35s;
  border-radius: 8px;
}
.info-card:hover,
.value-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 50px rgba(9, 92, 162, .12);
  border-color: var(--cyan);
}
.info-card i,
.value-card i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 35px;
  transition: transform 0.3s;
}
.info-card:hover i,
.value-card:hover i {
  transform: scale(1.15) rotate(3deg);
}
.info-card h3,
.value-card h3 {
  font-size: 1.6rem;
  text-transform: capitalize;
  font-weight: 700;
}
.info-card p,
.value-card p {
  font-weight: 400;
}

.feature-section {
  padding: 100px 0;
  background: var(--deep);
  position: relative;
}
.feature-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imgs/bgs/12.png') center/cover no-repeat;
  opacity: .08;
}
.feature-panel {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  color: #fff;
  position: relative;
  z-index: 2;
}
.feature-icon {
  width: 100px;
  height: 100px;
  border: 2px solid var(--orange);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: var(--orange);
  border-radius: 50%;
}
.feature-panel h2 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  text-transform: capitalize;
  font-weight: 700;
}
.feature-panel h2 em {
  font-style: italic;
  color: var(--orange);
}
.feature-panel p {
  color: #dceefa;
  max-width: 850px;
  font-weight: 400;
}
.feature-panel blockquote,
.service-note blockquote {
  font-size: 1.35rem;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin: 28px 0;
  color: #fff;
  font-style: italic;
  font-weight: 300;
}

.closing-section {
  padding: 130px 0;
  background: linear-gradient(120deg, var(--orange), #e66e00);
  color: #fff;
  position: relative;
  z-index: 1;
}
.closing-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imgs/bgs/10.png') center/cover no-repeat;
  opacity: .1;
  z-index: -1;
}
.closing-section h2 {
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  text-transform: capitalize;
  font-weight: 700;
}
.closing-section h2 em {
  font-style: italic;
  color: var(--ink);
}
.closing-section p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}
.closing-section .btn {
  position: relative;
  z-index: 10;
}

/* FOOTER */
.footer {
  padding: 35px 0;
  background: #062c4a;
  color: #d9ebf7;
  font-size: 14px;
}
.footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer .footer-inner img {
  height: 80px;
  max-width: 250px;
  width: auto;
}
.footer .footer-text {
  text-align: center;
}
.footer-copy {
  margin-top: 10px;
  font-size: 12px;
  opacity: .7;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 14px;
  width: 100%;
  text-align: center;
}

/* FORMULARIO */
.contact-form {
  background: #f1f8fc;
  padding: 35px;
  border-radius: 16px;
}
.contact-form label {
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8dce8;
  padding: 12px;
  background: #fff;
  outline: none;
  border-radius: 30px;
  transition: .3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(8, 156, 215, .1);
}
.contact-form .btn {
  border-radius: 30px;
}
.privacy {
  font-size: .8rem;
  margin: 18px 0 0;
  font-weight: 300;
}

/* EQUIPO - TARJETAS CON IMAGEN */
.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 35px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border-top: 5px solid var(--orange);
  transition: .35s;
}
.team-card .team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px 12px 0 0;
  margin-bottom: 20px;
}
.team-card .card-body {
  flex: 1;
  padding: 0 25px 25px;
  display: flex;
  flex-direction: column;
}
.team-card h3 {
  font-size: 1.7rem;
  text-transform: capitalize;
  padding: 0 25px;
  margin-top: 15px;
  font-weight: 700;
}
.team-card h3 em {
  font-style: italic;
  color: var(--orange);
}
.team-card strong {
  padding: 0 25px;
  font-weight: 700;
  color: var(--deep);
  display: block;
  margin-bottom: 18px;
}
.team-card p {
  padding: 0 25px;
  font-weight: 400;
}

/* OTROS */
.page-hero {
  padding: 220px 0 125px;
  min-height: 430px;
  display: flex;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 1050px;
  text-transform: capitalize;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.page-hero p {
  max-width: 850px;
  font-size: 1.1rem;
  font-weight: 400;
}
.story-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}
.story-grid h2 {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  text-transform: capitalize;
  font-weight: 700;
}
.story-grid h2 em {
  font-style: italic;
  color: var(--orange);
}
.large-copy {
  font-size: 1.25rem;
  font-weight: 400;
}
.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.milestones>div {
  padding: 25px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, .7);
  border-radius: 0 12px 12px 0;
}
.milestones span {
  font-size: 2.6rem;
  color: var(--deep);
  font-weight: 700;
}
.milestones p {
  font-weight: 400;
}
.quote-section {
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
}
.quote-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imgs/bgs/11.png') center/cover no-repeat;
  opacity: .06;
}
.quote-section blockquote {
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  line-height: 1.08;
  max-width: 1050px;
  margin: 0 0 35px;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 300;
}
.quote-section blockquote strong {
  font-weight: 700;
  color: var(--orange);
}
.quote-section cite {
  font-style: normal;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
}
.quote-section cite span {
  color: #b7d5e8;
  font-weight: 400;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.flip-wrap {
  height: 340px;
  perspective: 1200px;
}
.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
  cursor: pointer;
  border-radius: 12px;
}
.flip-wrap:hover .flip-card,
.flip-wrap.flipped .flip-card {
  transform: rotateY(180deg);
}
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid rgba(8, 156, 215, .16);
  border-radius: 12px;
}
.flip-front {
  background: linear-gradient(145deg, #fff 0%, #f3faff 100%);
  overflow: hidden;
}
.flip-front:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--deep));
}
.flip-front i {
  font-size: 2.6rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.flip-wrap:hover .flip-front i {
  transform: scale(1.1) rotate(5deg);
}
.flip-front h3,
.flip-back h3 {
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: 700;
}
.flip-front .service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  margin: 10px 0 12px;
}
.flip-front small {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
}
.flip-back {
  background: linear-gradient(145deg, var(--deep), var(--blue));
  color: #fff;
  transform: rotateY(180deg);
  border-color: var(--orange);
}
.flip-back p {
  color: #e1f1fa;
  font-weight: 400;
}

.service-note {
  background: #edf7fc;
  position: relative;
  z-index: 1;
}
.service-note:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imgs/bgs/13.png') center/cover no-repeat;
  opacity: .06;
  z-index: -1;
}
.service-note .large-copy {
  max-width: 900px;
  margin: 0 auto 30px;
  font-weight: 400;
}
.service-note blockquote {
  color: var(--ink);
  max-width: 800px;
  margin: 25px auto 35px;
  font-style: italic;
  font-weight: 300;
}
.service-note .btn {
  position: relative;
  z-index: 10;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list>div {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid #dce9f0;
}
.contact-list i {
  color: var(--orange);
  font-size: 1.5rem;
  width: 25px;
  text-align: center;
}
.contact-list span {
  font-size: 1rem;
  color: var(--muted);
}
.contact-list strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.contact-list a {
  color: var(--muted);
  transition: color 0.3s;
}
.contact-list a:hover {
  color: var(--orange);
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  border-radius: 16px;
  margin-top: 30px;
}
.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.contact-title em {
  font-style: italic;
  color: var(--orange);
}

/* BOTONES FLOTANTES */
.floating-btn {
  position: fixed;
  z-index: 9999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  cursor: pointer;
}
.floating-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-btn:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
}
#backToTop {
  right: 30px;
  bottom: 100px;
  background: var(--orange);
  color: #fff;
}
#backToTop:hover {
  background: var(--deep);
}
#whatsappBtn {
  right: 30px;
  bottom: 30px;
  background: #25D366;
  color: #fff;
}
#whatsappBtn:hover {
  background: #1da851;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

/* RESPONSIVE */
@media (max-width: 991px) {
  /* Botón de cierre flotante dentro del menú móvil */
  .mobile-menu-close {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #095DA3 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #095DA3 !important;
    font-size: 2rem !important;
    padding: 0 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    line-height: 1;
  }
  .mobile-menu-close:hover {
    background: #095DA3 !important;
    color: #fff !important;
    transform: scale(1.05) !important;
  }
  /* Ocultar el botón de cierre cuando el menú no está abierto */
  .navbar-collapse:not(.show) .mobile-menu-close {
    display: none !important;
  }
  .navbar-collapse.show .mobile-menu-close {
    display: flex !important;
  }

  .hero-carousel .carousel-caption { padding: 0 20px; }
  .hero-carousel .carousel-caption h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
  .hero-carousel .carousel-caption .lead { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
  .hero-carousel .carousel-caption p { font-size: clamp(0.9rem, 1.2vw, 1.1rem); }
  .hero-carousel .carousel-caption .hero-actions { gap: 12px; }
  .nav-link { margin-left: 0; }
  .site-header .navbar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 8px 16px;
    margin: 12px 12px 0;
  }
  .story-grid { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .footer .footer-inner { flex-direction: column; text-align: center; gap: 15px; }
  .floating-btn { width: 48px; height: 48px; font-size: 1.4rem; }
  #backToTop { right: 20px; bottom: 90px; }
  #whatsappBtn { right: 20px; bottom: 25px; }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #f8fafc;
    z-index: 3000;
    padding: 80px 20px 40px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
  }
  .navbar-collapse.show {
    transform: translateX(0);
    visibility: visible;
  }
  .navbar-collapse .navbar-nav {
    width: 100%;
    margin-top: 30px !important;
    align-items: stretch !important;
    padding: 0 10px;
  }
  .navbar-collapse .nav-link {
    color: var(--ink) !important;
    margin: 0;
    padding: 16px 8px !important;
    border-bottom: 1px solid rgba(9, 37, 61, .1);
    font-size: 1.05rem;
  }
  .navbar-collapse .nav-link.active {
    color: var(--deep) !important;
    background: transparent;
    border-radius: 0;
    padding: 16px 8px !important;
    border-bottom: 2px solid var(--deep);
  }
  .navbar-collapse .nav-link.active i { color: var(--deep) !important; }
  .navbar-collapse .nav-link i { color: var(--deep) !important; }
  .navbar-collapse .nav-contact,
  .navbar-collapse .nav-contact.active {
    background: transparent;
    color: var(--ink) !important;
    border: 0;
    border-radius: 0;
  }
  .navbar-collapse .nav-contact i { color: var(--deep) !important; }
  .site-header .navbar-toggler { z-index: 3100; }
  
  .topbar-right { display: none !important; }
  .topbar .container { flex-direction: column; align-items: center; gap: 4px; }
  .topbar-left { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .topbar-left span { margin-right: 0; }
  
  .hero-carousel { padding-top: 80px; }
  .page-hero { padding-top: 220px; }
  
  .page-hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
  .welcome-title { font-size: clamp(2.4rem, 5vw, 3.5rem); }
  .section-heading h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  .feature-panel h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  .closing-section h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  
  .section { padding: 70px 0; }
  .container { padding-left: 15px !important; padding-right: 15px !important; }
  .contact-form { padding: 20px; }
  .large-copy { font-size: 1rem; }
  .info-card, .value-card { padding: 20px; }
  .info-card h3, .value-card h3 { font-size: 1.3rem; }
  .mission-card p { font-size: 1.2rem; }
  .mission-card .eyebrow { font-size: 1.8rem; }
  .team-card h3 { font-size: 1.3rem; }
  .team-card .team-img { height: 200px; }
}

@media (max-width: 575px) {
  .hero-carousel .carousel-caption h1 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .page-hero { padding: 200px 0 80px; min-height: 320px; }
  .page-hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
  .hero-carousel { padding-top: 80px; }
  .welcome-title { font-size: clamp(2rem, 5vw, 2.8rem); }
  .section-heading h2 { font-size: clamp(2rem, 5vw, 2.8rem); }
  .feature-panel h2 { font-size: clamp(2rem, 5vw, 2.8rem); }
  .closing-section h2 { font-size: clamp(2rem, 5vw, 2.8rem); }
  .feature-panel { grid-template-columns: 1fr; gap: 25px; }
  .service-grid, .milestones { grid-template-columns: 1fr; }
  .flip-wrap { height: 300px; }
  .navbar-brand img { height: 60px; }
  .team-card .team-img { height: 180px; }
  .floating-btn { width: 42px; height: 42px; font-size: 1.2rem; }
  #backToTop { right: 15px; bottom: 80px; }
  #whatsappBtn { right: 15px; bottom: 20px; }
  .topbar { font-size: 12px; padding: 6px 0; }
  .topbar-left span { font-size: 12px; }
  .story-grid h2 { font-size: clamp(2.2rem, 5vw, 3rem); }
  .contact-title { font-size: 1.6rem; }
  .contact-list span { font-size: 0.9rem; }
  .mission-card .eyebrow { font-size: 1.5rem; }
  .mission-card p { font-size: 1rem; }
}

/* Ocultar el botón de cierre en desktop (pantallas mayores a 991px) */
@media (min-width: 992px) {
  .mobile-menu-close {
    display: none !important;
  }
}