/* ===== VARIABLES Y ESTILOS BASE ===== */
:root {
  --primary-color: #0070e7;
  --secondary-color: #bb0404f4;
  --dark-color: #141414;
  --light-color: #ffffff;
  --text-color: #333;
  --navbar-height: 70px;
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Times New Roman', Times, serif;
  color: var(--text-color);
  line-height: 1.6;
  margin-top: var(--navbar-height);
  background-color: #f8f9fa;
}

/* ===== NAVBAR ===== */
#custom-navbar {
  background-color: rgba(0, 0, 0, 0.971);
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#custom-navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: var(--light-color);
  margin-left: 10px;
}

#custom-navbar .nav-image img {
  max-height: 50px;
  width: auto;
  border-radius: 8px;
  transition: transform var(--transition-speed) ease;
}

#custom-navbar .nav-image img:hover {
  transform: scale(1.1);
}

#custom-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

#custom-navbar .navbar-nav .nav-item .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--light-color);
  padding: 8px 15px;
  border-radius: 5px;
  transition: all var(--transition-speed);
  font-family: 'Times New Roman', Times, serif;
}

#custom-navbar .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}

/* Dropdown Styles */
.dropdown-menu {
  background-color: var(--dark-color);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: #e7e7e7;
  padding: 8px 15px;
  transition: all var(--transition-speed) ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}

/* Logo Styles */
img[src="/static/images/logo3.png"] {
  width: 75px;
  height: auto;
  border: 5px solid rgba(7, 50, 148, 0.5);
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(228, 222, 222, 0.1);
  margin-top: -15%;
}





/* ===== HERO SECTION ===== */
.hero_area {
  margin-top: -3%;
}
/* ===== SECCIÓN COMBINADA ===== */
.hero-combined-section {
  position: relative;
  width: 150%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5eff4 0%, #4577dc 100%);
  overflow: hidden;
  padding: 0 5%;
  margin-left: -25%;
}

.combined-container {
  display: flex;
  width: 100%;
  max-width: 1900px;
  height: 80%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-column {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.video-column {
  flex: 1;
  position: relative;
}

/* ===== ESTILOS DEL SLIDER ===== */
.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.slider-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  width: 100%;
}

.slide-text h2 {
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.slide-text p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
  max-width: 600px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #4facfe;
  transform: scale(1.2);
}

/* ===== ESTILOS DEL VIDEO ===== */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 15, 26, 0.7) 0%, rgba(15, 15, 26, 0.3) 100%);
}

.controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

.sound-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 12px 20px;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sound-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
}

.sound-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E");
  background-size: contain;
}



/* ===== EFECTOS ADICIONALES ===== */
.hero-combined-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-combined-section {
    height: auto;
    min-height: auto;
    padding: 80px 5%;
  }
  
  .combined-container {
    flex-direction: column;
    height: auto;
  }
  
  .slider-column, .video-column {
    flex: none;
    width: 100%;
  }
  
  .slider-column {
    padding: 40px;
    order: 2;
  }
  
  .video-column {
    height: 500px;
    order: 1;
  }
  
  .slide-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .slider-column {
    padding: 30px 20px;
  }
  
  .slide-text h2 {
    font-size: 1.8rem;
  }
  
  .slide-text p {
    font-size: 1rem;
  }
  
  .controls {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-combined-section {
    padding: 60px 3%;
  }
  
  .slide-text h2 {
    font-size: 1.5rem;
  }
  
  .slider-controls {
    margin-top: 20px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}




/* ===== UNIQUE SLIDER SECTION ===== */
.unique-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(238,243,255,1) 99%, rgba(255,255,255,1) 100%);
}

.unique-carousel {
  width: 100%;
  height: 100%;
}

.unique-carousel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.unique-carousel-item {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.unique-carousel-item.active {
  display: flex;
  opacity: 1;
}

.unique-slider-item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  box-sizing: border-box;
}

.unique-row {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.unique-col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px;
}

.unique-img-box {
  width: 100%;
  text-align: center;
}

.unique-img-box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 35%;
  margin-left: -45%;
}

.unique-detail-box {
  text-align: left;
  padding: -10px;
  margin-top: 26%;
  margin-left: 15%;
}

.unique-detail-box h1 {
  font-size: 39px;
  color: #000000;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.unique-detail-box p {
  font-size: 24px;
  color: #0b0b0b;
  line-height: 1.6;
  align-items: center;
  font-family: 'Times New Roman', Times, serif;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  .slider-section {
    padding: 30px 15%;
    
  }
  
  .slide-text p {
    font-size: 22px;
  }
  
  .unique-detail-box h1 {
    font-size: 32px;
  }
  
  .unique-detail-box p {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .hero_area {
    margin-top: 5%;
  }
  
  .video-section {
    height: 60vh;
  }
  
  .slider-section {
    padding: 30px 10%;
    
  }
  
  .slide-text p {
    font-size: 20px;
  }
  
  .unique-row {
    flex-direction: column;
  }
  
  .unique-col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .unique-img-box img {
    margin-bottom: 20px;
    margin-left: 0;
  }
  
  .unique-detail-box {
    margin-top: 0;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #custom-navbar {
    flex-direction: column;
    padding: 10px;
    height: auto;
  }
  
  .navbar-brand {
    margin-bottom: 10px;
  }
  
  #custom-navbar .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  #custom-navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    padding: 5px 10px;
  }
  
  .hero_area {
    margin-top: 5%;
  }
  
  .video-section {
    height: 50vh;
    min-height: 400px;
  }
  
  .video-container {
    width: 95%;
    border-radius: 10%;
  }
  
  #sound-toggle {
    font-size: 14px;
    padding: 8px 15px;
    margin-bottom: 110px;
    
  }
  
  .slider-section {
    padding: 30px 5%;
    margin-top: -10%;
  }
  
  .slider-wrapper {
    height: 450px;
  }
  
  .slide-image img {
    max-width: 250px;
  }
  
  .slide-text strong {
    font-size: 24px;
  }
  
  .slide-text p {
    font-size: 18px;
    margin-top: 0;
  }
  
  .slider-btn {
    padding: 10px;
    font-size: 1.2rem;
  }
  
  .slider-btn.prev-btn {
    left: -50px;
  }
  
  .slider-btn.next-btn {
    right: -50px;
  }
  
  .unique-slider-section {
    height: auto;
    padding: 50px 0;
  }
  
  .unique-slider-item {
    padding: 30px;
  }
  
  .unique-detail-box h1 {
    font-size: 28px;
  }
  
  .unique-detail-box p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero_area {
    margin-top: 5%;
  }
  
  .video-section {
    height: 40vh;
    min-height: 300px;
  }
  
  #sound-toggle {
    font-size: 12px;
    padding: 5px 10px;
    margin-top: 25%;
  }
  
  .slider-wrapper {
    height: 400px;
  }
  
  .slide-image img {
    max-width: 200px;
    margin-top: 0;
  }
  
  .slide-text strong {
    font-size: 20px;
  }
  
  .slide-text p {
    font-size: 16px;
    text-align: center;
  }
  
  .slider-btn {
    top: 60%;
    padding: 8px;
    font-size: 1rem;
  }
  
  .slider-btn.prev-btn {
    left: -40px;
  }
  
  .slider-btn.next-btn {
    right: -40px;
  }
  
  .unique-slider-item {
    padding: 20px;
  }
  
  .unique-detail-box h1 {
    font-size: 24px;
  }
  
  .unique-detail-box p {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .hero_area {
    margin-top: 5%;
  }
  
  .video-section {
    height: 35vh;
  }
  
  .slider-wrapper {
    height: 350px;
  }
  
  .slide-image img {
    max-width: 150px;
  }
  
  .slide-text strong {
    font-size: 18px;
  }
  
  .slide-text p {
    font-size: 14px;
  }
  
  .unique-detail-box h1 {
    font-size: 20px;
  }
  
  .unique-detail-box p {
    font-size: 14px;
  }
}


/* SECCION DE SERVICIOS CSS*/

.service_section {
  padding: 140px 80px;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url('/static/images/BACK3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom_heading-container h3 {
  font-size: 54px;
  font-weight: 800;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 80px;
}

.service_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas fijas */
  gap: 80px;
 
}

.service_item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service_item:hover {
  transform: scale(1.02);
}

.video-box {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
}

.detail-box {
  padding: 30px;
  text-align: center;
}

.detail-box h5 {
  font-size: 26px;
  font-family: 'Orbitron', sans-serif;
  color: #0869d1;
  margin-bottom: 10px;
}

.detail-box p {
  font-size: 18px;
  color: #444;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 20px;
}

.details-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #0869d1, #0070e7);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 105, 209, 0.3);
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: linear-gradient(135deg, #005bb5, #004ba0);
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(8, 105, 209, 0.4);
}



/* Ventana de Detalles Tecnológica */
.details-window {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.details-window.active {
  opacity: 1;
  pointer-events: all;
}

.details-content {
  background: linear-gradient(135deg, rgba(0, 18, 66, 0.95), rgba(0, 0, 0, 0.9));
  border: 2px solid rgba(0, 119, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  width: 95%;
  max-width: 700px;
  box-shadow: 0 0 25px rgba(0, 119, 255, 0.3);
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #ff4c4c;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

.details-content h2 {
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.details-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.details-images img {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 119, 255, 0.25);
  transition: transform 0.3s ease;
}

.details-images img:hover {
  transform: scale(1.05);
}

.details-content p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.action-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.whatsapp-btn {
  background: linear-gradient(to right, #25d366, #1ebe57);
  color: white;
}

.whatsapp-btn:hover {
  background: #1ba34d;
  transform: scale(1.05);
}

.email-btn {
  background: linear-gradient(to right, #c90000, #a70000);
  color: white;
}

.email-btn:hover {
  background: #8f0000;
  transform: scale(1.05);
}

/* RESPONSIVE 🔽 */
@media (max-width: 768px) {
  .details-content {
    padding: 20px;
  }

  .details-content h2 {
    font-size: 22px;
  }

  .details-images img {
    max-width: 160px;
  }

  .details-content p {
    font-size: 14px;
  }

  .action-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .details-content {
    padding: 15px;
  }

  .details-content h2 {
    font-size: 18px;
  }

  .details-images img {
    max-width: 130px;
  }

  .details-content p {
    font-size: 13px;
  }

  .action-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/*CASOS DE EXITO*/

/* Sección General */
/* Sección de Casos de Éxito - Versión Compacta */
.unique-success-stories {
  padding: 60px 20px;
  background-color: #f9f9f9;
  background-image: url('/static/images/BACK3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.success-heading-container {
  text-align: center;
  margin-bottom: 40px;
}

.success-title {
  font-size: 36px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.success-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0056b3, #00a8ff);
  margin: 15px auto;
  border-radius: 2px;
}

/* Contenedor en Cuadrícula Compacta */
.success-stories-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tarjeta Compacta con Todo el Contenido */
.success-story {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.success-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.success-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.success-story-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.success-story-title {
  font-size: 20px;
  color: #0056b3;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.4;
}

.success-story-description {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Efectos Interactivos */
.success-story:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.success-story:hover .success-image {
  transform: scale(1.05);
}

/* Animaciones de Aparición */
.success-story {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Retrasos para animación escalonada */
.success-story:nth-child(1) { animation-delay: 0.1s; }
.success-story:nth-child(2) { animation-delay: 0.2s; }
.success-story:nth-child(3) { animation-delay: 0.3s; }
.success-story:nth-child(4) { animation-delay: 0.4s; }
.success-story:nth-child(5) { animation-delay: 0.5s; }
.success-story:nth-child(6) { animation-delay: 0.6s; }
.success-story:nth-child(7) { animation-delay: 0.7s; }
.success-story:nth-child(8) { animation-delay: 0.8s; }

/* Versión Mobile */
@media (max-width: 768px) {
  .success-stories-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .success-title {
    font-size: 28px;
  }
}

/* Versión Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .success-stories-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MARCAS CARRUSEL. */

/* SIGNATURES */
.signature-carousel-section {
  padding: 10px 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('/static/images/BACK2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.signature-container {
  width: 100%; /* Ajusta el ancho dinámicamente */
  max-width: 1200px;
  margin: 0 auto; /* Centra el contenedor */
  padding: 0 15px;
  text-align: center;
}

.signature-title h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #005effbb;
}

.signature-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.signature-carousel-track {
  display: flex;
  animation: scroll 20s linear infinite; /* Animación continua */
}

.signature-carousel-item {
  flex: 0 0 auto;
  width: 200px;
  height: 150px;
  margin: 0 20px;
}

.signature-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Animación del carrusel */
@keyframes scroll {
  from {
    transform: translateX(0); /* Inicia en la posición original */
  }
  to {
    transform: translateX(-100%); /* Mueve todo el track a la izquierda */
  }
}
/* Responsivo */
@media (max-width: 768px) {
  .signature-title h2 {
    font-size: 1.5rem;
  }
  .signature-carousel-item {
    width: 150px;
    height: 120px;
  }
}


/* Sección principal del footer */
/* footer */
.info_section .info-logo h2 {
  font-weight: bold;
  font-size: 2rem;
  border-bottom: 2px solid #13a4dc;
  padding-bottom: 10px;
  margin-bottom: 15px;
  margin-left: 0; /* Eliminado margen negativo */
}
info_section .info-logo p{
  color: #ffffff;

}
/* Texto principal */
.info_section {
  background-color: #080808;
  color: #027be4;
  padding: 20px; /* Aumentado para mayor separación */
  margin: 0; /* Sin márgenes externos */
}



.footer_section {
  background-color: #000000; /* Fondo negro */
  display: flex; /* Flexbox para diseño horizontal */
  justify-content: space-between; /* Espaciado entre elementos */
  align-items: center; /* Centra los elementos verticalmente */
  padding: 10px 20px; /* Espaciado compacto */
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 14px; /* Tamaño de fuente reducido */
}

/* Párrafo central */
.footer_section p {
  margin: 0; /* Elimina márgenes adicionales */
  text-align: center;
  flex: 1; /* Ocupa el espacio necesario para centrarse */
  font-size: 14px;
}

/* Contenedor de contactos */
.info_section .info-contact {
  display: flex; /* Flexbox para diseño horizontal */
  gap: 15px; /* Espaciado entre cada elemento */
  align-items: center; /* Centra verticalmente los íconos y texto */
  justify-content: flex-end; /* Alinea todo a la derecha */
}

.info_section .info-contact h6 {
  color: #0093e9;
  font-size: 14px; /* Tamaño reducido para ajustarse al diseño compacto */
  margin: 0; /* Sin márgenes extra */
}

.email-logo{

  size: 2px;
}
.info_section .info-contact a {
  color: #ffffff;
  text-decoration: none;
  display: flex; /* Ícono y texto en una sola línea */
  align-items: center; /* Centra verticalmente */
  gap: 5px; /* Espaciado entre ícono y texto */
  font-size: 14px; /* Ajusta el tamaño del texto */
}

.info_section .info-contact a img {
  width: 20px; /* Tamaño más pequeño de íconos */
}

/* Ajuste del contenedor general */
.container-fluid.footer_section {
  max-width: 100%; /* Asegura que no se desborde */
  margin-bottom: -2%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
  }

  .service-block {
      flex-direction: column;
      width: 90%;
      max-width: 600px;
  }

  .service-block:nth-child(even) {
      flex-direction: column;
  }

  .service-image img {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      border-radius: 12px;
  }

  .service-content {
      padding: 20px;
  }
}

@media (max-width: 768px) {
  .service-container {
      padding: 30px 15px;
  }

  .service-block {
      width: 100%;
  }

  .service-image img {
      max-height: 250px;
  }

  .service-content h2 {
      font-size: 1.5rem;
  }

  .service-content p {
      font-size: 1rem;
  }

  .contact-button {
      padding: 10px 20px;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-container {
      padding: 20px 10px;
  }

  .service-image img {
      max-height: 200px;
      border-radius: 8px;
  }

  .service-content h2 {
      font-size: 1.3rem;
  }

  .service-content p {
      font-size: 0.9rem;
  }

  .contact-button {
      padding: 8px 15px;
      font-size: 0.9rem;
  }
}




/*responsive new*/

/* Estilos generales para móviles */
@media (max-width: 768px) {
  /* Ajustes para el navbar */
 /* Estilos generales del navbar */
#custom-navbar {
  background-color: rgba(0, 0, 0, 0.971);
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Navbar brand (logo y texto) */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  margin-left: 10px;
}

/* Logo dentro del navbar */
#custom-navbar .nav-image img {
  max-height: 50px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#custom-navbar .nav-image img:hover {
  transform: scale(1.1);
}

/* Menú de navegación */
#custom-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

#custom-navbar .navbar-nav .nav-item .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-family: 'Times New Roman', Times, serif;
}

#custom-navbar .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Menú desplegable (hamburguesa) para móviles */
.navbar-toggler {
  display: none; /* Oculto por defecto */
  background: none;
  border: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  /* Ocultar el menú de navegación original */
  #custom-navbar .navbar-nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px; /* Ajusta según la altura del navbar */
    right: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Mostrar el menú desplegable (hamburguesa) */
  .navbar-toggler {
    display: block;
  }

  /* Mostrar el menú cuando está activo */
  #custom-navbar .navbar-nav.active {
    display: flex;
  }

  /* Ajustar el tamaño del logo y texto en móviles */
  .navbar-brand span {
    font-size: 20px;
  }

  #custom-navbar .nav-image img {
    max-height: 40px;
  }

  /* Ajustar los enlaces del menú */
  #custom-navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    padding: 6px 10px;
  }

  /* Ocultar el menú de servicios en móviles */
  .services-dropdown .services-menu {
    display: none;
  }

  .services-dropdown:hover .services-menu {
    display: none;
  }

  .services-toggle::after {
    display: none;
  }
}

  .services-menu {
    position: static;
    margin: 0;
    box-shadow: none;
  }

  .services-item {
    font-size: 14px;
  }

  /* Ajustes para la sección de video */
  .video-section {
    height: 50vh;
  }

  .video-container {
    width: 100%;
    height: 150%;
    object-fit: cover;
    border-radius:0;
  }

  .side-image {
    width: 100px;
  }

  .controls {
    bottom: 10px;
    padding: 5px;
  }

  button {
    font-size: 18px;
    padding: 8px 12px;
  }

  input[type="range"] {
    width: 80px;
  }

  /* Ajustes para el slider */
  .slider-wrapper {
    height: 500px;
    margin-top: 10%;
  }

  .slide-text h2 {
    font-size: 1.2em;
  }

  .slide-text p {
    font-size: 18px;
  }

  .slider-btn {
    top: 60%;
    font-size: 1.2rem;
  }

  /* Ajustes para la sección de servicios */
  .service_section {
    padding: 50px 20px;
    
  }

  .custom_heading-container h3 {
    font-size: 36px;
  }

  .service_container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .img-box img {
    height: 250px;
  }

  .detail-box h5 {
    font-size: 24px;
  }

  .detail-box p {
    font-size: 16px;
  }

  .details-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Ajustes para la sección de casos de éxito */
  .unique-success-stories {
    padding: 40px 10px;
  }

  .success-title {
    font-size: 28px;
  }

  .success-story {
    flex-direction: column;
    padding: 20px;
    width: 100%;
  }

  .success-image {
    width: 100%;
    height: 200px;
  }

  .success-story-content {
    max-width: 100%;
  }

  .success-story-title {
    font-size: 20px;
  }

  .success-story-description {
    font-size: 14px;
  }

  /* Ajustes para el carrusel de marcas */
  .signature-carousel-item {
    width: 150px;
    height: 100px;
  }

  /* Ajustes para el footer */
  .footer_section {
    flex-direction: column;
    padding: 10px;
  }

  .info_section .info-contact {
    justify-content: center;
    gap: 10px;
  }

  .info_section .info-contact h6 {
    font-size: 12px;
  }

  .info_section .info-contact a {
    font-size: 12px;
  }

  .info_section .info-contact a img {
    width: 15px;
  }
}

/* Estilos para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Ajustes para el navbar */
  #custom-navbar {
    padding: 15px;
  }

  #custom-navbar .navbar-nav {
    gap: 15px;
  }

  #custom-navbar .navbar-brand span {
    font-size: 22px;
  }

  #custom-navbar .navbar-nav .nav-item .nav-link {
    font-size: 18px;
  }

  /* Ajustes para la sección de video */
  .video-section {
    height: 60vh;
  }

  .video-container {
    width: 90%;
  }

  .side-image {
    width: 150px;
  }

  .controls {
    bottom: 15px;
    padding: 10px;
  }

  button {
    font-size: 20px;
    padding: 10px 15px;
  }

  input[type="range"] {
    width: 100px;
  }

  /* Ajustes para el slider */
  .slider-wrapper {
    height: 500px;
  }

  .slide-text h2 {
    font-size: 1.3em;
  }

  .slide-text p {
    font-size: 20px;
  }

  .slider-btn {
    top: 65%;
    font-size: 1.3rem;
  }

  /* Ajustes para la sección de servicios */
  .service_section {
    padding: 80px 30px;
  }

  .custom_heading-container h3 {
    font-size: 40px;
  }

  .service_container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  .img-box img {
    height: 300px;
  }

  .detail-box h5 {
    font-size: 26px;
  }

  .detail-box p {
    font-size: 18px;
  }

  .details-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Ajustes para la sección de casos de éxito */
  .unique-success-stories {
    padding: 50px 20px;
  }

  .success-title {
    font-size: 30px;
  }

  .success-story {
    padding: 25px;
    width: 90%;
  }

  .success-image {
    width: 200px;
    height: 250px;
  }

  .success-story-content {
    max-width: 600px;
  }

  .success-story-title {
    font-size: 22px;
  }

  .success-story-description {
    font-size: 16px;
  }

  /* Ajustes para el carrusel de marcas */
  .signature-carousel-item {
    width: 180px;
    height: 120px;
  }

  /* Ajustes para el footer */
  .footer_section {
    padding: 15px;
  }

  .info_section .info-contact {
    gap: 20px;
  }

  .info_section .info-contact h6 {
    font-size: 14px;
  }

  .info_section .info-contact a {
    font-size: 14px;
  }

  .info_section .info-contact a img {
    width: 18px;
  }
}