@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  color: #222;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #000000, #222222);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #CA3335;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #CA3335;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* SUBMENU */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  padding: 8px 20px;
}

.submenu li a {
  color: #fff;
  display: block;
}


/* SECTION CONTACTO */
.section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.section p {
  font-size: 18px;
  color: #444;
}

.hero {
  height: 100vh;
  background-position: center;
  position: relative;
  color: white;
}

.section {
  padding: 100px 40px;
  text-align: center;
  background-color: #f5f5f5;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Helvetica', sans-serif;
  text-align: center;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
}

.about-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  flex-wrap: wrap;
}

.about-col {
  flex: 1;
  min-width: 300px;
}

.about-col p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 18px;
}

.icons img {
  width: 100px; /* Tamaño uniforme */
  height: 100px;
  object-fit: contain; /* Asegura que no se deformen */
}


.galeria-moderna-carrusel {
  padding: 4rem 2rem;
  background-color: #070707;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 2rem;
  padding: 2rem 0;
}

.imagen-galeria {
  min-width: 300px;
  height: 400px;
  flex-shrink: 0;
  background: #090909;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagen-galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.imagen-galeria:hover img {
  transform: scale(1.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  color:black;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: black;
}

.carousel-btn.prev {
  left: 0.5rem;
}

.carousel-btn.next {
  right: 0.5rem;
}


.gallery {
	
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: calc(33.333% - 12px); /* 3 imágenes por fila con espacio */
  height: 50%;
  border-radius: 10px;
  transition: transform 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive: 2 por fila en tablets */
@media (max-width: 768px) {
  .gallery img {
    width: calc(50% - 10px);
  }
}

/* Responsive: 1 por fila en móviles */
@media (max-width: 480px) {
  .gallery img {
    width: 100%;
  }
}




/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  margin: auto;
  display: block;
}

.nav {
	background:WHITE;
  color: black;
  font-size: 2em;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  user-select: none;
}

.prev { left: 30px; }
.next { right: 30px; }

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  z-index: 1001;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #000000, #222222);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #FF3339;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #FF3339;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* SUBMENU */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
 
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  padding: 8px 20px;
}

.submenu li a {
  color: #fff;
  display: block;
}

/* Estilos para móvil */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .submenu {
    position: relative;
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }
}
.btn-volver {
  display: inline-block;
  margin: 30px;
  padding: 12px 24px;
  background-color: #CA3335;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-volver:hover {
  background-color: #a8282b;
}
h2 {
  text-align: center;
  margin: 10px 0 10px;
  font-size: 36px;
  font-weight: 800;
  color: #222;
}
/* BOTÓN FLOTANTE WHATSAPP PARA CELULAR */
.whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: none; /* oculto por defecto */
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 145px;
  height: 145px;
}

/* SOLO mostrar en celulares */
@media (max-width: 768px) {
  .whatsapp-float-btn {
    display: flex;
  }
}


