body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000; 
  color: #fff; 
}

header {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from {
    opacity: 0; 
    transform: translateY(-20px); 
  }
  to {
    opacity: 1; 
    transform: translateY(0);
  }
}

nav {
  background: linear-gradient(135deg, #d1fc25, #ccc1d8);
  padding: 12px;
  text-align: center;
}

nav a {
  color: rgb(244, 239, 239); 
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #fff;
}

section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 2em;
}

.imagenes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.imagenes div {
  flex: 1 1 300px; 
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.imagenes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

footer {
  background: #000000 ;
  color: rgb(244, 239, 239);
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

footer p {
  margin: 5px 0;
  font-size: 0.95em;
}

@media (max-width: 768px) {
  header {
    min-height: 300px;
  }
  nav {
    display: flex;
    flex-direction: column;
  }
  nav a {
    margin: 10px 0;
  }
  section {
    padding: 30px 15px;
  }
  .imagenes div {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
  }
  .imagenes img {
    height: auto;
  }
}

@media (max-width: 480px) {
  header {
    min-height: 250px;
  }
  section h2 {
    font-size: 1.3em;
  }
}



/* --- AQUI ESTA EL ARREGLO --- */
.top-menu{
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 4px solid #d1fc25;
  position: sticky;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.logo-menu img{
  height: 40px;
}

.menu-links{
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu-links a{
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.btn-agendar{
  background:  #d0ff00;
  padding: 10px 20px !important;
  color: white !important;
  font-weight: bold;
}

.video-fondo{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.header-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

.header-content{
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.localizacao{
  display: flex;
  flex-wrap: wrap;
  background: #111;
  border-top: 4px solid #d1fc25;
}
.local-info{
  flex: 1 1 350px;
  padding: 40px;
  color: white;
}
.local-info h2{ color: #FFD700; margin-bottom: 15px; }
.btn-maps{
  display: inline-block;
  margin-top: 15px;
  background: #cad112;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
}
.local-mapa{
  flex: 2 1 500px;
  min-height: 450px;
}
.local-mapa iframe{
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}
/* BOTONES FLOTANTES */
.whatsapp {
  position: fixed;
  top: 50%;            
  right: 20px;           
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 1000;
}
.instagram {
  position: fixed;
  top: calc(50% + 75px);
  right: 20px;           
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 1000;
}
.whatsapp img, .instagram img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  background: white;
  object-fit: cover;
}
.whatsapp img:hover, .instagram img:hover {
  transform: scale(1.1);
}
.facebook {
  position: fixed;
  top: calc(50% + 150px);
  right: 20px;           
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.facebook img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  background: white;
  object-fit: cover;
}

.facebook img:hover {
  transform: scale(1.1);
}

/* SECCION SERVICIOS - CUADROS INDEPENDIENTES */
.servicos{
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

.servicos h2{
  color: #FFD700;
  margin-bottom: 40px;
  font-size: 2em;
}

.servicos-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-servico{
  background: #111;
  border: 1px solid  #000000;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
}

.card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.card-servico h3{
  color: #fff;
  font-size: 1.1em;
  margin: 0;
  text-transform: uppercase;
}

.card-servico .preco{
  color: #000000;
  font-weight: bold;
  font-size: 1.1em;
}

.card-servico p{
  color: #ccc;
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0;
}

/* ANIMACIÓN AL TOCAR / MOUSE */
.card-servico:hover{
  transform: translateY(-6px);
  border-color: #cad112;
  box-shadow: 0 10px 25px rgba(255,140,0,0.18);
  background: #1a1a1a;
}

.card-servico:active{
  transform: scale(0.97);
}
.depoimento{
  background: #000;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #222;
}
.depoimento h2{
  color: #FFD700;
  font-size: 2em;
  margin-bottom: 10px;
}
.depoimento p{
  color: #ccc;
  margin-bottom: 30px;
  font-size: 1.1em;
}
.video-container{
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid #cad112;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: #111;
}
.video-container video{
  width: 100%;
  height: 450px;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px){
  .video-container video{
    height: 280px;
  }
}
/* === NUESTROS SERVICIOS === */
.servicos{
  background: #0a0a0a;
  padding: 60px 20px;
  text-align: center;
}

.servicos h2{
  color: #FFD700;
  font-size: 2.2em;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Texto de presentación arriba */
.intro-servicos{
  max-width: 850px;
  margin: 0 auto 50px auto;
  padding: 30px;
  background: linear-gradient(145deg, #111, #1a1a1a);
  border-left: 4px solid #cad112;
  border-radius: 6px;
  text-align: left;
}

.intro-servicos h3{
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.intro-servicos p{
  color: #ddd;
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: 300;
}

.intro-servicos p strong{
  color: #fff;
  font-weight: 600;
}

/* Grilla de cuadros */
.servicos-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-servico{
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid #2a2a2a;
  border-top: 4px solid #cad112;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.card-servico:hover{
  transform: translateY(-5px);
  border-color: #cad112;
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.2);
}

.card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.card-top h3{
  color: #fff;
  font-size: 1.2em;
  margin: 0;
}

.preco{
  background: #cad112;
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: bold;
}

.card-servico p{
  color: #aaa;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

/* Celular */
@media (max-width: 768px){
  .intro-servicos{
    text-align: center;
    border-left: none;
    border-top: 4px solid hsl(59, 80%, 39%);
  }
}
@media (max-width: 768px){
  .top-menu{
    position: fixed !important;
    top: 0; left: 0; width: 100%;
    height: 65px !important;
    background: #000 !important;
    z-index: 9999;
    
    /* ESTO ES LA CLAVE PARA QUE QUEDE AL COSTADO */
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
  }

  .top-menu .logo-menu{
    display: flex !important;
    align-items: center !important;
  }

  .top-menu .logo-menu img{
    height: 45px !important;
    width: auto !important;
  }

  .btn-hamburger{
    display: block !important;
    color: #FFD700;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    margin-left: auto !important; /* lo empuja a la derecha */
  }

  /* Tu menu desplegable */
  .top-menu .menu-links{
    position: fixed !important;
    top: 65px; right: -100%;
    width: 80%; height: calc(100vh - 65px);
    background: #111 !important;
    flex-direction: column !important;
    padding: 30px !important;
    transition: 0.4s ease;
    border-left: 2px solid #cad112;
    display: flex !important;
  }

  #menu-check:checked ~ .menu-links{
    right: 0 !important;
  }
}