* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #111;
  color: #f1f1f1;
  font-family: 'Montserrat', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

h2 {
  color: #39ff14;
  text-shadow: 0 0 2px #39ff14;
}

h1, h2, .logo {
  font-family: 'Orbitron', sans-serif;
}

header {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.logo {
  height: 100px;
  margin-right: 1rem;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex-grow: 1;
}

nav a {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #e91e63;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-video {
  aspect-ratio: 4/3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.btn {
  background: #e91e63;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: #c2185b;
}

section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

ul {
  padding-left: 1.5rem;
}

blockquote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #e91e63;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #000;
  font-size: 0.9rem;
}

/* Servicios */
#servicios {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
}

#servicios h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #39ff14;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.servicio-card {
  background: #1f1f1f;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
  text-align: center;
}

.servicio-card:hover {
  transform: translateY(-5px);
}

.servicio-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.servicio-card h3 {
  margin: 0.5rem 0;
  color: #fff;
}

.servicio-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Productos */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.producto {
  background: #1c1c1c;
  padding: 1.2rem;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 255, 120, 0.3);
}

.producto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.producto h3 {
  margin: 0.5rem 0;
}

.producto p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

/* Swiper Carrusel */
.swiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
}

/* Redes Sociales */
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Íconos flotantes */
.icon-float {
  position: fixed;
  bottom: 20px;
  width: 40px;
  height: 40px;
  z-index: 3000;
  pointer-events: auto;
}

.icon-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.icon-float img:hover {
  transform: scale(1.1);
}

.icon-float.instagram { right: 120px; }
.icon-float.whatsapp { right: 70px; }
.icon-float.youtube { right: 20px; }

/* Swiper Video */
.video-swiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-swiper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Mapa */
.mapa-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.mapa-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Botón agendar */
.cta-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #39ff14;
  color: black;
  padding: 15px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 15px #39ff14;
  z-index: 1000;
  text-decoration: none;
}

p{
  text-align: center;
}

#productos {
  background: linear-gradient(135deg, #111, #1f1f1f);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .hero {
    height: auto;
  }

  .background-video {
    position: absolute;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }
   header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    justify-content: center;
    margin-top: 1rem;
  }
}
