@charset "UTF-8";
body {
  background-color: #ffffff;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: #e9b31f;
}

/* Reemplazamos el dorado por el rojo de la marca */
.texto-rojo-racing {
  color: #d32f2f;
}

.bg-dark-industrial {
  background-color: #121212 !important;
}

.email-link {
  transition: all 0.3s ease;
  color: #d32f2f;
  text-decoration: none;
}
.email-link:hover {
  color: #8f3120 !important;
  text-decoration: underline;
}

/* Estilo para tarjetas de servicios (mecánica, pintura, etc) */
.card-taller {
  border: none;
  border-radius: 0;
  transition: transform 0.3s ease;
  border-bottom: 4px solid #3e2723;
}
.card-taller:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid #d32f2f;
}

/* Navegación dinámica rbtodoautos - Estilo Racing */
#mainNavbar {
  background-color: #000000 !important;
  transition: all 0.4s ease;
  position: relative;
  /* Bordes gruesos con degradado: Café oscuro (izq) a Rojo (der) */
  border-top: 10px solid;
  border-bottom: 15px solid;
  border-image: linear-gradient(to right, #3e2723, #fa0909) 1;
}
#mainNavbar .brand-text {
  line-height: 1;
  display: flex;
  align-items: center;
  /* Inclinación general para todo el bloque de texto */
  transform: skewX(-10deg);
}
#mainNavbar {
  /* Estilo para las letras grandes RB */
}
#mainNavbar .brand-r, #mainNavbar .brand-b {
  font-size: 2.5rem; /* Un poco más grandes para compensar la inclinación */
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.8;
  font-style: italic; /* Cursiva deportiva */
}
#mainNavbar .brand-r {
  color: #ffffff; /* La R en blanco */
}
#mainNavbar .brand-b {
  color: #8f3120; /* Solo la B en café rojizo */
}
#mainNavbar {
  /* "Todo Autos" en la mitad superior */
}
#mainNavbar .brand-subtext {
  font-size: 1.1rem;
  align-self: flex-start;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  margin-top: 2px;
  margin-left: 8px;
  /* Un pequeño ajuste de sombra para que resalte más */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#mainNavbar .nav-link {
  color: white !important;
  text-transform: uppercase;
  font-weight: 600;
  font-style: italic; /* Links también inclinados para mantener coherencia */
}
#mainNavbar.nav-scrolled {
  background-color: #000000 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.btn-cta {
  transition: all 0.4s ease;
  background-color: transparent;
  border: 2px solid white;
  color: white !important;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
  padding: 8px 20px;
  transform: skewX(-10deg); /* Botón también inclinado */
}
.btn-cta:hover {
  background-color: #d32f2f !important;
  border-color: #d32f2f !important;
  transform: skewX(-10deg) scale(1.05);
}

/* Logo Rectangular corregido sin bordes extraños */
.logo-recortado {
  width: 200px; /* Ajusta el ancho a tu gusto */
  height: auto; /* ALTURA FIJA: Es vital para que recorte arriba y abajo */
  overflow: hidden; /* Esconde lo que sobra de la imagen */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Eliminamos el box-shadow que creaba el borde rojo/café */
  box-shadow: none;
  /* Si el navbar tiene skew, compensamos aquí para que la foto no se vea inclinada */
  transform: skewX(10deg);
}

.logo-recortado img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Hace el zoom necesario para llenar el rectángulo */
  object-position: center; /* Asegura que el centro de tu logo sea lo visible */
}

.navbar-toggler {
  border: none;
}
.navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
}

.hero-fullscreen {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-color: #000;
}
.hero-fullscreen .z-index-10 {
  z-index: 10;
}
.hero-fullscreen .hero-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 5s ease-in-out;
}
.hero-fullscreen .carousel-item.active .hero-bg-img {
  transform: scale(1.1);
}
.hero-fullscreen .content-glass {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  max-width: 900px;
}

.btn-outline-light {
  border: 2px solid white;
  font-weight: bold;
  font-style: italic;
}
.btn-outline-light:hover {
  background: white;
  color: #000 !important;
}

/* Galería y Proyectos */
.img-carousel-custom {
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .img-carousel-custom {
    height: 300px;
  }
}
.galeria-masonry {
  column-count: 3;
  column-gap: 15px;
}

.item-galeria {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.item-galeria img {
  width: 100%;
  border-radius: 8px;
}

/* Posicionamiento del botón sobre el carrusel */
.instagram-overlay-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; /* Asegura que esté por encima de las imágenes */
}

/* El degradado oficial de Instagram */
.btn-instagram-gradient {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: white !important;
  font-weight: bold;
  border: none;
  border-radius: 50px; /* Estilo píldora */
  transition: transform 0.3s ease;
}
.btn-instagram-gradient:hover {
  transform: scale(1.05); /* Efecto de crecimiento al pasar el mouse */
  color: white;
}

/* Clase inicial: invisible y un poco abajo */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Clase activa: visible y en su posición original */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
@media (max-width: 768px) {
  .social-sidebar .sidebar-icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}
.social-sidebar .sidebar-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  border-radius: 0 5px 5px 0;
  /* TRANSPARENCIA INICIAL */
  opacity: 0.7;
  backdrop-filter: blur(2px);
}
.social-sidebar .sidebar-icon:hover {
  width: 65px;
  padding-left: 10px;
  opacity: 1;
  transform: scale(1.05);
}
.social-sidebar {
  /* Colores de marca con un toque de oscuridad para que el blanco resalte mejor */
}
.social-sidebar .instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-sidebar .facebook {
  background: #1877F2;
}
.social-sidebar .whatsapp {
  background: #25D366;
}
.social-sidebar .youtube {
  background: #FF0000;
}

/* Footer RB Todo Autos - Actualizado */
.footer-taller {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
  border-top: 10px solid;
  border-image: linear-gradient(to right, #3e2723, #d32f2f) 1;
}
.footer-taller .footer-brand {
  transform: skewX(-10deg);
}
.footer-taller .footer-brand .rb-text {
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
}
.footer-taller .footer-brand .rb-text .r {
  color: #ffffff;
}
.footer-taller .footer-brand .rb-text .b {
  color: #8f3120;
}
.footer-taller {
  /* Mejora de visibilidad de la dirección */
}
.footer-taller .info-contacto {
  color: #ffffff;
}
.footer-taller .info-contacto i {
  color: #ffc107;
  margin-right: 10px;
}
.footer-taller .info-contacto .direccion-resaltada {
  color: #ffc107;
  font-weight: 600;
  display: block;
  margin-top: 5px;
}
.footer-taller {
  /* Contenedor del Mapa */
}
.footer-taller .map-container {
  filter: grayscale(0.5) invert(0.9) contrast(1.2);
  border: 2px solid #3e2723;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  margin-top: 15px;
  transition: filter 0.3s ease;
}
.footer-taller .map-container:hover {
  filter: grayscale(0);
}
.footer-taller .footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}
.footer-taller .footer-link:hover {
  color: #ffc107;
  padding-left: 5px;
}
.footer-taller .social-icon {
  width: 40px;
  height: 40px;
  background: #d32f2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: white;
  margin-right: 10px;
}
.footer-taller .social-icon:hover {
  background: #ffc107;
  color: #000;
}

/*# sourceMappingURL=main.css.map */