body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h5 {
  color: #1a1a1a;
}

.navbar-brand {
  font-size: 1.5rem;
}

footer a {
  text-decoration: none;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  font-weight: 500;
  font-size: 1rem;
}

.navbar-brand img {
  height: 70px;
  transition: all 0.3s ease;
}

/* Espaciado entre enlaces */
.navbar-nav {
  gap: 1.8rem; /* más aireado */
}

/* Colores y estilo de enlaces */
.nav-link {
  color: #000;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #ff6a00;
  transform: translateY(-2px);
}

/* Enlace activo */
.nav-link.active,
.nav-link.text-orange {
  color: #ff6a00 !important;
  font-weight: 600;
}

/* Separador fino a la derecha del menú antes del selector */
.navbar .collapse + .d-flex::before {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  background-color: #ff6a00;
  margin-right: 1.5rem;
}

/* Selector de idioma */
.dropdown-toggle::after {
  vertical-align: middle;
  margin-left: 0.25rem;
}

.dropdown-menu {
  font-size: 0.95rem;
}

/* Botón móvil */
.navbar-toggler {
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .navbar-nav {
    gap: 1rem;
  }

  .navbar .collapse + .d-flex::before {
    display: none;
  }

  .dropdown-menu {
    text-align: center;
  }
}



/* HERO */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px; /* altura del navbar fijo */
}

/* Fondo naranja detrás del personaje */
.hero-bg {
  width: 100%;
  max-width: 650px;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Imagen del personaje */
.hero-image {
  z-index: 2;
  max-height: 550px;
}

/* Subrayado decorativo en el texto */
.hero-title span {
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 10px;
  background: url("../img/subrayado-naranja.svg") no-repeat center;
  background-size: contain;
  z-index: -1;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-bg {
    max-width: 400px;
    opacity: 0.7;
  }
  .hero-image {
    max-height: 400px;
  }
  .hero-section {
    text-align: center;
    padding-top: 80px;
  }
}
* =========================================
   EXPERIENCIAS
========================================= */
#experiencias .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#experiencias .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Imágenes iguales, sin deformar */
#experiencias .card-img-top {
  height: 250px;           /* altura fija para todas */
  object-fit: cover;       /* recorta sin deformar */
  width: 100%;             /* ocupa todo el ancho */
}

/* =========================================
   FOOTER
========================================= */
footer {
  font-size: 0.9rem;
}
/* =========================================
   SOBRE NOSOTROS
========================================= */
#nosotros {
  background-color: #fff;
  color: #222;
}

#nosotros h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

#nosotros p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#nosotros strong {
  color: #000;
  font-weight: 700;
}

#nosotros .btn-warning {
  background-color: #ff6a00;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

#nosotros .btn-warning:hover {
  background-color: #e45d00;
  transform: translateY(-2px);
}

/* Imagen del vector a la derecha */
.nosotros-img {
  max-width: 350px;
  height: auto;
}

/* Responsivo */
@media (max-width: 768px) {
  #nosotros .col-md-7,
  #nosotros .col-md-5 {
    text-align: center;
  }

  .nosotros-img {
    margin-top: 2rem;
    max-width: 250px;
  }
}
/* =========================================
   BENEFICIOS / ¿Por Qué Rocket?
========================================= */
#beneficios {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

#beneficios h2 {
  font-size: 2.2rem;
}

.beneficio-box {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  height: 100%;
}

.beneficio-box.central {
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.beneficio-box h5 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.beneficio-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
/* === Elementos decorativos rojos (rectángulos) === */
.decor {
  position: absolute;
  z-index: 3;
  width: 80px;
  height: auto;
}

/* Rectángulo superior izquierda */
.decor-top-left {
  top: -20px;
  left: 40px;
}

/* Rectángulo inferior izquierda */
.decor-bottom-left {
  bottom: -60px;
  left: 60px;
  width: 120px;
}

/* Rectángulo superior centrado (sobre la tarjeta central) */
.decor-top-center {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  z-index: 4;
}

/* Rectángulo superior derecha */
.decor-top-right {
  top: -20px;
  right: 40px;
}

/* Ajuste general para que no queden cortados */
#beneficios {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: visible; /* antes hidden — permite ver los rectángulos completos */
}

/* Sombra más marcada en la caja central */
.beneficio-box.central {
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
/* =========================================
   CONTACTO
========================================= */

.contacto-section {
  background-color: #f8f9fa; /* fondo exterior gris claro */
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* --- Tarjeta principal --- */
.contacto-card {
  position: relative;
  background-color: #ffc9a6; /* color base melocotón */
  border-radius: 40px;
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: visible;
  color: #222;
  text-align: center;
}

/* --- Icono circular rojo arriba a la derecha --- */
.contacto-icon {
  position: absolute;
  top: -25px;
  right: -25px;
  background-color: #e50000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.contacto-icon:hover {
  transform: rotate(-15deg) scale(1.1);
}

/* --- SVG del avión --- */
.icono-enviar {
  width: 50px;
  height: 50px;
  object-fit: contain;
  /* ❌ quitamos el filtro que lo hacía invisible */
  /* filter: brightness(0) invert(1); */
}


/* --- Títulos y texto --- */
.contacto-card h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.contacto-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.contacto-card p.text-muted {
  color: #555;
}

/* --- Formulario --- */
.contacto-card form {
  margin-top: 1.5rem;
}

.contacto-card .form-control,
.contacto-card .form-select {
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.contacto-card .form-control:focus,
.contacto-card .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff6a00;
}

/* --- Botón enviar --- */
.contacto-card .btn-warning {
  background-color: #ff6a00;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.6rem 2.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contacto-card .btn-warning:hover {
  background-color: #e45d00;
  transform: translateY(-2px);
}

/* --- Responsivo --- */
@media (max-width: 992px) {
  .contacto-card {
    padding: 3rem 2rem;
    border-radius: 30px;
  }

  .contacto-icon {
    top: -15px;
    right: -15px;
    width: 55px;
    height: 55px;
  }

  .icono-enviar {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 576px) {
  .contacto-card {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .contacto-card form .col-md-6 {
    width: 100%;
  }
}
/* =========================================
   FOOTER
========================================= */
.footer {
  font-size: 0.95rem;
  color: #333;
}

.footer-logo {
  max-height: 50px;
  width: auto;
}

.footer h6 {
  font-size: 1rem;
  color: #000;
}

.footer-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6a00;
  text-decoration: none;
}

/* Línea superior sutil */
.footer {
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .footer .footer-logo {
    margin-bottom: 1rem;
  }
}
/* Oculta la barra superior de Google Translate */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
  display: none !important;
}
body {
  top: 0 !important;
}
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

/* HERO detalle */
.experiencia-hero {
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.experiencia-hero .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.experiencia-hero .hero-overlay h1 {
  font-size: 3rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .experiencia-hero {
    height: 40vh;
  }
  .experiencia-hero .hero-overlay h1 {
    font-size: 2rem;
  }
}
/* --- Sección Nuestra Historia --- */
#historia {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

#historia h1 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #111;
}

.subrayado-naranja {
  position: relative;
  display: inline-block;
}

.subrayado-naranja::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 12px;
  background: url('../img/subrayado-naranja.png') no-repeat center;
  background-size: contain;
  z-index: -1;
}

/* Imagen lateral grande */
.historia-logo {
  max-width: 90%;
  height: auto;
}

/* Espaciado y equilibrio */
@media (max-width: 992px) {
  #historia {
    text-align: center;
  }

  .historia-logo {
    max-width: 60%;
    margin-top: 2rem;
  }

  .subrayado-naranja::after {
    height: 8px;
  }
}
/* --- Sección Lo Que Hacemos Por Ti --- */
#loquehacemos {
  background-color: #e86c21; /* naranja Rocket */
  color: #fff;
  overflow: hidden;
}

#loquehacemos h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

#loquehacemos p {
  color: #fff;
  line-height: 1.6;
}

.icono-hacemos {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1); /* hace los iconos blancos */
  flex-shrink: 0;
}

.locomotora-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  #loquehacemos {
    text-align: center;
  }

  .icono-hacemos {
    margin-bottom: 1rem;
  }

  .locomotora-img {
    max-width: 70%;
    margin-top: 2rem;
  }
}
/* --- CONTACTO PAGE --- */
.contacto-section {
  background: linear-gradient(180deg, #f58a3b 0%, #f26d21 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contacto-card {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.contacto-icon {
  position: absolute;
  top: -30px;
  right: -25px;
}

.icono-enviar {
  width: 60px;
  height: 60px;
}

.contacto-section .form-control,
.contacto-section .form-select {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #ddd;
}
/* --- HERO CONTACTO --- */
#donde-estamos {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.subrayado-naranja {
  position: relative;
  display: inline-block;
}

.subrayado-naranja::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 12px;
  background: url('../img/subrayado-naranja.png') no-repeat center;
  background-size: contain;
  z-index: -1;
}

/* Imagen del viajero */
.viajero-img {
  max-width: 420px;
  position: relative;
  z-index: 1;
  transform: translateX(50px); /* mueve 50px hacia la derecha */
}

/* Fondo naranja curvo detrás */
.fondo-naranja {
  position: absolute;
  top: 0;
  right: -25%; /* antes estaba -20% → aumentamos un poco */
  width: 80%;
  height: 100%;
  background: linear-gradient(180deg, #f47b24 0%, #e22c0c 100%);
  border-top-left-radius: 60%;
  border-bottom-left-radius: 60%;
  z-index: 0;
}


@media (max-width: 992px) {
  #donde-estamos {
    text-align: center;
  }

  .fondo-naranja {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    border-radius: 50% 50% 0 0;
  }

  .viajero-img {
    max-width: 70%;
    margin-top: 2rem;
  }
}
