/* ===== VARIABLES ===== #00c3ff*/
    :root {
      --primary: #fa0202;
      --primary-dark: #0098c7;
      --secondary: #25D366;
      --dark: #111;
      --darker: #1f1f1f;
      --light: #f8f9fa;
      --overlay: rgba(0, 0, 0, 0.45);
      --overlay-dark: rgba(0, 0, 0, 0.75);
      --transition: all 0.3s ease;
    }

    /* ===== GLOBAL ===== */
    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      color: #4d4d4d;
    }

    a {
      text-decoration: none;
      transition: var(--transition);
    }

/* ===== TOP BAR ===== */
.top-bar {
  background-image: url('../images/topbar.jpg');
  background-size: 100% 100%; /* Esto estira la imagen para que cubra todo el ancho y alto */
  background-position: center center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */ /* Comentado porque puede causar problemas con el ajuste */
  color: white;
  font-size: 14px;
  padding: 15px 0;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Overlay oscuro para mejor legibilidad */
.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Asegurar que todo el contenido esté por encima del overlay */
.top-bar .container {
  position: relative;
  z-index: 2;
}

.top-contact span {
  margin-right: 20px;
  display: inline-block;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.top-contact i {
  color: var(--primary);
  margin-right: 8px;
  width: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  display: inline-block;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3);
}

.social-icons a:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: rgba(0,0,0,0.5);
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.languages {
  display: flex;
  gap: 15px;
  margin-left: 25px;
  flex-wrap: wrap;
}

.languages a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 55px;
}

.languages a:hover {
  transform: translateY(-5px);
}

.languages a span {
  color: white;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.languages a:hover span {
  color: var(--primary);
}

.languages img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  background: white;
}

.languages a:hover img {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .languages a {
    width: 50px;
  }
  
  .languages img {
    width: 35px;
    height: 35px;
  }
  
  .languages a span {
    font-size: 10px;
  }
  
  .social-icons a {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    background-attachment: scroll;
    padding: 12px 0;
  }
  
  .top-bar .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .top-contact {
    margin-bottom: 5px;
  }
  
  .top-contact span {
    margin: 0 10px;
  }
  
  .languages {
    justify-content: center;
    margin-left: 0;
    margin-top: 5px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .languages {
    gap: 10px;
  }
  
  .languages a {
    width: 45px;
  }
  
  .languages img {
    width: 30px;
    height: 30px;
  }
  
  .languages a span {
    font-size: 9px;
  }
  
  .top-contact span {
    font-size: 12px;
    margin: 0 8px;
  }
}

  /* ===== NAVBAR ===== */
.navbar {
  background: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand img {
  height: 70px;
  transition: var(--transition);
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Estilos para los botones en PC */
@media (min-width: 992px) {
  .navbar-nav .nav-item {
    margin: 0 5px;
  }
  
  .navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 8px 20px !important;
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0;
    text-align: center;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,195,255,0.3);
    color: white !important;
  }
}

/* Estilos para móvil (se mantiene igual) */
@media (max-width: 991px) {
  .navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    top: 0;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    text-align: center;
  }
  
  .navbar-nav .nav-link::after {
    bottom: 0;
  }
  
  .navbar-brand img {
    height: 50px;
  }
}

.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.5);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: -1;
}

/* Overlay más claro - quitando la trama gris */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.subheading {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  
}

.titulo-hero {
  font-size: clamp(40px, 6vw, 85px);
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
  -webkit-text-stroke: 1px rgba(0,0,0,0.5);
}

.caps {
  font-size: clamp(16px, 2vw, 20px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.4s both;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.5);
}

/* Mejora adicional para las letras */
.subheading, 
.titulo-hero, 
.caps {
  color: white;
  font-weight: bold;
}

.btn-explorar {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  animation: fadeInUp 1s ease 0.6s both;
  box-shadow: 0 5px 15px rgba(0,195,255,0.3);
}

.btn-explorar:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,195,255,0.4);
  color: white;
}

.btn-explorar.whatsapp {
  background: var(--secondary);
  box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.btn-explorar.whatsapp:hover {
  background: #128C7E;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    /* ===== SEARCH FORM ===== */
    .search-section {
      margin-top: -60px;
      position: relative;
      z-index: 10;
    }

    .search-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      overflow: hidden;
    }

    .nav-pills .nav-link {
      background: var(--light);
      color: #333;
      border-radius: 0;
      padding: 15px 30px;
      font-weight: 600;
      border: none;
    }

    .nav-pills .nav-link.active {
      background: var(--primary);
      color: white;
    }

    .search-form {
      padding: 30px;
    }

    .form-group {
      background: var(--light);
      border-radius: 12px;
      padding: 15px;
      height: 100%;
    }

    .form-group label {
      font-weight: 600;
      color: #333;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .form-field {
      position: relative;
    }

    .form-field .icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
    }

    .form-control {
      border: none;
      background: transparent;
      padding-left: 45px;
      height: 45px;
      border-bottom: 2px solid transparent;
      transition: var(--transition);
    }

    .form-control:focus {
      outline: none;
      box-shadow: none;
      border-bottom-color: var(--primary);
    }

    select.form-control {
      cursor: pointer;
    }

    .btn-search {
      background: var(--primary);
      color: white;
      font-weight: 600;
      padding: 15px 30px;
      border: none;
      border-radius: 12px;
      width: 100%;
      transition: var(--transition);
    }

    .btn-search:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    /* ===== SERVICES SECTION ===== */
    .services-section {
      padding: 80px 0;
    }

    .service-card {
      position: relative;
      height: 250px;
      border-radius: 15px;
      overflow: hidden;
      margin-bottom: 20px;
      cursor: pointer;
    }

    .service-card .icon {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      color: white;
      font-size: 24px;
      box-shadow: 0 5px 15px rgba(0,195,255,0.3);
    }

    .service-card .content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 25px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: white;
      transition: var(--transition);
      z-index: 1;
    }

    .service-card:hover .content {
      background: linear-gradient(to top, rgba(0,195,255,0.9), rgba(0,195,255,0.4));
      transform: translateY(-5px);
    }

    .service-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 14px;
      margin-bottom: 0;
      opacity: 0.9;
      transform: translateY(20px);
      transition: var(--transition);
    }

    .service-card:hover p {
      transform: translateY(0);
    }

    /* ===== DESTINATION CARDS ===== */
    .destination-card {
      position: relative;
      height: 350px;
      border-radius: 15px;
      overflow: hidden;
      margin: 10px;
    }

    .destination-card .img {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }

    .destination-card:hover .img {
      transform: scale(1.1);
    }

    .destination-card .text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 25px;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      color: white;
      transition: var(--transition);
    }

    .destination-card:hover .text {
      background: linear-gradient(to top, rgba(0,195,255,0.9), transparent);
    }

    .destination-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .destination-card span {
      font-size: 14px;
      color: var(--primary);
      display: block;
      margin-bottom: 8px;
    }

    .destination-card p {
      font-size: 14px;
      margin-bottom: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition);
    }

    .destination-card:hover p {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== TOUR CARDS ===== */
    .tour-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      transition: var(--transition);
      height: 100%;
    }

    .tour-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,195,255,0.2);
    }

    .tour-card .img {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .tour-card .price-tag {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary);
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 5px 15px rgba(0,195,255,0.3);
    }

    .tour-card .content {
      padding: 25px;
    }

    .tour-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .tour-card h3 a {
      color: #333;
    }

    .tour-card h3 a:hover {
      color: var(--primary);
    }

    .tour-card .location {
      color: #666;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .tour-card .location i {
      color: var(--primary);
      margin-right: 5px;
    }

    .tour-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 15px 0;
    }

    .tour-card ul li {
      margin-bottom: 8px;
      color: #555;
      font-size: 14px;
    }

    .tour-card ul li i {
      color: var(--primary);
      margin-right: 8px;
      width: 16px;
    }

    /* ===== ITINERARY ===== */
    .itinerary-list {
      list-style: none;
      padding: 0;
    }

    .itinerary-item {
      background: var(--light);
      border-left: 4px solid var(--primary);
      border-radius: 12px;
      padding: 20px 25px;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: var(--transition);
    }

    .itinerary-item:hover {
      transform: translateX(10px);
      box-shadow: 0 8px 25px rgba(0,195,255,0.1);
    }

    .itinerary-item strong {
      color: var(--primary);
      font-weight: 600;
    }
/* ===== ITINERARY PHOTOS SECTION - AJUSTE DE TAMAÑO ===== */
/* ===== ITINERARY PHOTOS SECTION - REDUCIR ALTURA Y CENTRADO ===== */
.itinerary-photos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px; /* Ancho máximo para que no se estiren demasiado */
  margin: 0 auto; /* Centrar el grid */
}

.photo-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 250px; /* Altura reducida para todas las fotos */
  width: 100%;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 195, 255, 0.2);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

/* Ajuste para pantallas medianas */
@media (max-width: 991px) {
  .photo-item {
    height: 220px;
  }
  .photo-grid {
    gap: 15px;
    max-width: 450px;
  }
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .photo-item {
    height: 200px;
  }
  .photo-grid {
    gap: 12px;
    max-width: 400px;
  }
}

/* Ajuste para móviles muy pequeños */
@media (max-width: 576px) {
  .photo-item {
    height: 200px;
  }
  .photo-grid {
    gap: 10px;
    max-width: 100%;
    padding: 0 15px;
  }
}
    /* ===== ABOUT SECTION ===== */
    .about-section {
      padding: 80px 0;
      background: var(--light);
    }

    .about-img {
      height: 450px;
      border-radius: 20px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .about-img::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0,195,255,0.2), transparent);
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 30px;
      transition: var(--transition);
      box-shadow: 0 10px 30px rgba(0,195,255,0.4);
    }

    .play-btn:hover {
      background: white;
      color: var(--primary);
      transform: translate(-50%, -50%) scale(1.1);
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-section {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('images/bg_1.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      margin: 15px;
      color: white;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .testimonial-card .stars {
      color: #ffc107;
      margin-bottom: 20px;
    }

    .testimonial-card .stars i {
      margin: 0 2px;
    }

    .testimonial-card p {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-card .user {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .testimonial-card .user-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      border: 3px solid var(--primary);
    }

    .testimonial-card .user-info h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .testimonial-card .user-info span {
      font-size: 14px;
      opacity: 0.8;
    }

    /* ===== BLOG CARDS ===== */
    .blog-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      transition: var(--transition);
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,195,255,0.15);
    }

    .blog-card .img {
      height: 250px;
      background-size: cover;
      background-position: center;
    }

    .blog-card .content {
      padding: 25px;
    }

    .blog-card .date {
      background: var(--primary);
      color: white;
      padding: 10px 15px;
      border-radius: 10px;
      display: inline-block;
      margin-bottom: 15px;
      text-align: center;
      line-height: 1.2;
    }

    .blog-card .date .day {
      font-size: 24px;
      font-weight: 700;
      display: block;
    }

    .blog-card .date .month {
      font-size: 12px;
      text-transform: uppercase;
    }

    .blog-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .blog-card h3 a {
      color: #333;
    }

    .blog-card h3 a:hover {
      color: var(--primary);
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 80px 0;
    }

    .cta-card {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 30px;
      padding: 60px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .cta-card h2 {
      font-size: 40px;
      font-weight: 800;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      font-size: 18px;
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
    }

    .cta-card .btn {
      background: white;
      color: var(--primary);
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      position: relative;
      z-index: 1;
      transition: var(--transition);
    }

    .cta-card .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: linear-gradient(135deg, var(--dark), var(--darker));
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
      position: relative;
    }

    .footer-widget {
      margin-bottom: 40px;
    }

    .footer-widget img {
      width: 180px;
      margin-bottom: 20px;
    }

    .footer-widget h3 {
      color: white;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 25px;
      position: relative;
    }

    .footer-widget h3::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--primary);
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.7);
      transition: var(--transition);
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--primary);
      transform: translateX(5px);
    }

    .social-links {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .contact-info {
      list-style: none;
      padding: 0;
    }

    .contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
    }

    .contact-info li i {
      color: var(--primary);
      font-size: 18px;
      width: 20px;
      margin-top: 3px;
    }

    .contact-info li a {
      color: rgba(255,255,255,0.7);
    }

    .contact-info li a:hover {
      color: var(--primary);
    }

    .copyright {
      text-align: center;
      padding-top: 40px;
      margin-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .copyright a {
      color: var(--primary);
    }

    /* ===== LOADER ===== */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--dark);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.1s ease;
    }

    .loader.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader-content {
      text-align: center;
    }

    .loader-logo {
      width: 150px;
      margin-bottom: 30px;
      animation: pulse 1.5s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .spinner {
      width: 60px;
      height: 60px;
      border: 4px solid rgba(255,255,255,0.1);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 20px;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991.98px) {
      .navbar {
        top: 0;
        background: rgba(0,0,0,0.95) !important;
      }
      
      .navbar-collapse {
        background: rgba(0,0,0,0.95);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
      }
      
      .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 15px !important;
      }
      
      .service-card {
        height: 200px;
      }
      
      .cta-card {
        padding: 40px 20px;
      }
      
      .cta-card h2 {
        font-size: 30px;
      }
    }

    @media (max-width: 767.98px) {
      .top-bar .container {
        flex-direction: column;
        gap: 10px;
      }
      
      .top-right {
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .languages {
        margin-top: 10px;
        justify-content: center;
      }
      
      .hero-wrap {
        height: 80vh;
      }
      
      .search-section {
        margin-top: 30px;
      }
      
      .about-img {
        height: 300px;
        margin-bottom: 30px;
      }
    }

    /* ===== SECCIÓN DE RECOMENDACIONES - SOLO IMÁGENES ===== */
.recommendations-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Elemento decorativo de fondo */
.recommendations-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,195,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid de recomendaciones */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
}

/* Tarjeta de recomendación */
.recommendation-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 195, 255, 0.15);
}

/* Imagen de la recomendación - más alta para capturas de celular */
.recommendation-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f5f5f5;
}

/* Tag line decorativo */
.tag-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .recommendations-section {
    padding: 60px 0;
  }
  
  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}



.vehicle-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vehicle-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover img {
  transform: scale(1.08);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-body h5 {
  font-weight: 600;
}

.badge {
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 8px;
}
/* ===== TOURS SECTION MEJORADA ===== */
.tours-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  padding: 80px 0;
}

/* Header decorativo */
.header-line {
  width: 50px;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
}

/* ===== TOUR CARDS ===== */
.tour-card {
  height: 100%;
  perspective: 1000px;
}

.tour-card-inner {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-card:hover .tour-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 195, 255, 0.15);
  border-color: var(--primary);
}

/* Imagen wrapper */
.tour-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image {
  transform: scale(1.1);
}

/* Overlay de imagen */
.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

.tour-badge {
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,195,255,0.3);
}

.tour-rating {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  backdrop-filter: blur(5px);
}

.tour-rating i {
  color: #ffc107;
  font-size: 10px;
}

.price-from {
  font-size: 10px;
  opacity: 0.8;
  display: block;
}

.price-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-per {
  font-size: 10px;
  opacity: 0.8;
}

/* Contenido del tour */
.tour-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.tour-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tour-title a:hover {
  color: var(--primary);
}

.tour-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Características */
.tour-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #555;
}

.feature i {
  color: var(--primary);
  font-size: 12px;
}

/* Itinerario */
.tour-itinerary {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.tour-itinerary li {
  font-size: 13px;
  margin-bottom: 5px;
  color: #555;
}

.tour-itinerary li i {
  width: 18px;
  margin-right: 5px;
}

/* Descripción */
.tour-description {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Botón seleccionar */
.select-tour-btn {
  border-radius: 50px;
  font-size: 14px;
  padding: 10px;
  transition: all 0.3s ease;
}

.select-tour-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.select-tour-btn.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== FORMULARIO DE RESERVA ===== */
.booking-form-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 195, 255, 0.1);
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
}

.booking-form-card:hover {
  box-shadow: 0 30px 60px rgba(0, 195, 255, 0.15);
  border-color: var(--primary);
}

/* Header del formulario */
.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-icon {
  font-size: 40px;
  color: var(--primary);
  background: rgba(0, 195, 255, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.form-subtitle {
  color: #666;
  font-size: 14px;
}

/* Grupos de formulario */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.1);
}

/* Contador de personas */
.people-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.people-counter .form-control {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.counter-btn {
  width: 45px;
  height: 45px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.counter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Precio estimado */
.price-estimate {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.estimate-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

/* Footer del formulario */
.form-footer {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #999;
}

/* Beneficios */
.booking-benefits {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px dashed rgba(0, 195, 255, 0.2);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #555;
}

.benefit-item i {
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .booking-form-card {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 768px) {
  .tours-section {
    padding: 60px 0;
  }
  
  .tour-features {
    grid-template-columns: 1fr;
  }
  
  .booking-form-card {
    padding: 20px;
  }
  
  .form-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .counter-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .price-amount {
    font-size: 28px;
  }
}
/* Video Section Styles */
.video-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
  padding: 60px 0;
}

.video-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: white;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 195, 255, 0.2);
  border-color: rgba(0, 195, 255, 0.3);
}

/* Video Thumbnail */
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

/* Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

/* Badges */
.video-duration-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.video-quality-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 195, 255, 0.4);
  z-index: 5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Botón de reproducción */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 195, 255, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.play-icon-wrapper i {
  margin-left: 5px;
}

.play-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 20px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  text-decoration: none;
}

.video-play-btn:hover .play-icon-wrapper {
  transform: scale(1.1);
  background: white;
  color: var(--primary);
  border-color: var(--primary);
}

.video-play-btn:hover .play-text {
  opacity: 1;
  transform: translateY(0);
  background: var(--primary);
  border-color: var(--primary);
}

/* Información del video */
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: white;
  z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.video-card:hover .video-info {
  transform: translateY(0);
}

.video-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-description {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-item i {
  color: var(--primary);
  font-size: 14px;
}

/* ===== MODAL DE VIDEO CON IMAGEN DE FONDO ===== */
/* Video Mini - Tarjeta secundaria */
.video-card-mini {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.video-card-mini:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 195, 255, 0.2);
}

.mini-video-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.mini-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card-mini:hover .mini-video-thumbnail {
  transform: scale(1.05);
}

.mini-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.video-card-mini:hover .mini-video-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.mini-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 195, 255, 0.5);
}

.mini-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 195, 255, 0.8);
}

.mini-video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  backdrop-filter: blur(5px);
}

.mini-video-info {
  padding: 15px;
}

.mini-video-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.mini-video-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .video-card-mini {
    margin-top: 20px;
  }
  
  .mini-play-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }
  
  .mini-play-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

/* Fondo con imagen menu.jpg */
.video-modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

/* Overlay oscuro para mejor visibilidad del video */
.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* Contenedor del contenido */
.video-modal-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

/* Contenedor del video */
.video-container {
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.2);
  animation: modalSlideIn 0.4s ease;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 17px;
  outline: none;
}

/* Botón de cierre */
.video-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-modal-close:hover {
  background: #fa0202;
  transform: rotate(90deg) scale(1.1);
  border-color: #fa0202;
}

/* Animación de entrada */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .video-container {
    width: 95%;
  }
  
  .video-modal-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: 20px;
    right: 20px;
  }
  
  .play-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .video-title {
    font-size: 20px;
  }
  
  .video-description {
    font-size: 14px;
  }
  
  .video-stats {
    gap: 10px;
  }
  
  .stat-item {
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .video-duration-badge,
  .video-quality-badge {
    padding: 5px 12px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .play-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .video-info {
    padding: 20px;
  }
  
  .video-stats {
    flex-direction: column;
    gap: 5px;
  }
  
  .stat-item {
    width: fit-content;
  }
  
  .video-modal-close {
    width: 35px;
    height: 35px;
    font-size: 18px;
    top: 15px;
    right: 15px;
  }
}
/* ===== ABOUT SECTION MEJORADA CON CARRUSEL ===== */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Elementos decorativos de fondo */
.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,195,255,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== IMAGEN WRAPPER ===== */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

/* Tarjeta de imagen principal con carrusel */
.about-image-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.about-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 100px rgba(0, 195, 255, 0.3);
  border-color: rgba(0, 195, 255, 0.3);
}

.about-image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-card:hover .about-image-full {
  transform: scale(1.05);
}

/* Estilos del carrusel dentro de la tarjeta */
.about-image-card .carousel {
  height: 100%;
}

.about-image-card .carousel-inner,
.about-image-card .carousel-item {
  height: 100%;
}

.about-image-card .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Controles del carrusel personalizados */
.about-image-card .carousel-control-prev,
.about-image-card .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image-card:hover .carousel-control-prev,
.about-image-card:hover .carousel-control-next {
  opacity: 1;
}

.about-image-card .carousel-control-prev {
  left: 15px;
}

.about-image-card .carousel-control-next {
  right: 15px;
}

.about-image-card .carousel-control-prev-icon,
.about-image-card .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Indicadores del carrusel */
.about-image-card .carousel-indicators {
  bottom: 20px;
  z-index: 15;
}

.about-image-card .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.about-image-card .carousel-indicators button.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* ===== OVERLAY MEJORADO (se mantiene sobre el carrusel) ===== */
.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 195, 255, 0.3) 50%,
    rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none; /* Permite que los controles del carrusel funcionen */
  z-index: 10;
}

.about-image-card:hover .about-image-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  transform: translateY(30px);
  transition: all 0.4s ease 0.1s;
  width: 100%;
  pointer-events: auto;
}

.about-image-card:hover .overlay-content {
  transform: translateY(0);
}

/* Badge del overlay */
.overlay-badge {
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,195,255,0.4);
}

.overlay-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.overlay-title {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Estadísticas en overlay */
.overlay-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

/* Redes sociales en overlay */
.overlay-social .social-text {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0,195,255,0.4);
}

/* Badge flotante */
.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  z-index: 20;
  animation: pulse 2s infinite;
}

.floating-badge i {
  font-size: 18px;
  color: #fff;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===== MINIATURAS (ahora navegables) ===== */
.about-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.thumbnail-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0,195,255,0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
  transform: scale(1.1);
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,195,255,0.6), rgba(0,0,0,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
  opacity: 1;
}

/* ===== CONTENIDO DE TEXTO ===== */
.about-content {
  padding-left: 40px;
}

/* Etiqueta de sección */
.section-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tag-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Título */
.about-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.about-title .text-primary {
  background: linear-gradient(135deg, var(--primary), #0098c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Descripción */
.about-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Grid de características */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,195,255,0.1);
  border-color: var(--primary);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #0098c7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.feature-text p {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
}

/* Estadísticas */
.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 2px dashed rgba(0,195,255,0.2);
  border-bottom: 2px dashed rgba(0,195,255,0.2);
}

.stat-box {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-box .stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Botones */
.about-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.about-buttons .btn {
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary), #0098c7);
  border: none;
  box-shadow: 0 10px 20px rgba(0,195,255,0.3);
}

.about-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,195,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-card .carousel-control-prev,
  .about-image-card .carousel-control-next {
    opacity: 1;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 32px;
  }
  
  .about-stats {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .about-buttons {
    flex-direction: column;
  }
  
  .about-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .overlay-content h3 {
    font-size: 24px;
  }
  
  .overlay-stats {
    gap: 10px;
  }
  
  .stat-value {
    font-size: 18px;
  }
  
  .about-thumbnails {
    gap: 8px;
  }
  
  .about-image-card .carousel-control-prev,
  .about-image-card .carousel-control-next {
    width: 30px;
    height: 30px;
  }
}
/* Modal Styles galeria*/
.modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.modal-header {
  background: white;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-header .modal-title {
  font-weight: 600;
  color: #333;
}

.modal-header .btn-close {
  background: rgba(0,0,0,0.05);
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-header .btn-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* Modal Image Container */
.modal-image-container {
  position: relative;
  background: #f8f9fa;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.modal-image-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.modal-image-container img.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

/* Navigation Buttons */
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  color: #333;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.modal-nav-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev {
  left: 20px;
}

.modal-nav-btn.next {
  right: 20px;
}

/* Zoom Indicator */
.zoom-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 12px;
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-image-container:hover .zoom-indicator {
  opacity: 1;
}

/* Info Panel */
.modal-info-panel {
  background: white;
  height: 100%;
  padding: 25px;
  overflow-y: auto;
  max-height: 70vh;
}

.info-section {
  margin-bottom: 30px;
}

.info-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,195,255,0.1);
}

.info-content {
  color: #666;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.info-item {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
}

.info-label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.info-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Action Buttons */
.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f8f9fa;
  border: none;
  border-radius: 12px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,195,255,0.3);
}

.action-btn.favorite-modal.active {
  background: #ff4757;
  color: white;
}

/* Tags */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #f0f2f5;
  color: #555;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background: var(--primary);
  color: white;
}

/* Related Thumbnails */
.related-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.related-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.related-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-thumb.active {
  border: 3px solid var(--primary);
}

/* Image Counter */
.image-counter {
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  color: #666;
}

/* Gallery Grid (manteniendo estilos anteriores) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  padding: 15px;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.gallery-actions {
  display: flex;
  gap: 10px;
}

.gallery-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.gallery-link.favorite-btn.active {
  background: #ff4757;
  color: white;
}

/* Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 30px;
  border: none;
  background: white;
  color: #333;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-size: 16px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,195,255,0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .modal-info-panel {
    max-height: none;
    padding: 20px;
  }
  
  .action-buttons {
    grid-template-columns: 1fr;
  }
  
  .modal-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
  }
  
  .modal-image-container {
    min-height: 300px;
  }
  
  .related-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== BLOG SECTION MEJORADA ===== */
.blog-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Header decorativo */
.header-line {
  width: 50px;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
}

/* Blog Card */
.blog-card {
  height: 100%;
  perspective: 1000px;
}

.blog-card-inner {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover .blog-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 195, 255, 0.15);
  border-color: var(--primary);
}

/* Imagen wrapper */
.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

/* Overlay de imagen */
.blog-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 195, 255, 0.3) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-overlay {
  opacity: 1;
}

/* Categoría badge */
.category-badge {
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.blog-card:hover .category-badge {
  transform: translateY(0);
}

/* Acciones */
.blog-actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transform: translateY(-10px);
}

.blog-card:hover .action-btn {
  transform: translateY(0);
}

.action-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) !important;
}

/* Fecha flotante */
.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 15px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 5;
  border: 2px solid var(--primary);
}

.date-day {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.date-month {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}

.date-year {
  display: block;
  font-size: 10px;
  color: #666;
}

/* Contenido del blog */
.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Metadatos */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.meta-item {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-item i {
  font-size: 12px;
}

/* Título */
.blog-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary);
}

/* Extracto */
.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Footer del blog */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-stats {
  display: flex;
  gap: 15px;
}

.stat {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat i {
  color: var(--primary);
}

/* Botón   más */
.read-more-btn {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  color: var(--primary-dark);
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Botón ver más */
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 195, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-meta {
    gap: 10px;
  }
  
  .blog-title {
    font-size: 18px;
  }
  
  .blog-excerpt {
    font-size: 13px;
  }
  
  .btn-outline-primary {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .blog-date {
    padding: 8px 12px;
  }
  
  .date-day {
    font-size: 20px;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 5px;
  }
}
/* ===== BOTONES FLOTANTES ===== */
.social-float-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ===== BOTÓN DE FACEBOOK CON PREVIEW ===== */
.facebook-float-wrapper {
  position: relative;
}

.facebook-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1877f2, #0c63d4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulseFacebook 2s infinite;
}

.facebook-float-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0c63d4, #1877f2);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
  animation: none;
}

/* Preview de Facebook */
.facebook-preview {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 280px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.facebook-float-wrapper:hover .facebook-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.facebook-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.preview-content {
  padding: 15px;
  text-align: center;
  background: #f8f9fa;
}

.preview-content i {
  font-size: 32px;
  color: #1877f2;
  margin-bottom: 8px;
  display: block;
}

.preview-content span {
  display: block;
  font-weight: 700;
  color: #333;
  font-size: 14px;
  margin-bottom: 4px;
}

.preview-content small {
  display: block;
  font-size: 11px;
  color: #666;
}

/* ===== BOTÓN DE WHATSAPP (SIN PREVIEW) ===== */
.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #128C7E, #075E54);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* ===== TOOLTIPS (comunes para ambos botones) ===== */
.facebook-float-btn .btn-tooltip,
.whatsapp-float-btn .btn-tooltip {
  position: absolute;
  left: 70px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.facebook-float-btn {
  position: relative;
}

.whatsapp-float-btn {
  position: relative;
}

.facebook-float-btn:hover .btn-tooltip,
.whatsapp-float-btn:hover .btn-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(5px);
}

/* ===== ANIMACIONES DE PULSO ===== */
@keyframes pulseFacebook {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
  }
}

@keyframes pulseWhatsApp {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .social-float-buttons {
    bottom: 20px;
    left: 20px;
    gap: 12px;
  }
  
  .facebook-float-btn,
  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .facebook-preview {
    width: 260px;
    bottom: 60px;
  }
  
  .facebook-preview img {
    height: 140px;
  }
  
  .facebook-float-btn .btn-tooltip,
  .whatsapp-float-btn .btn-tooltip {
    left: 60px;
    padding: 6px 12px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .social-float-buttons {
    bottom: 15px;
    left: 15px;
    gap: 10px;
  }
  
  .facebook-float-btn,
  .whatsapp-float-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .facebook-preview {
    width: 240px;
    bottom: 55px;
  }
  
  .facebook-preview img {
    height: 130px;
  }
  
  .preview-content {
    padding: 12px;
  }
  
  .preview-content i {
    font-size: 28px;
  }
  
  .preview-content span {
    font-size: 12px;
  }
  
  .preview-content small {
    font-size: 10px;
  }
  
  .facebook-float-btn .btn-tooltip,
  .whatsapp-float-btn .btn-tooltip {
    left: 55px;
    padding: 5px 10px;
    font-size: 10px;
  }
}

/* ===== OPCIONAL: EFECTO DE ONDA AL HACER CLIC ===== */
.facebook-float-btn:active,
.whatsapp-float-btn:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* ===== OPCIONAL: MEJORAR LA ACCESIBILIDAD ===== */
.facebook-float-btn:focus-visible,
.whatsapp-float-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
