/* Reset y base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
}
.section-subtitle {
  font-size: 1.8rem; /* Tamaño más pequeño que el original */
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.text-yellow {
  color: #ffc107; /* Mismo amarillo que en tu clase original */
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar.navbar-transparent {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.navbar.navbar-scrolled {
  background-color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  color: #fff !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffc107;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

/* Centrar los links SOLO en móvil (cuando el menú está expandido) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
  }
  .navbar-nav {
    width: 100%;
    display: block !important;
  }
  .nav-item {
    margin: 5px 0;
  }
}

.carousel {
  margin-top: calc(-1 * var(--navbar-height));
  padding-top: var(--navbar-height);
}

.carousel-item {
  height: 100vh;
  min-height: 300px;
}

@media (max-width: 992px) {
  .carousel-item {
    height: 70vh;
  }
  
}

@media (max-width: 768px) {
  .carousel-item {
    height: 60vh;
  }
  
  .carousel-caption {
    bottom: 15%;
    padding: 15px;
  }
  
  .carousel-caption h5 {
    font-size: 1.5rem;
  }
  
  .carousel-caption p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 50vh;
  }
  
  .carousel-caption {
    bottom: 10%;
    padding: 10px;
  }
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-caption {
  bottom: 20%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-caption h5 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffc107;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Sección Servicios */
#servicios {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffc107;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-title {
  color: #ffc107 !important;
  font-weight: bold;
}

/* Sección Destinos */
#destinos {
  padding: 5rem 0;
}

.destino-card {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 10px;
  border-left: 4px solid #ffc107;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2) !important;
}

.icono-destino {
  font-size: 2.5rem;
  color: #ffc107;
}

/* Sección Contacto */
#contacto {
  padding: 5rem 0;
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

/* Responsive */
@media (max-width: 1200px) {
  .carousel-caption h5 {
    font-size: 2.2rem;
  }
  
  .carousel-caption p {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .carousel-caption h5 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 70vh;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .navbar-brand span {
    font-size: 1rem;
  }
  
  .destino-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 50vh;
  }
  
  .carousel-caption {
    bottom: 10%;
    padding: 10px;
  }
  
  .carousel-caption h5 {
    font-size: 1.5rem;
  }
  
  .carousel-caption p {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .navbar-brand span {
    display: none;
  }
}
/* Sección Qué hacemos */
#hacemos {
  padding: 5rem 0;
  background: linear-gradient(rgb(0, 0, 0), rgba(0,0,0,0.8)), url('images/fondo_camion.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#hacemos .section-title {
  color: #ffc107;
  position: relative;
  padding-bottom: 15px;
}

#hacemos .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #ffc107;
}

#hacemos .lead {
  font-size: 1.5rem;
  color: #ffc107;
  margin-bottom: 1.5rem;
}

/* Sección Contacto */
.contacto-card {
  background: rgba(30, 30, 30, 0.8) !important;
  border: 1px solid #333 !important;
  border-left: 4px solid #ffc107 !important;
}


.contacto-card:hover {
  background: rgba(40, 40, 40, 0.9) !important;
}

.btn-outline-warning {
  border-width: 2px;
}
.card-text{
  color: white;
}
.icono-contacto {
  font-size: 3rem;
  color: #ffc107;
}

.btn-outline-warning {
  border-color: #ffc107;
  color: #ffc107;
}

.btn-outline-warning:hover {
  background-color: #ffc107;
  color: #000;
}
/* Footer */
.footer {
  background: rgba(30, 30, 30, 0.8) !important; 
  border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.social-icons a {
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #ffc107 !important;
  transform: translateY(-3px);
}

.list-inline-item a:hover {
  color: #ffc107 !important;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  
  .footer-logo {
    height: 35px;
  }
  
  .social-icons a {
    margin: 0 10px;
  }
}
/* <!-- Made by Aaron Alejandro Martinez Solis | My github profile : https://github.com/AlxxFlex --> */