@charset "UTF-8";
/* Estilos globales - RB Todo Autos */
body {
  background-color: #c0a425;
  color: #ffffff;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}

.email-link {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.email-link:hover {
  color: #ffffff !important;
  border-bottom: 1px solid #ffffff;
}

.texto-dorado {
  color: #d4af37 !important;
}

.bg-verde-americano {
  background-color: #004225 !important;
}

/* Navegación dinámica Muebles Mavisur */
#mainNavbar {
  background-color: transparent;
  transition: all 0.4s ease;
}
#mainNavbar .navbar-brand, #mainNavbar .nav-link {
  color: #ffffff !important; /* Letras negras al inicio */
  font-weight: 600;
}
#mainNavbar.nav-scrolled {
  background-color: #004225 !important; /* Verde Americano al bajar */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
#mainNavbar.nav-scrolled .navbar-brand, #mainNavbar.nav-scrolled .nav-link {
  color: #D4AF37 !important; /* Letras cambian a Dorado */
}
#mainNavbar.nav-scrolled .btn-cta {
  background-color: #D4AF37 !important;
  color: #004225 !important; /* Botón dorado con letras verdes */
  border-color: #D4AF37 !important;
}

.btn-cta {
  transition: all 0.4s ease;
  border: 2px solid #000000; /* Borde negro al inicio */
  color: #000000;
  font-weight: bold;
}

/* Logo Circular */
.logo-recortado {
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #D4AF37; /* Borde dorado para el logo */
}

.logo-recortado img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero de Pantalla Completa - Estilo Racing */
.hero-fullscreen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Degradado sutil de negro a verde profundo */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 66, 37, 0.6)), #212529;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  margin-top: 0;
}
.hero-fullscreen h1 {
  color: #d4af37;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}
.hero-fullscreen .btn-outline-gold {
  border: 2px solid #d4af37;
  color: #d4af37;
  background: transparent;
}
.hero-fullscreen .btn-outline-gold:hover {
  background: #d4af37;
  color: #004225;
}

/* Galería y Proyectos */
#proyectos {
  background-color: #004225;
  padding: 80px 0;
}

.img-carousel-custom {
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  border: 2px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .img-carousel-custom {
    height: 350px;
  }
}
/* Masonry (Si decides usarlo en vez de carrusel) */
.galeria-masonry {
  column-count: 3;
  column-gap: 20px;
}

.item-galeria {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #d4af37;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.item-galeria:hover {
  transform: scale(1.02);
}
.item-galeria img {
  width: 100%;
  display: block;
}

/* Botón de Instagram flotante */
.instagram-overlay-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.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;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.btn-instagram-gradient:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.video-vertical-container {
  aspect-ratio: 9/16; /* Fuerza el formato vertical de celular */
  background: #000;
}
.video-vertical-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Evita franjas negras si el video es un poco distinto */
}

.seccion-premium {
  background-color: #1a1a1a; /* Fondo casi negro */
  color: #f8f9fa;
}
.seccion-premium .titulo-dorado {
  color: #d4af37; /* Dorado metálico */
  font-family: "Playfair Display", serif; /* Una fuente elegante opcional */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.seccion-premium .texto-destacado {
  border-left: 3px solid #d4af37;
  padding-left: 15px;
}

/* 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: 1050;
  display: flex !important;
}
.social-sidebar .sidebar-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 0 5px 5px 0;
  /* TRANSPARENCIA: 0.6 es un buen punto para que se note el fondo */
  opacity: 0.6 !important;
}
.social-sidebar .sidebar-icon:hover {
  width: 65px;
  padding-left: 10px;
  opacity: 1 !important;
}
.social-sidebar {
  /* Ajustes específicos para Celulares */
}
@media (max-width: 768px) {
  .social-sidebar .sidebar-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.3rem;
    opacity: 0.8 !important;
  }
}
.social-sidebar {
  /* Colores */
}
.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;
}

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