/* Estilos generales */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

/* Video como fondo */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Capa de gradiente encima del video */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 50, 0.5), rgba(0, 0, 50, 0.5));
  z-index: 1;
}

/* Contenido sobre el video y gradiente */
.hero .container {
  position: relative;
  z-index: 2;
}





/* Navbar general */
.navbar {
  transition: all 0.3s ease-in-out;
  padding-top: 1rem;
  padding-bottom: 1rem;
   padding: 20px;
    padding-right: 0px;
   
}








.navbar .nav-link {
  color: #1d252d !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #0061fe !important; /* naranja o cualquier color al pasar el mouse */
}



 

.navbar .nav-link.active {
  color: #0061fe !important;
  font-weight: bold;
  
}


/* Solo en móviles */
@media (max-width: 767px) {
  .navbar {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Marca (logo) */
.navbar-brand {
  font-size: 1.5rem;
  margin-left: 20px;
}


@media (max-width: 767px) {
  .navbar-brand {
  font-size: 1.5rem;
  padding-left: 10px;
}

}



.logo {
  height: 60px;
}

/* Tamaño más pequeño en móviles */
@media (max-width: 576px) {
  .logo {
    height: 40px; /* o el valor que desees */
  }
}


 


[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    border: none;
}


.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: #fff;
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
   
}







/* Menú */
.navbar-nav .nav-link {
  color: #333;
  margin: 0 10px;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

 



 



/* Estilo para el contenedor del formulario */
.form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Estilos para los textos */
.form-container label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-container h2 {
  margin-bottom: 30px;
}

/* Inputs, selects y textarea */
.form-control,
.form-select,
textarea {
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 15px;
}

/* Botón de envío */
.form-container button[type="submit"] {
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 576px) {
  .form-container {
    padding: 25px;
  }
}





 /* SECCIÓN: Servicios Detallados */
.rounded-4 {
  border-radius: 1rem !important;
}

.shadow-sm {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.text-primary {
  color: #007bff !important;
}

.text-success {
  color: #28a745 !important;
}

.fs-2 {
  font-size: 1.75rem !important;
}

h4.fw-bold {
  font-size: 1.25rem;
  color: #111827;
}


 


.bg-white p {
  font-size: 15px;
  color: #111827;
  margin-bottom: 1rem;
}

ul.list-unstyled li {
  font-size: 15px;
  line-height: 1.6;
}

 
.servicios-detallados {
  padding-top: 0px;
  padding-bottom: 80px;
}




.vehiculo-section {
  background-color: #173588;
}

.vehiculo-form {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropzone {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 30px;
  background-color: #f9f9f9;
  cursor: pointer;
  position: relative;
}

.dropzone:hover {
  background-color: #f1f1f1;
}

.preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}

.preview-image {
  position: relative;
  width: 100px;
  height: 100px;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
}

.preview-image .remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
}








 
/* Botón naranja personalizado */
.custom-orange {
  background-color: white;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  color:#0061fe;
}

.custom-orange:hover {
  background-color: white;
  color:#0061fe;
}


.custom-orange:active {
  background-color: white;
  color:#0061fe;
}


.btn:focus,
.btn:active,
button:focus,
button:active {
  box-shadow: none !important;
  outline: none !important;
}

.btn:active {
  background-color: #fff !important;
  border-color: inherit !important;
   
}





 .btn-light{
    background-color:#0061fe;
   color:white;
 } 


 .btn-light:hover{
    background-color: #0061fe;
   color:white;
 } 




/* Botón naranja */
.btn-orange {
  background-color: red;
  color: white;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.btn-orange:hover {
  background-color: #fff;
}




.preview-container img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}





.seccionproveedores{
  display: none;
}

















.footer {
  background-color: #0d152e;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}

.footer-link {
  color: #ccc;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .fa {
  transition: color 0.3s ease;
}

.footer .fa:hover {
  color: #f76c1d;
}

.footer ul {
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 8px;
  list-style: none;
}

.footer hr {
  border-top: 1px solid #444;
}

@media (max-width: 767px) {
  .footer .d-flex {
    justify-content: flex-start;
  }
}








 

/* ========================================
   SECCIÓN QUIÉNES SOMOS - Personalizada
======================================== */
#quienes-somos {
  background-color: #fff;
  padding: 80px 0;
}

#quienes-somos h2 {
  font-size: 2.2rem;
  color: #002a4e;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 90px;
}

#quienes-somos h3 {
  font-size: 1.5rem;
  color: #002a4e;
  font-weight: 600;
  margin-bottom: 15px;
}

#quienes-somos p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 1rem;
}

/* Imagen derecha */
#quienes-somos .imagen-quienes img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  padding:0px;
  padding-top: 130px;
}

/* Misión y Visión */
#quienes-somos .mision,
#quienes-somos .vision {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
   
}

/* Responsive */
@media (max-width: 991px) {
  #quienes-somos h2 {
    font-size: 1.8rem;
    margin-top:20px;
  }
  #quienes-somos h3 {
    font-size: 1.3rem;
  }
  #quienes-somos .imagen-quienes img {
    margin-bottom: 0px;
    padding:0px;
  }
}




/* ======= VALORES CORPORATIVOS ======= */
#valores {
  background-color: #ffffff; /* Fondo blanco */
  padding-bottom: 40px;
}

#valores h2 {
  color: #002a4e;
  font-weight: 700;
}

.valor-box {
  background-color: #f8f9fa;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.valor-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.valor-box i {
  color: #007bff;
}

.valor-box h5 {
  color: #002a4e;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.valor-box p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive */
@media (max-width: 767px) {
  #valores h2 {
    font-size: 1.8rem;
  }

  .valor-box h5 {
    font-size: 1.2rem;
  }

  .valor-box p {
    font-size: 0.95rem;
  }
}



#titulo-cotizar {
  margin-top: 180px;
}




/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;          /* Verde oficial de WhatsApp */
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;                      /* Para que quede sobre todo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;          /* Verde más oscuro al hover */
    transform: scale(1.1);              /* Efecto zoom sutil */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;                    /* Ajuste fino del icono */
}





 


 
 :root {
    --c-accent: #c8a96e;
    --c-accent-dark: #a8864a;
    --c-dark: #1a1a1a;
    --c-white: #ffffff;
    --radius: 14px;
    --transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-carrusel: 0 24px 64px rgba(0,0,0,0.16);
  }

  .carrusel-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    user-select: none;
  }

  .carrusel-counter {
    display: flex;
    justify-content: flex-end;
    font-family: 'Georgia', serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 10px;
    padding-right: 2px;
  }

  .carrusel-counter span {
    font-weight: 700;
    color: var(--c-accent-dark);
  }

  .carrusel-contenedor {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-carrusel);
    background: var(--c-dark);
    aspect-ratio: 4 / 3;
  }

  .carrusel-track {
    display: flex;
    height: 100%;
    transition: transform var(--transition);
    will-change: transform;
  }

  .carrusel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carrusel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    pointer-events: none;
  }

  /* Botones DENTRO de la imagen */
  .carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    color: var(--c-white);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    outline: none;
  }

  .carrusel-btn svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
  }

  .carrusel-btn--prev { left: 14px; }
  .carrusel-btn--next { right: 14px; }

  .carrusel-btn:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(200,169,110,0.5);
  }

  .carrusel-btn:active {
    transform: translateY(-50%) scale(0.95);
  }

  /* Ocultar botones cuando no hay hover (opcional — comentá si no querés) */
  .carrusel-btn {
    opacity: 0.7;
    transition: opacity 0.25s, background 0.25s, transform 0.25s;
  }
  .carrusel-wrapper:hover .carrusel-btn {
    opacity: 1;
  }