:root {
    --rojo: #f90909;
    --azul: #074384;
    --amarillo: #ffc107;
  --blanco: #FFFFFF; 
  --gris-oscuro: #333333; 
    --color-rojo: #dc3545;
    --color-amarillo: #ffc107;
    --color-azul: #074384;
    --color-blanco: #ffffff;
    --color-negro:#074384;    
}

/* ============================
BARRA DE NAVEGACION START
================================= */
/* Barra superior */
.top-bar {
    background: linear-gradient(90deg, var(--azul) 0%, #0a56a0 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.top-contact span {
    margin-right: 15px;
    transition: all 0.3s;
}

.top-contact i {
    color: var(--amarillo);
    margin-right: 9px;
}

/* Redes sociales */
.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--amarillo);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
}

/* Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    padding: 10px 25px;
    background-color: white;
    margin-right: 0;
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.08);
}

/* Banderas */
.country-flags {
    display: flex;
    gap: 10px;
    margin-right: auto;
    margin-left: 15px;
    align-items: center;
}

.flag {
    width: 28px;
    height: 19px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.flag:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.flag.peru {
    background: linear-gradient(to right, #f90909 33%, white 33%, white 66%, #f90909 66%);
}

.flag.ecuador {
    background: linear-gradient(to bottom, #FFD100 0%, #FFD100 33%, #0057B8 33%, #0057B8 66%, #EF3340 66%, #EF3340 100%);
}

.flag.ecuador::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #0057B8;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #0057B8, 0 0 0 2px #FFD100;
}

/* Menú */
.navbar-nav .nav-link {
    color: var(--azul) !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 22px;
    transition: all 0.3s;
    letter-spacing: 1px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--rojo) !important;
}

.navbar-nav .nav-link.active {
    color: white !important;
    background-color: var(--rojo);
}

.navbar-nav .dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.75rem;
    color: var(--rojo);
    margin-left: 6px;
    transition: transform 0.3s ease;
}

/* Dropdown */
.dropdown-menu {
    background-color: white;
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    border-top: 3px solid var(--amarillo);
    overflow: hidden;
}

.dropdown-item {
    color: var(--azul) !important;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 25px;
    border-left: 4px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.dropdown-item:hover {
    background: linear-gradient(to right, rgba(255, 193, 7, 0.1), rgba(255, 255, 255, 0.1)) !important;
    color: var(--rojo) !important;
    border-left: 4px solid var(--rojo);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    transform: translateX(5px);
}

.dropdown-item.active {
    background-color: var(--rojo) !important;
    color: white !important;
    border-left: 4px solid var(--amarillo);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--amarillo);
    opacity: 0;
    transition: all 0.3s;
}

.dropdown-item:hover::before {
    opacity: 1;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease-out;
}

/* Animación dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-brand {
        padding: 10px 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
    }

    .dropdown-menu {
        box-shadow: none;
        border-top: none;
        animation: none;
    }

    .dropdown-item:hover {
        transform: none;
    }

    .country-flags {
        margin-left: 10px;
        gap: 8px;
    }

    .flag {
        width: 20px;
        height: 14px;
    }
}
/* ============================
BARRA DE NAVEGACIÓN END
================================= */
/* ============================
CARRUCEL PRINCIPAL START
================================= */    
        .carousel-caption {
    bottom: 30%;
    background-color: rgba(7, 67, 132, 0.8);
    padding: 2rem;
    border-radius: 5px;
    text-align: center; /* Cambiado de left a center */
    left: 10%;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente los elementos */
    justify-content: center; /* Centra verticalmente */
}

/* Estilo específico para el botón */
.carousel-caption .btn {
    margin-top: 1.5rem;
    align-self: center; /* Asegura que el botón esté centrado */
    width: auto; /* Ancho automático según contenido */
    min-width: 200px; /* Ancho mínimo para buena apariencia */
}

/* Ajustes para mantener los otros estilos */
.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    width: 100%; /* Ocupa todo el ancho disponible */
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-top: 1rem;
    width: 100%; /* Ocupa todo el ancho disponible */
}
@media (max-width: 768px) {
    .carousel-caption {
        bottom: 20%;
        left: 5%;
        right: 5%;
    }
    
    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        min-width: 160px; /* Ajuste para móviles */
    }
}
/* ============================
CARRUCEL PRINCIPAL END
================================= */ 
/* ============================
PRESENTACION DE LA EMPRESA STAR
================================= */ 

#presentacion {
    position: relative;
    overflow: hidden;
}

#presentacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,193,7,0.05) 0%, rgba(220,53,69,0.05) 100%);
    z-index: 0;
}

#presentacion .container {
    position: relative;
    z-index: 1;
}

/* Animación para los íconos */
#presentacion .fa-2x {
    transition: transform 0.3s ease;
}

#presentacion .d-flex:hover .fa-2x {
    transform: scale(1.2);
}

/* Efecto hover para las tarjetas de logros */
#presentacion .card {
    transition: all 0.3s ease;
}

#presentacion .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
/* ============================
PRESENTACION DE LA EMPRESA END
================================= */ 

/* ============================
CARRUCEL PARA CLIENTES START
================================= */ 
#marcas-representadas {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.brand-card {
    width: 300px;
    height: 200px;
    margin: 0 20px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s;
    transform: translateZ(30px);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(0deg, rgba(7,67,132,0.9) 0%, transparent 70%);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s;
}

.brand-name {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.3s;
}

.brand-desc {
    color: var(--amarillo);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s 0.1s;
}

/* Efectos hover y active */
.brand-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.brand-card:hover .brand-logo {
    transform: translateZ(50px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.brand-card:hover .brand-overlay {
    opacity: 1;
}

.brand-card:hover .brand-name,
.brand-card:hover .brand-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Animación para carrusel */
@keyframes floatBrand {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(5deg); }
}

.carousel-item.active .brand-card {
    animation: floatBrand 6s ease-in-out infinite;
}

.carousel-item.active .brand-card:nth-child(2) {
    animation-delay: 0.3s;
}

/* Controles personalizados */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255,193,7,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--amarillo);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-card {
        width: 250px;
        height: 180px;
        margin: 0 10px;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
}
/* ============================
CARRUCEL PARA CLIENTES END
================================= */ 
/* ==============================
STYLOS PARA CARRUCEL MARCA STAR
=============================== */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.marquee-track {
    display: flex;
    width: calc(200% + 40px);
    animation: scroll 40s linear infinite;
}

.marquee-group {
    display: flex;
    width: 50%;
    gap: 20px;
    padding: 10px;
}

.brand-repair-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 15px;
    min-width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-repair-card img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.9);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.repair-badge {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: #f90909;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Efectos hover */
.brand-repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.brand-repair-card:hover img {
    transform: scale(0.9);
}

.brand-repair-card:hover .brand-overlay {
    opacity: 1;
}

/* Animación */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .marquee-track {
        animation: scroll-mobile 50s linear infinite;
    }
    
    .brand-repair-card {
        min-width: 120px;
        height: 100px;
        padding: 10px;
    }
    
    .brand-repair-card img {
        max-height: 50px;
    }
    
    .brand-overlay .btn {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    @keyframes scroll-mobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 15px)); }
    }
}

/* Pausar animación al interactuar */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}
/* ==============================
STYLOS PARA CARRUCEL MARCA END
=============================== */
/* ============================
BANNER MAQUINARIA PESADO START
================================= */ 
 .banner-maquinaria {
    background-color: #111;
  }

  .servicio-item span {
    font-size: 1rem;
  }

  @media (max-width: 767px) {
    .banner-maquinaria h1 {
      font-size: 1.75rem;
    }
    .banner-maquinaria .btn-lg {
      font-size: 1rem;
      padding: 0.75rem 1.25rem;
    }
  }
/* ============================
    MAQUINARIA PESADO END
================================= */ 
/* =============================
    CARD VENTA DE GRUA TORRE START
================================= */
   .equipo-card {
            border-radius: 12px;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 25px;
            height: 100%;
        }
        
        .equipo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .card-header {
            background-color: var(--azul);
            color: white;
            padding: 15px;
            position: relative;
        }
        
        .marca-badge {
            position: absolute;
            top: 10px;
            right: 15px;
            background-color: var(--amarillo);
            color: var(--azul);
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .especificacion {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .espec-icon {
            width: 30px;
            height: 30px;
            background-color: var(--rojo);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .btn-detalle {
            background-color: var(--azul);
            color: white;
            border: none;
            width: 100%;
            margin-bottom: 10px;
        }
        
        .btn-detalle:hover {
            background-color: #002244;
            color: white;
        }
        
        .btn-pdf {
            background-color: var(--rojo);
            color: white;
            border: none;
            width: 100%;
        }
        
        .btn-pdf:hover {
            background-color:  #f90909;
            color: white;
        }
        
        .card-footer {
            background-color: #f8f9fa;
            border-top: 1px solid #eee;
            padding: 15px;
        }
/* ============================
    CARD BENNER  VENTA DE GT END
================================= */ 
/* =============================
BANNER AUTOMATIZACION  INN. STAR
================================= */
.industrial-banner {
    background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
    color: white;
    border-bottom: 5px solid #f90909;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
    
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: 0.15;
}
    
.banner-content {
    position: relative;
    z-index: 2;
}
    
.banner-title {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}
    
.banner-title:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f90909, #ffc107);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}
    
.banner-highlight {
    color: #ffc107;
    font-weight: bold;
}
    
.banner-btn {
    background: #f90909;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
    font-size: 1.1rem;
}
    
.banner-btn:hover {
    background: #f90909;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.6);
}
    
.banner-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
    
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
    
@media (max-width: 768px) {
    .industrial-banner {
        padding: 60px 0;
    }
    .banner-title {
        font-size: 2rem !important;
    }
    .banner-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* =============================
BANNER AUTOMATIZACION END
================================= */
/* ====================================
BANNER  MANTENIMIENTO INDUSTRIAL START
========================================*/
  .rm-banner {
    position: relative;
    overflow: hidden;
  }
  
  .rm-banner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .service-card {
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
  }
  
  .rm-banner-card {
    position: relative;
    z-index: 2;
  }
  
  .rm-service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .rm-service-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #dee2e6;
  }
  
  @media (max-width: 992px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .rm-banner {
      background: #0d6efd !important;
    }
  }
/* ====================================
BANNER  MANTENIMIENTO INDUSTRIAL END
========================================*/
/* ====================================
     MECANICA INDUSTRIAL START
========================================*/
  .service-box {
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .service-box:hover {
    background-color: #FFCC00; /* amarillo al pasar mouse */
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  .service-box {
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .service-box:hover {
    background-color: #FFCC00;
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  /* ====================================
     MECANICA INDUSTRIAL END
========================================*/
/* ====================================
BANNER CERTIFICACION START
========================================*/

  .text-rojo { color: var(--rojo); }
  .btn-rojo {
    background-color: var(--rojo);
    color: var(--blanco);
    border: none;
  }

  .btn-rojo:hover {
    background-color: #074384;
    color: white;
  }
  /* m */
.titulo-certificado-modern {
  font-weight: 700;
  font-size: 2.2rem;
  display: inline-block;
  position: relative;
  color: var(--rojo);
}
.titulo-certificado-modern::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--amarillo), var(--rojo), var(--azul));
  bottom: -8px;
  left: 0;
  border-radius: 3px;
  animation: slideLine 4s infinite linear;

    .card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  .btn-outline-rojo {
    border-color: #dc3545;
    color: #dc3545;
  }
  .btn-outline-rojo:hover {
    background-color: #dc3545;
    color: white;
  }

  .btn-outline-azul {
    border-color: #0d6efd;
    color: #0d6efd;
  }
  .btn-outline-azul:hover {
    background-color: #0d6efd;
    color: white;
  }

  .btn-outline-warning:hover {
    background-color: #ffc107;
    color: #0d6efd;
  }
}
@keyframes slideLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
 
/* ====================================
        BANNER CERTIFICACION  END
========================================*/
/* ====================================
        CARD CERTIFICACION START
========================================*/
  .text-rojo { color: var(--rojo); }
  .text-azul { color: var(--azul); }
  .text-amarillo { color: var(--amarillo); }

  .btn-outline-rojo {
    border-color: var(--rojo);
    color: var(--rojo);
  }

  .btn-outline-rojo:hover {
    background-color: var(--rojo);
    color: white;
  }

  .btn-outline-azul {
    border-color: var(--azul);
    color: var(--azul);
  }

  .btn-outline-azul:hover {
    background-color: var(--azul);
    color: white;
  }

  .btn-outline-amarillo {
    border-color: var(--amarillo);
    color: var(--amarillo);
  }

  .btn-outline-amarillo:hover {
    background-color: var(--amarillo);
    color: white;
  }
/* ====================================
        CARD CERTIFICACION END
========================================*/
/* ====================================
        CARD DE NUESTROS PROYECTOS START
========================================*/

  .project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .project-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover .project-img {
    transform: scale(1.05);
  }
  
  .project-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
  }
  
  .project-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  
  .project-body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .project-body h5 {
    font-size: 1.1rem;
  }
  
  .project-body p {
    flex: 1;
  }
/* ====================================
        CARD DE NUESTROS PROYECTOS END
========================================*/
/* ====================================
        MONTAJE Y DESMONTAJE  DE GT STAR 
========================================*/
/* Contenedor principal */
.banner-container {
    background-color: var(--blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

/* Títulos */
.banner-title {
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}
.banner-title .title-part1 {
    color: var(--rojo);
}
.banner-title .title-part2 {
    color: var(--azul);
}

/* Marcas */
.brand-item {
    background-color: var(--blanco);
    border: 2px solid var(--azul);
    border-radius: 50px;
    color: var(--azul);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.brand-item:hover {
    background-color: var(--azul);
    color: var(--blanco);
    transform: translateY(-3px);
}
.brand-icon {
    color: var(--rojo);
}

/* Botones */
.btn-catalog {
    background-color: var(--azul);
    color: var(--blanco);
    font-weight: 600;
    border: 2px solid var(--azul);
    transition: all 0.3s;
}
.btn-catalog:hover {
    background-color: transparent;
    color: var(--azul);
}

.btn-contact {
    background-color: var(--rojo);
    color: var(--blanco);
    font-weight: 600;
    border: 2px solid var(--rojo);
    transition: all 0.3s;
}
.btn-contact:hover {
    background-color: transparent;
    color: var(--rojo);
}

/* Carrusel */
.carousel-img {
    height: 70%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--azul);
    opacity: 0.5;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: var(--rojo);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
.carousel-control-prev {
    left: 20px;
}
.carousel-control-next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    .brand-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    .btn-catalog,
    .btn-contact {
        padding: 8px 20px;
        font-size: 1rem;
    }
}
/* ====================================
        MONTAJE Y DESMONTAJE DE GT END
========================================*/
/* ====================================
        CONTACTO STAR
========================================*/
/* ==============================
       SECCION DE CONTACTOS 
================================== */
/* General */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

/* Formulario de contacto */
.formulario-contacto {
    background: #ffffff;
}

.titulo-formulario {
    font-weight: bold;
    font-size: 1.8rem;
    color: #05136a;
    text-align: center;
}

/* Etiquetas requeridas */
.required-field::after {
    content: " *";
    color: red;
}

/* Botón enviar */
.btn-enviar {
    background-color: #fd0019; /* rojo Bootstrap */
    color: white;
    font-weight: bold;
    padding: 0.75rem;
    border: none;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.btn-enviar:hover {
    background-color: #f9051d;
}

/* Tarjeta de información */
.card-contacto {
    background-color: #ffffff;
}

.card-contacto h2 {
    font-size: 1.8rem;
    color: #05136a;
}

.card-contacto h3 {
    font-size: 1.4rem;
    color: #05136a;
}

.card-contacto p {
    font-size: 1rem;
    color: #080808;
}

/* Espaciados */
.ps-4 {
    padding-left: 1.5rem !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .formulario-contacto,
    .card-contacto {
        padding: 2rem 1rem;
    }
}


/* ============================
        CONTACTO END
================================= */ 
/* ============================
  CARD DE  MONTAJES GR START
================================= */ 
/* card */
.card-servicio {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--amarillo);
}

.card-servicio:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-servicio .icono-card {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-servicio h5 {
  color: var(--azul);
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-servicio ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #333;
}

.card-servicio ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .card-servicio {
    padding: 1.5rem 1rem;
  }
}
.btn-danger {
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #f90909;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.3);
  transform: translateY(-2px);
}
/* ============================
  CARD DE  MONTAJES GR  END
================================= */ 
/* ============================
       FOOTER START
================================= */ 
    .footer-industrial {
            background-color: var(--azul);
            color: var(--blanco);
            padding-top: 50px;
            position: relative;
        }
        
        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23CC0000" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23CC0000"/></svg>');
            background-size: cover;
        }
        
        .footer-title {
            color: var(--amarillo);
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--rojo);
            bottom: -8px;
            left: 0;
        }
        
        .contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--amarillo);
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--blanco);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--rojo);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        
        .country-flag {
            width: 20px;
            margin-right: 8px;
            vertical-align: middle;
        }
/* ============================
        FOOTER END
================================= */ 
/* ============================
        BOTON WATSAPP STAR
================================= */ 
.whatsapp-chatbot {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 1000;
}

/* Botón principal */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #0ad61b;
}

/* Contenedor del chatbot */
.chatbot-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
    border: 2px solid var(--azul);
}

.chatbot-header {
    background-color: var(--azul);
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h5 {
    margin: 0;
    font-size: 16px;
}

.close-chatbot {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chatbot-body {
    height: 250px;
    padding: 15px;
    overflow-y: auto;
    background: #f5f5f5;
}

/* Mensajes */
.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
}

.bot-message {
    background: var(--azul);
    color: white;
    align-self: flex-start;
}

.user-message {
    background: var(--amarillo);
    color: var(--azul);
    align-self: flex-end;
    margin-left: auto;
}

/* Preguntas rápidas */
.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.quick-btn {
    background: rgba(0, 51, 102, 0.1);
    border: 1px solid var(--azul);
    color: var(--azul);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.quick-btn:hover {
    background: var(--azul);
    color: white;
}

/* Botón WhatsApp directo */
.whatsapp-direct {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
}

.whatsapp-direct:hover {
    background-color: #128C7E;
    color: white;
}
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Contador de visitas */
        .visitor-counter {
            background-color: var(--rojo);
            color: var(--blanco);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            display: inline-block;
            margin-top: 10px;
        }
/* ============================
        BOTON WATSAPP  END
================================= */ 
/* ============================
        STYLO BOTON RETORNO
================================= */ 
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--azul, #007bff); /* o cualquier color que uses */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.btn-back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.btn-back-to-top:hover {
  background-color: var(--rojo, #dc3545);
}
/* ============================
     BOTON RETORNO END
================================= */ 
