:root {
  --tg-primary: #f2c94c;
  --tg-primary-dark: #d7ab20;
  --tg-secondary: #081b47;
  --tg-secondary-soft: #112b67;
  --tg-accent: #17a34a;
  --tg-gold: #e6bb53;
  --tg-text: #172033;
  --tg-text-soft: #566079;
  --tg-white: #ffffff;
  --tg-surface: #f5f7fb;
  --tg-surface-2: #eef2f9;
  --tg-border: rgba(8, 27, 71, 0.12);
  --tg-shadow: 0 16px 40px rgba(8, 27, 71, 0.14);
  --tg-radius-xl: 28px;
  --tg-radius-lg: 20px;
  --tg-radius-md: 14px;
  --tg-container: 1240px;
  --tg-transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tg-text);
  background: var(--tg-white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

.container {
  max-width: var(--tg-container);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: var(--tg-white);
  color: var(--tg-secondary);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--tg-shadow);
}

/* ------------------------------
   Buttons
------------------------------ */
.tg-btn {
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  transition: var(--tg-transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.tg-btn:hover {
  transform: translateY(-2px);
}

.tg-btn-primary {
  background: linear-gradient(135deg, var(--tg-primary), #ffd968);
  color: var(--tg-secondary);
  box-shadow: 0 12px 28px rgba(242, 201, 76, 0.35);
}

.tg-btn-primary:hover,
.tg-btn-primary:focus {
  background: linear-gradient(135deg, var(--tg-primary-dark), #f2c94c);
  color: var(--tg-white);
}

.tg-btn-whatsapp {
  background: var(--tg-accent);
  color: var(--tg-white);
}

.tg-btn-whatsapp:hover,
.tg-btn-whatsapp:focus {
  background: #12853b;
  color: var(--tg-white);
}

.tg-btn-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--tg-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.tg-btn-outline-light:hover,
.tg-btn-outline-light:focus {
  background: var(--tg-white);
  color: var(--tg-secondary);
}



/* ------------------------------
   Botón largo de WhatsApp header
------------------------------ */
.tg-btn-whatsapp-long {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  padding: 1rem 1.55rem;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #26c95d, #169b44);
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 10px 22px rgba(20, 120, 50, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: var(--tg-transition);
  white-space: nowrap;
}

.tg-btn-whatsapp-long i {
  font-size: 1.08rem;
  line-height: 1;
  color: #ffffff;
}

.tg-btn-whatsapp-long span {
  line-height: 1;
}

.tg-btn-whatsapp-long:hover,
.tg-btn-whatsapp-long:focus {
  background: linear-gradient(135deg, #24d366, #128c3b);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.34);
}

/* Ajuste para que el grupo del header se vea fino */
.tg-header-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* En móvil, que el botón largo no se rompa raro */
@media (max-width: 767.98px) {
  .tg-btn-whatsapp-long {
    width: 100%;
    max-width: 100%;
  }

  .tg-btn-whatsapp-long span {
    text-align: center;
    width: 100%;
  }
}


/* ------------------------------
   Header
------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.tg-navbar {
  background: rgba(8, 27, 71, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tg-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-right: 1rem;
}

.tg-logo {
  width: clamp(170px, 18vw, 260px);
  height: auto;
  object-fit: contain;
}

.tg-menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
}

.tg-menu-toggle .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  padding: 0.95rem 0.95rem;
  transition: var(--tg-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--tg-white);
}

.tg-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tg-contact-link {
  color: var(--tg-white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.tg-contact-icon {
  font-size: 1rem;
}

/* ------------------------------
   Hero
------------------------------ */
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(230, 187, 83, 0.18), transparent 28%),
    linear-gradient(135deg, #07163b 0%, #0f2d6d 45%, #123977 100%);
  color: var(--tg-white);
  padding: 5.5rem 0 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 27, 71, 0.65), rgba(8, 27, 71, 0.2)),
    /*url("https://images.unsplash.com/photo-1518105779142-d975f22f1b0a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;*/
    url("../img/home/Hero.jpg") center/cover no-repeat;

  opacity: 0.22;
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tg-gold);
}

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

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: var(--tg-radius-xl);
  backdrop-filter: blur(10px);
  box-shadow: var(--tg-shadow);
}

.hero-card-badge {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  z-index: 2;
  background: rgba(8, 27, 71, 0.88);
  color: var(--tg-white);
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: calc(var(--tg-radius-xl) - 8px);
}

/* ------------------------------
   Section blocks
------------------------------ */
.section-block {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: #d19c00;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.section-heading h2,
.cta-box h2,
.trust-item h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--tg-secondary);
  font-weight: 800;
}

.section-heading p,
.cta-box p,
.trust-item p {
  margin: 0;
  color: var(--tg-text-soft);
}

/* ------------------------------
   Trust strip
------------------------------ */
.trust-strip {
  margin-top: -2.2rem;
  position: relative;
  z-index: 3;
}

.trust-item {
  background: var(--tg-white);
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius-lg);
  padding: 1.6rem;
  height: 100%;
  box-shadow: var(--tg-shadow);
}

.trust-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.18), rgba(255, 255, 255, 0.9));
  color: var(--tg-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.trust-icon i {
  line-height: 1;
}

.trust-item h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

/* ------------------------------
   Cards
------------------------------ */
.info-card,
.service-card,
.cta-box {
  background: var(--tg-white);
  border-radius: var(--tg-radius-lg);
  border: 1px solid var(--tg-border);
  box-shadow: var(--tg-shadow);
}

.info-card {
  overflow: hidden;
  height: 100%;
}

.info-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.info-card__body {
  padding: 1.4rem 1.4rem 1.55rem;
}

.info-card__body h3,
.service-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  color: var(--tg-secondary);
  font-weight: 800;
}

.info-card__body p,
.service-card p {
  margin: 0 0 1rem;
  color: var(--tg-text-soft);
}

.text-link {
  color: #d19c00;
  font-weight: 700;
}

.services-section {
  background: var(--tg-surface);
}

.service-card {
  padding: 1.4rem;
  height: 100%;
  transition: var(--tg-transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

/* ------------------------------
   CTA
------------------------------ */
.cta-section {
  padding: 0 0 5.5rem;
  background: linear-gradient(180deg, var(--tg-surface) 0%, var(--tg-white) 100%);
}

.cta-box {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(230, 187, 83, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(8, 27, 71, 0.04), rgba(8, 27, 71, 0.01));
}

/* ------------------------------
   Footer
------------------------------ */
.site-footer {
  background: var(--tg-secondary);
  color: rgba(255, 255, 255, 0.86);
  padding: 4rem 0 1.5rem;
}

.footer-logo {
  width: clamp(170px, 16vw, 240px);
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--tg-white);
}

.footer-text,
.footer-links,
.footer-contact {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-links a,
.footer-contact a {
  color: inherit;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--tg-white);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 1199.98px) {
  .tg-header-actions {
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4.75rem 0 3.25rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    min-height: 340px;
  }

  .trust-strip {
    margin-top: -1.2rem;
  }

  .section-block,
  .cta-section {
    padding-bottom: 4.25rem;
  }
}

@media (max-width: 767.98px) {
  .tg-logo {
    width: 190px;
  }

  .hero-section {
    padding-top: 3.8rem;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .tg-header-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .tg-btn,
  .tg-header-actions .tg-btn,
  .tg-contact-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-card-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 0.85rem;
  }

  .hero-card img {
    min-height: 280px;
  }

  .section-block {
    padding: 4.25rem 0;
  }

  .info-card__media img {
    height: 220px;
  }

  .cta-box {
    padding: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .tg-logo {
    width: 170px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .cta-box h2 {
    font-size: 1.7rem;
  }
}


.tg-btn-primary,
.tg-btn-primary:hover,
.tg-btn-primary:focus {
  color: var(--tg-secondary);
}


/* ------------------------------
   Dropdown navigation
------------------------------ */
.navbar .dropdown {
  position: relative;
}

.tg-dropdown-menu {
  margin-top: 0;
  padding: 0.65rem;
  min-width: 270px;
  border: 1px solid rgba(8, 27, 71, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(8, 27, 71, 0.16);
}

.tg-dropdown-menu .dropdown-item {
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-weight: 600;
  color: var(--tg-secondary);
  white-space: normal;
}

.tg-dropdown-menu .dropdown-item:hover,
.tg-dropdown-menu .dropdown-item:focus {
  background: rgba(242, 201, 76, 0.18);
  color: var(--tg-secondary);
}

.tg-dropdown-menu .dropdown-divider {
  margin: 0.45rem 0;
  opacity: 0.12;
}

@media (min-width: 1200px) {
  .navbar .dropdown-menu.tg-dropdown-menu {
    top: calc(100% - 2px);
    left: 0;
  }

  .navbar .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
  }

  .navbar .dropdown:hover .tg-dropdown-menu,
  .navbar .dropdown:focus-within .tg-dropdown-menu {
    display: block;
  }
}

@media (max-width: 1199.98px) {
  .tg-dropdown-menu {
    margin-top: 0.25rem;
    min-width: 100%;
    border-radius: 14px;
  }

  .navbar-nav .dropdown-toggle::after {
    float: right;
    margin-top: 0.65rem;
  }
}


/* ------------------------------
   Premium mega menu refined
------------------------------ */
.tg-mega-nav {
  position: static;
}

.tg-mega-menu {
  width: min(1080px, calc(100vw - 48px));
  max-width: 1080px;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(12px);
  padding: 1rem;
  border: 1px solid rgba(8, 27, 71, 0.10);
  border-radius: 24px;
  box-shadow: 0 28px 54px rgba(8, 27, 71, 0.16);
}

.tg-mega-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.tg-mega-intro {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
}

.tg-mega-intro--image {
  background: #0c2255;
  color: var(--tg-white);
}

.tg-mega-intro-media {
  height: 168px;
  overflow: hidden;
}

.tg-mega-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-mega-intro-content {
  padding: 1.15rem;
}

.tg-mega-intro--accent {
  background: linear-gradient(180deg, rgba(8, 27, 71, 0.98), rgba(17, 43, 103, 0.96));
  color: var(--tg-white);
  padding-top: 0.35rem;
}

.tg-mega-accent-line {
  height: 5px;
  background: linear-gradient(90deg, #f2c94c, #ffd968);
  width: 100%;
}

.tg-mega-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tg-mega-intro h3 {
  font-size: 1.38rem;
  line-height: 1.18;
  margin: 0 0 0.65rem;
  color: var(--tg-white);
  font-weight: 800;
}

.tg-mega-intro p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.tg-mega-link {
  color: #ffe07a;
  font-weight: 700;
}

.tg-mega-column {
  padding: 0.45rem 0.35rem;
}

.tg-mega-column-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tg-secondary-soft);
  margin: 0.35rem 0 0.7rem;
}

.tg-mega-item {
  display: flex !important;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.24rem;
  padding: 0.82rem 0.9rem !important;
  border-radius: 14px;
  font-weight: 700 !important;
  color: var(--tg-secondary) !important;
  transition: var(--tg-transition);
}

.tg-mega-item i {
  width: 18px;
  text-align: center;
  color: #d19c00;
  font-size: 1rem;
  flex: 0 0 auto;
}

.tg-mega-item span {
  line-height: 1.25;
}

.tg-mega-menu .dropdown-item:hover,
.tg-mega-menu .dropdown-item:focus {
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.18), rgba(242, 201, 76, 0.08));
  color: var(--tg-secondary);
  transform: translateX(2px);
}

@media (min-width: 1200px) {
  .navbar .tg-mega-nav .tg-mega-menu {
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-34%);
  }
}

@media (max-width: 1399.98px) and (min-width: 1200px) {
  .navbar .tg-mega-nav .tg-mega-menu {
    transform: translateX(-38%);
  }
}

@media (max-width: 1199.98px) {
  .tg-mega-menu {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .tg-mega-grid {
    grid-template-columns: 1fr;
  }

  .tg-mega-intro-media {
    height: 140px;
  }

  .tg-mega-intro {
    margin-bottom: 0.35rem;
  }
}



/* ------------------------------
   Mega menu con microdescripciones
------------------------------ */
.tg-mega-item--detail {
  align-items: flex-start;
}

.tg-mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.tg-mega-item-text strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--tg-secondary);
}

.tg-mega-item-text small {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--tg-text-soft);
}

.tg-mega-item--detail i {
  margin-top: 0.18rem;
}

@media (max-width: 1199.98px) {
  .tg-mega-item-text small {
    font-size: 0.8rem;
  }
}


/* ------------------------------
   Mega menu as light cards
------------------------------ */
.tg-mega-card {
  display: flex !important;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem !important;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,247,251,0.92));
  border: 1px solid rgba(8, 27, 71, 0.08);
  box-shadow: 0 10px 24px rgba(8, 27, 71, 0.06);
  margin-bottom: 0.45rem;
  transition: var(--tg-transition);
}

.tg-mega-card:hover,
.tg-mega-card:focus {
  transform: translateY(-2px) !important;
  background: linear-gradient(180deg, rgba(255,251,235,0.98), rgba(255,255,255,0.96)) !important;
  border-color: rgba(242, 201, 76, 0.38);
  box-shadow: 0 14px 28px rgba(8, 27, 71, 0.10);
}

.tg-mega-card i {
  width: 22px;
  text-align: center;
  color: #d19c00;
  font-size: 1.05rem;
  margin-top: 0.12rem;
  flex: 0 0 auto;
}

.tg-mega-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.tg-mega-card-text strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--tg-secondary);
}

.tg-mega-card-text small {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--tg-text-soft);
}

.tg-mega-menu .dropdown-item.tg-mega-card:hover,
.tg-mega-menu .dropdown-item.tg-mega-card:focus {
  color: var(--tg-secondary);
}



.tg-mega-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}





@media (max-width: 1199.98px) {
  .tg-mega-card {
    padding: 0.9rem !important;
  }

  .tg-mega-card-text small {
    font-size: 0.8rem;
  }
}


/* ------------------------------
   Badges para mega menú
------------------------------ */
.tg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  width: fit-content;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.45rem;
  box-shadow: 0 8px 18px rgba(8, 27, 71, 0.08);
}

.tg-badge i {
  font-size: 0.72rem;
  margin: 0;
  width: auto;
  color: inherit;
}

/* Amarillo / destacado */
.tg-badge--gold {
  background: linear-gradient(135deg, #f2c94c, #ffd968);
  color: #081b47;
}

/* Azul corporativo */
.tg-badge--blue {
  background: linear-gradient(135deg, #102c6b, #183d8f);
  color: #ffffff;
}

/* Verde servicio / turismo */
.tg-badge--green {
  background: linear-gradient(135deg, #18a34a, #27c463);
  color: #ffffff;
}

/* Rojo premium / especial */
.tg-badge--red {
  background: linear-gradient(135deg, #cf2e2e, #ef4444);
  color: #ffffff;
}

/* Gris elegante */
.tg-badge--dark {
  background: linear-gradient(135deg, #2c3447, #4a556b);
  color: #ffffff;
}


/* ------------------------------
   Esto evita que en móvil el header siga “pegado” y estorbe el desplazamiento cuando el menú está abierto
------------------------------ */
@media (max-width: 1199.98px) {
  .site-header {
    position: relative;
  }
}


/* ------------------------------
   el menú abierto podrá desplazarse de inmediato
en iPhone y Android el scroll táctil responde mejor
evitas esa sensación de “bloqueo”
------------------------------ */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
}

/* ------------------------------
   En escritorio el mega menú puede comportarse como panel flotante.
En celular no conviene.
En celular debe comportarse como un bloque normal que aparece debajo del botón del menú.
------------------------------ */
@media (max-width: 1199.98px) {
  .tg-dropdown-menu,
  .tg-mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    margin-top: 0.4rem !important;
  }

  .tg-mega-grid {
    grid-template-columns: 1fr !important;
  }
}










/* ------------------------------
   Hover premium en fotos de unidades en homepage
------------------------------ */
.info-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card__media {
  position: relative;
  overflow: hidden;
}

.info-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 27, 71, 0.00) 0%,
    rgba(8, 27, 71, 0.08) 55%,
    rgba(8, 27, 71, 0.18) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.info-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
  transform: scale(1);
  filter: brightness(0.98);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(8, 27, 71, 0.14);
}

.info-card:hover .info-card__media img {
  transform: scale(1.08);
  filter: brightness(1.4);
}

.info-card:hover .info-card__media::after {
  opacity: 1;
}

/* ------------------------------
   Slider en tarjeta pequeña del hero
------------------------------ */
.hero-card-slider {
  position: relative;
  overflow: hidden;
}

.hero-card-slider-track {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.hero-card-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.7s ease,
    transform 0.9s ease,
    visibility 0.7s ease;
}

.hero-card-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-card-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: calc(var(--tg-radius-xl) - 8px);
  display: block;
}

/* Flechas del slider pequeño */
.hero-card-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(8, 27, 71, 0.58);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.hero-card-control:hover,
.hero-card-control:focus {
  background: rgba(8, 27, 71, 0.84);
  transform: translateY(-50%) scale(1.05);
}

.hero-card-control--prev {
  left: 12px;
}

.hero-card-control--next {
  right: 12px;
}

/* Dots */
.hero-card-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 27, 71, 0.26);
  backdrop-filter: blur(10px);
}

.hero-card-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-card-dot.is-active {
  width: 24px;
  background: #f2c94c;
}

.hero-card-dot:hover,
.hero-card-dot:focus {
  background: #ffffff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-card-slider-track {
    min-height: 340px;
  }

  .hero-card-slide img {
    height: 340px;
  }
}

@media (max-width: 767.98px) {
  .hero-card-slider-track {
    min-height: 280px;
  }

  .hero-card-slide img {
    height: 280px;
  }

  .hero-card-control {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .hero-card-control--prev {
    left: 8px;
  }

  .hero-card-control--next {
    right: 8px;
  }

  .hero-card-dots {
    bottom: 10px;
    padding: 0.38rem 0.6rem;
  }
}

/* =========================
   FAQ Section TG 2026
========================= */
.faq-section {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.10), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%);
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.faq-eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.18);
  color: #081b47;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-header h2 {
  margin: 0 0 0.85rem;
  color: #081b47;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 800;
}

.faq-header p {
  margin: 0;
  color: #5b6782;
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-wrapper {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(8, 27, 71, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8, 27, 71, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 800;
  color: #081b47;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #d6a800;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
}

.faq-item.is-open .faq-icon::after {
  height: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
  color: #5b6782;
  line-height: 1.75;
  font-size: 1rem;
}

/* Estado abierto */
.faq-item.is-open {
  border-color: rgba(242, 201, 76, 0.32);
  box-shadow: 0 18px 36px rgba(8, 27, 71, 0.09);
}

.faq-item.is-open .faq-question {
  color: #081b47;
}

/* Responsive */
@media (max-width: 991.98px) {
  .faq-section {
    padding: 5rem 0;
  }
}

@media (max-width: 767.98px) {
  .faq-section {
    padding: 4.2rem 0;
  }

  .faq-question {
    padding: 1.05rem 1rem;
    font-size: 0.98rem;
  }

  .faq-answer p {
    padding: 0 1rem 1.1rem;
    font-size: 0.95rem;
  }

  .faq-header h2 {
    font-size: 1.85rem;
  }

  .faq-header p {
    font-size: 0.98rem;
  }

  /* Mejor respuesta al tap en móvil */
  .faq-question {
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
    will-change: max-height;
  }
}

/* =========================
   Google Opiniones Reviews Section TG 2026
========================= */
.reviews-section {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.reviews-header {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.reviews-eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.18);
  color: #081b47;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-header h2 {
  margin: 0 0 0.85rem;
  color: #081b47;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
}

.reviews-header p {
  margin: 0;
  color: #5b6782;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* resumen */
.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.reviews-summary-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 22px;
  padding: 1.35rem 1.2rem;
  text-align: center;
  box-shadow: 0 14px 28px rgba(8, 27, 71, 0.06);
}

.reviews-summary-value {
  color: #081b47;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.reviews-summary-label {
  color: #5b6782;
  font-size: 0.95rem;
  line-height: 1.5;
}

.reviews-stars {
  color: #d6a800;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
}

/* grid de reseñas */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 24px;
  padding: 1.45rem;
  box-shadow: 0 14px 28px rgba(8, 27, 71, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(8, 27, 71, 0.09);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.review-stars {
  color: #d6a800;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 27, 71, 0.08);
  color: #081b47;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-card h3 {
  margin: 0 0 0.75rem;
  color: #081b47;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 800;
}

.review-card p {
  margin: 0 0 1rem;
  color: #5b6782;
  font-size: 0.98rem;
  line-height: 1.7;
}

.review-author {
  color: #081b47;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.82;
}

/* CTA */
.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.tg-btn-outline-dark {
  border: 1px solid rgba(8, 27, 71, 0.18);
  background: transparent;
  color: #081b47;
}

.tg-btn-outline-dark:hover,
.tg-btn-outline-dark:focus {
  background: #081b47;
  color: #ffffff;
}

/* responsive */
@media (max-width: 991.98px) {
  .reviews-section {
    padding: 5rem 0;
  }

  .reviews-summary,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .reviews-section {
    padding: 4.2rem 0;
  }

  .reviews-header h2 {
    font-size: 1.9rem;
  }

  .reviews-header p {
    font-size: 0.98rem;
  }

  .review-card,
  .reviews-summary-card {
    border-radius: 20px;
  }

  .review-card {
    padding: 1.2rem;
  }
}

/* =========================
   Cotización rápida premium pulida
========================= */
.quote-short-section {
  position: relative;
  margin-top: 0;
  padding-top: 1.6rem;
  padding-bottom: 2.4rem;
  z-index: 5;
}

.quote-short-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.98));
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(8, 27, 71, 0.12);
  padding: 1.65rem;
  backdrop-filter: blur(12px);
}

.quote-short-intro {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.quote-short-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.18);
  color: #081b47;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-short-intro h2 {
  margin: 0 0 0.45rem;
  color: #081b47;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
  font-weight: 800;
}

.quote-short-intro p {
  margin: 0;
  color: #5b6782;
  font-size: 1rem;
  line-height: 1.65;
}

/* Grid */
.quote-short-form--premium {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.quote-field label {
  color: #081b47;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.quote-field input,
.quote-field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(8, 27, 71, 0.10);
  border-radius: 16px;
  background: #ffffff;
  color: #172033;
  padding: 0.95rem 1rem;
  font-size: 0.97rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.quote-field input:hover,
.quote-field select:hover {
  border-color: rgba(8, 27, 71, 0.18);
}

.quote-field input:focus,
.quote-field select:focus {
  border-color: rgba(242, 201, 76, 0.95);
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.12);
  background: #ffffff;
}

.quote-field input::placeholder {
  color: #97a0b4;
}

/* Honeypot oculto */
.quote-hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* CTA */
.quote-field--cta {
  display: flex;
  align-items: end;
  margin-top: 0.35rem;
}

.quote-submit-btn {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2c94c, #ffd968);
  color: #081b47;
  font-weight: 800;
  font-size: 0.98rem;
  border: none;
  box-shadow:
    0 14px 28px rgba(242, 201, 76, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  text-align: center;
  padding: 0 1.35rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.quote-submit-btn:hover,
.quote-submit-btn:focus {
  background: linear-gradient(135deg, #e0b72f, #f2c94c);
  color: #081b47;
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(242, 201, 76, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Turnstile */
.quote-field--turnstile {
  grid-column: span 4;
  align-self: end;
  margin-top: 0.35rem;
}

.quote-field--turnstile .cf-turnstile {
  min-height: 65px;
  display: flex;
  align-items: center;
}

/* Distribución escritorio */
/* Fila 1 */
.quote-field--name        { grid-column: span 4; }
.quote-field--phone       { grid-column: span 4; }
.quote-field--email       { grid-column: span 4; }

/* Fila 2 */
.quote-field--date-out    { grid-column: span 2; }
.quote-field--date-back   { grid-column: span 2; }
.quote-field--origin      { grid-column: span 2; }
.quote-field--destination { grid-column: span 2; }
.quote-field--passengers  { grid-column: span 1; }
.quote-field--service     { grid-column: span 3; }

/* Fila 3 */
.quote-field--cta         { grid-column: 9 / span 4; }

/* Franja de confianza */
.trust-strip {
  margin-top: 0;
  position: relative;
  z-index: 3;
  padding-bottom: 0.5rem;
}

/* Tablet */
@media (max-width: 1199.98px) {
  .quote-short-form--premium {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .quote-field--name        { grid-column: span 2; }
  .quote-field--phone       { grid-column: span 2; }
  .quote-field--email       { grid-column: span 2; }

  .quote-field--date-out    { grid-column: span 2; }
  .quote-field--date-back   { grid-column: span 2; }
  .quote-field--origin      { grid-column: span 3; }
  .quote-field--destination { grid-column: span 3; }
  .quote-field--passengers  { grid-column: span 1; }
  .quote-field--service     { grid-column: span 2; }

  .quote-field--turnstile   { grid-column: span 3; }
  .quote-field--cta         { grid-column: span 3; }
}

/* Móvil */
@media (max-width: 767.98px) {
  .quote-short-section {
    padding-top: 1rem;
    padding-bottom: 1.6rem;
  }

  .quote-short-box {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .quote-short-intro {
    margin-bottom: 1rem;
  }

  .quote-short-intro h2 {
    font-size: 1.5rem;
  }

  .quote-short-intro p {
    font-size: 0.95rem;
  }

  .quote-short-form--premium {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .quote-field--name,
  .quote-field--phone,
  .quote-field--email,
  .quote-field--date-out,
  .quote-field--date-back,
  .quote-field--origin,
  .quote-field--destination,
  .quote-field--passengers,
  .quote-field--service,
  .quote-field--turnstile,
  .quote-field--cta {
    grid-column: span 1;
  }

  .quote-field input,
  .quote-field select,
  .quote-submit-btn {
    min-height: 54px;
  }
}


/* =========================
   Verificación formulario
========================= */
.quote-field--turnstile {
  grid-column: span 3;
}

.quote-field--turnstile .cf-turnstile {
  min-height: 65px;
  display: flex;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .quote-field--turnstile {
    grid-column: span 3;
  }
}

@media (max-width: 767.98px) {
  .quote-field--turnstile {
    grid-column: span 1;
  }
}


/* =========================
   Protección anti-spam
========================= */
.quote-hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.quote-field--turnstile {
  grid-column: span 3;
}

.quote-field--turnstile .cf-turnstile {
  min-height: 65px;
  display: flex;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .quote-field--turnstile {
    grid-column: span 3;
  }
}

@media (max-width: 767.98px) {
  .quote-field--turnstile {
    grid-column: span 1;
  }
}

/* =========================
   Validación visual formulario
========================= */
.quote-form-alert {
  display: none;
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-form-alert.is-error {
  display: block;
  background: rgba(198, 40, 40, 0.08);
  color: #9f1f1f;
  border: 1px solid rgba(198, 40, 40, 0.16);
}

.quote-form-alert.is-success {
  display: block;
  background: rgba(25, 135, 84, 0.08);
  color: #146c43;
  border: 1px solid rgba(25, 135, 84, 0.16);
}

.quote-error {
  display: block;
  min-height: 18px;
  margin-top: 0.15rem;
  color: #c62828;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.quote-field.has-error input,
.quote-field.has-error select {
  border-color: rgba(198, 40, 40, 0.75);
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
  background: #fffdfd;
}

.quote-field.has-success input,
.quote-field.has-success select {
  border-color: rgba(25, 135, 84, 0.45);
}




/*Inician estilos para sección NOSOTROS*/
/* =========================================
   NOSOTROS INTERIOR | HERO CORTO + AJUSTES
========================================= */

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 2.8rem 0 2.6rem;
  color: var(--tg-white);
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.16), transparent 26%),
    linear-gradient(135deg, #07163b 0%, #0d2459 42%, #123977 100%);
}

.inner-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 27, 71, 0.78), rgba(8, 27, 71, 0.38)),
    url("../img/nosotros/nosotros-hero-bg.jpg") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero__content {
  max-width: 760px;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
}

.inner-breadcrumb a {
  color: rgba(255,255,255,0.88);
}

.inner-breadcrumb a:hover {
  color: #ffffff;
}

.inner-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255,255,255,0.94);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.02;
  font-weight: 800;
  color: var(--tg-white);
}

.inner-hero p {
  margin: 0;
  max-width: 700px;
  font-size: 1.03rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.86);
}

.inner-hero p strong {
  color: #ffffff;
}

/* =========================
   INTRO / QUIÉNES SOMOS
========================= */
.about-intro-section {
  padding-top: 4.8rem;
  padding-bottom: 5rem;
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.about-copy-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 16px 34px rgba(8, 27, 71, 0.07);
}

.about-copy-panel h3 {
  margin: 0 0 0.9rem;
  color: var(--tg-secondary);
  font-size: 1.35rem;
  font-weight: 800;
}

.about-copy-panel p {
  margin: 0 0 1rem;
  color: var(--tg-text-soft);
  line-height: 1.8;
}

.about-copy-panel p:last-child {
  margin-bottom: 0;
}

.about-image-stack {
  position: relative;
  min-height: 430px;
}

.about-image {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(8, 27, 71, 0.14);
  border: 1px solid rgba(8, 27, 71, 0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image--main {
  width: 82%;
  height: 420px;
  margin-left: auto;
}

.about-image--floating {
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 42%;
  height: 210px;
  border: 6px solid #ffffff;
}

/* =========================
   TIMELINE
========================= */
.about-timeline-section {
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.08), transparent 18%),
    linear-gradient(180deg, #f5f8fd 0%, #eef3fb 100%);
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 1.35rem;
  max-width: 980px;
  margin: 0 auto;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 104px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(242, 201, 76, 0.9), rgba(8, 27, 71, 0.18));
}

.about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.about-timeline__year {
  position: relative;
  padding-top: 0.15rem;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--tg-secondary);
}

.about-timeline__year::after {
  content: "";
  position: absolute;
  right: 57px;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2c94c, #d7ab20);
  box-shadow: 0 0 0 6px rgba(242, 201, 76, 0.12);
}

.about-timeline__card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 24px;
  padding: 1.5rem 1.45rem;
  box-shadow: 0 16px 32px rgba(8, 27, 71, 0.07);
}

.about-timeline__card h3 {
  margin: 0 0 0.7rem;
  color: var(--tg-secondary);
  font-size: 1.2rem;
  font-weight: 800;
}

.about-timeline__card p {
  margin: 0;
  color: var(--tg-text-soft);
  line-height: 1.8;
}

/* =========================
   GALERÍA
========================= */
.about-gallery-section {
  background: #ffffff;
}

.about-gallery-section .info-card__media img {
  height: 230px;
}

.about-gallery-section .info-card__body h3 {
  font-size: 1.08rem;
}

.about-gallery-section .info-card__body p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =========================
   DIFERENCIALES
========================= */
.about-differentials-section {
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.09), transparent 18%),
    linear-gradient(180deg, #f6f9fd 0%, #edf2fb 100%);
}

.about-differentials-section .service-card {
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(8, 27, 71, 0.08);
  padding: 1.45rem;
  box-shadow: 0 14px 28px rgba(8, 27, 71, 0.06);
  background: rgba(255,255,255,0.94);
}

.about-differentials-section .service-card h3 {
  position: relative;
  padding-top: 0.9rem;
}

.about-differentials-section .service-card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2c94c, #d9ab24);
}

/* =========================
   VALORES
========================= */
.about-values-section {
  background: #ffffff;
}

.about-values-section .info-card {
  border-radius: 24px;
}

.about-values-section .info-card__body {
  padding: 1.65rem 1.5rem;
}

.about-values-section .info-card__body h3 {
  margin-bottom: 0.9rem;
  font-size: 1.18rem;
}

.about-values-section .info-card__body p + p {
  margin-top: 0.95rem;
}

/* =========================
   BLOQUE MARCA
========================= */
.about-brand-section {
  padding-top: 4.7rem;
  padding-bottom: 4.7rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.about-brand-section .cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2.1rem;
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(8, 27, 71, 0.04), rgba(8, 27, 71, 0.015));
}

.about-brand-section .cta-box::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.13), transparent 65%);
  pointer-events: none;
}

/* =========================
   CIERRE
========================= */
.about-closing-section {
  padding-top: 4.8rem;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.07), transparent 20%),
    linear-gradient(180deg, #f5f8fd 0%, #ffffff 100%);
}

.about-closing-section .section-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-closing-section .section-heading p {
  font-size: 1.03rem;
  line-height: 1.82;
}

/* =========================
   HOVERS
========================= */
.about-copy-panel,
.about-image,
.about-timeline__card,
.about-brand-section .cta-box,
.about-gallery-section .info-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-copy-panel:hover,
.about-image:hover,
.about-timeline__card:hover,
.about-brand-section .cta-box:hover,
.about-gallery-section .info-card:hover {
  transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
  .about-image-stack {
    min-height: 390px;
  }

  .about-image--main {
    height: 380px;
  }

  .about-image--floating {
    height: 190px;
  }
}

@media (max-width: 991.98px) {
  .inner-hero {
    padding: 2.45rem 0 2.25rem;
  }

  .inner-hero h1 {
    font-size: 2.6rem;
  }

  .about-intro-section,
  .about-brand-section,
  .about-closing-section {
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }

  .about-image-stack {
    min-height: auto;
  }

  .about-image--main {
    width: 100%;
    height: 360px;
    margin-left: 0;
  }

  .about-image--floating {
    display: none;
  }

  .about-timeline::before {
    left: 16px;
  }

  .about-timeline__item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-left: 2rem;
  }

  .about-timeline__year::after {
    left: -24px;
    right: auto;
  }
}

@media (max-width: 767.98px) {
  .inner-hero {
    padding: 2.15rem 0 2rem;
  }

  .inner-hero h1 {
    font-size: 2.15rem;
  }

  .inner-hero p {
    font-size: 0.98rem;
  }

  .about-copy-panel {
    padding: 1.35rem;
  }

  .about-image--main {
    height: 280px;
  }

  .about-gallery-section .info-card__media img {
    height: 210px;
  }

  .about-brand-section .cta-box {
    padding: 1.45rem;
    border-radius: 22px;
  }

  .about-closing-section .section-heading p {
    font-size: 0.98rem;
  }
}

@media (max-width: 575.98px) {
  .inner-hero h1 {
    font-size: 1.95rem;
  }

  .inner-breadcrumb {
    font-size: 0.86rem;
  }

  .about-timeline__card {
    padding: 1.2rem 1rem;
  }
}

/*Inicia bloque paa hacer mas atractivo el timeline de nuestra historia dentro de sección de interior NOSOTROS */


.about-timeline--enhanced {
  position: relative;
  display: grid;
  gap: 1.35rem;
  max-width: 1040px;
  margin: 0 auto;
}

.about-timeline--enhanced::before {
  content: "";
  position: absolute;
  left: 118px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(242, 201, 76, 0.95),
    rgba(215, 171, 32, 0.75),
    rgba(8, 27, 71, 0.16)
  );
}

.about-timeline--enhanced .about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.3rem;
  align-items: start;
}

.about-timeline--enhanced .about-timeline__year {
  position: relative;
  padding-top: 0.2rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--tg-secondary);
  line-height: 1.35;
}

.about-timeline--enhanced .about-timeline__year::after {
  content: "";
  position: absolute;
  right: 58px;
  top: 0.45rem;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2c94c, #d7ab20);
  box-shadow:
    0 0 0 7px rgba(242, 201, 76, 0.14),
    0 10px 20px rgba(215, 171, 32, 0.18);
}

.about-timeline--enhanced .about-timeline__card {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 26px;
  padding: 1.55rem 1.45rem 1.5rem;
  box-shadow: 0 18px 36px rgba(8, 27, 71, 0.07);
}

.about-timeline__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.16);
  color: var(--tg-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-timeline--enhanced .about-timeline__card h3 {
  margin: 0 0 0.7rem;
  color: var(--tg-secondary);
  font-size: 1.28rem;
  font-weight: 800;
}

.about-timeline--enhanced .about-timeline__card p {
  margin: 0;
  color: var(--tg-text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.about-timeline--enhanced .about-timeline__card strong {
  color: var(--tg-secondary);
}

@media (max-width: 991.98px) {
  .about-timeline--enhanced::before {
    left: 18px;
  }

  .about-timeline--enhanced .about-timeline__item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding-left: 2rem;
  }

  .about-timeline--enhanced .about-timeline__year::after {
    left: -27px;
    right: auto;
  }
}

@media (max-width: 767.98px) {
  .about-timeline--enhanced .about-timeline__card {
    padding: 1.2rem 1rem;
    border-radius: 22px;
  }

  .about-timeline--enhanced .about-timeline__card h3 {
    font-size: 1.12rem;
  }

  .about-timeline--enhanced .about-timeline__card p {
    font-size: 0.96rem;
  }
}


/* =========================================
   TIMELINE VISUAL PREMIUM | NOSOTROS
========================================= */

.about-timeline--visual {
  position: relative;
  display: grid;
  gap: 1.4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.about-timeline--visual::before {
  content: "";
  position: absolute;
  left: 148px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(242, 201, 76, 0.95),
    rgba(215, 171, 32, 0.78),
    rgba(8, 27, 71, 0.14)
  );
}

.about-timeline--visual .about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.about-timeline--visual .about-timeline__year {
  position: relative;
  padding-top: 0.25rem;
  padding-right: 1.1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--tg-secondary);
  line-height: 1.38;
  word-break: break-word;
}

.about-timeline--visual .about-timeline__year::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0.42rem;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2c94c, #d7ab20);
  box-shadow:
    0 0 0 7px rgba(242, 201, 76, 0.14),
    0 10px 22px rgba(215, 171, 32, 0.18);
}

.about-timeline--visual .about-timeline__card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.15rem;
  align-items: stretch;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(8, 27, 71, 0.08);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 18px 36px rgba(8, 27, 71, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-timeline--visual .about-timeline__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(8, 27, 71, 0.10);
}

.about-timeline__media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 150px;
  height: 100%;
  box-shadow: 0 12px 24px rgba(8, 27, 71, 0.10);
}

.about-timeline__media img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.about-timeline__card:hover .about-timeline__media img {
  transform: scale(1.06);
}

.about-timeline__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-timeline__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.78rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.16);
  color: var(--tg-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-timeline--visual .about-timeline__content h3 {
  margin: 0 0 0.7rem;
  color: var(--tg-secondary);
  font-size: 1.28rem;
  line-height: 1.22;
  font-weight: 800;
}

.about-timeline--visual .about-timeline__content p {
  margin: 0;
  color: var(--tg-text-soft);
  line-height: 1.82;
  font-size: 1rem;
}

.about-timeline--visual .about-timeline__content strong {
  color: var(--tg-secondary);
}

/* Variante visual: etapa actual ligeramente destacada */
.about-timeline--visual .about-timeline__item:last-child .about-timeline__card {
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.10), transparent 28%),
    rgba(255,255,255,0.98);
  border-color: rgba(242, 201, 76, 0.28);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .about-timeline--visual::before {
    left: 132px;
  }

  .about-timeline--visual .about-timeline__item {
    grid-template-columns: 220px 1fr;
  }

  .about-timeline--visual .about-timeline__card {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 991.98px) {
  .about-timeline--visual::before {
    left: 18px;
  }

  .about-timeline--visual .about-timeline__item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-left: 2.2rem;
  }

  .about-timeline--visual .about-timeline__year {
    padding-right: 0;
  }

  .about-timeline--visual .about-timeline__year::after {
    left: -28px;
    right: auto;
  }

  .about-timeline--visual .about-timeline__card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 767.98px) {
  .about-timeline--visual .about-timeline__card {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 22px;
  }

  .about-timeline__media {
    min-height: 190px;
  }

  .about-timeline__media img {
    min-height: 190px;
  }

  .about-timeline--visual .about-timeline__content h3 {
    font-size: 1.1rem;
  }

  .about-timeline--visual .about-timeline__content p {
    font-size: 0.96rem;
  }
}





/* FInalizan estilos para sección NOSOTROS */


