/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}


/* ================= HEADER ================= */
.header {
  width: 100%;
  height: 100px;
  background: #001aff;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 90px;
}


/* MENU */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}

.menu a:hover {
  color: #b48a4a;
}

/* ================= HERO (FONDO) ================= */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background-color: #000;
}


.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  font-size: 3rem;
  text-align: center;
}

/* ================= VIDEO PRINCIPAL (SUPERPUESTO) ================= */
.video-principal {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.video-principal video {
  width: 100%;
  max-width: 720px;   /* ⬅ antes 600px */
  height: auto;
  border-radius: 18px;
  background-color: #000;
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.45);
}


/* ================= INVITACIÓN (TEXTO DEBAJO DEL VIDEO) ================= */
.invitacion {
  max-width: 1000px;
  margin: 80px auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, #adbcff, #ffffff);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  text-align: center;
}

.invitacion p {
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.5;
  color: #0b1cff;
}


/* ================= GALERÍA ================= */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding: 40px 20px;
}

.galeria img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* ================= CONTACTO ================= */
.contacto {
  text-align: center;
  padding: 20px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.contacto a {
  color: #b48a4a;
  text-decoration: none;
}

.contacto a:hover {
  text-decoration: underline;
}

/* ================= REDES ================= */
.redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.redes a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  background: #222;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.redes a:hover {
  background: #b48a4a;
}

.redes a i {
  font-size: 24px;
}

/* ================= LLÁMANOS ================= */
.llamanos {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-llamanos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: #28a745;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.btn-llamanos:hover {
  background-color: #218838;
}

.btn-llamanos i {
  font-size: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .header {
    height: auto;
    padding: 15px 0;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .logo img {
    max-height: 80px;
  }

  .menu {
    width: 100%;
    justify-content: center;
    gap: 25px;
  }

  .menu a {
    font-size: 18px;
  }
}


@media (max-width: 768px) {
  .hero {
    height: 45vh;
  }
}
@media (min-width: 1025px) {
  .hero {
    height: calc(100vh - 130px); /* ocupa pantalla menos header */
  }


}
@media (min-width: 1025px) {
  .hero video {
    transform: scale(1.18);
  }
}
/* ================= HERO FULL SIN FRANJAS ================= */
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* llena sin barras */
  object-position: center 20%; /* recorte leve y elegante */
  transform: scale(1.1);       /* zoom suave */
}
@media (min-width: 1025px) {
  .hero {
    height: calc(100vh - 100px); /* pantalla completa */
  }

  .hero video {
    transform: scale(1.18); /* un poco más para pantallas grandes */
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 1025px) {
  .header {
    height: 60px;
  }

  .logo img {
    max-height: 60px;
  }

  .menu a {
    font-size: 16px;
  }

  .header-container {
    padding: 0 15px;
  }
}


.invitacion p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: #1500ff;
  letter-spacing: 0.5px;
}

/* Animación sólida, sin movimiento */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


.servicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.servicio i {
  font-size: 32px;
  color: #1500ff;
}

.servicio span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

@media (min-width: 1025px) {
  .servicio i {
    font-size: 80px; /* tamaño en PC */
  }

  .servicio span {
    font-size: 16px; /* opcional: texto un poco más grande en PC */
  }
}

@media (max-width: 768px) {
  .galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 12px;
    padding: 20px;
  }

  .galeria img {
    width: 100%;
    height: 170px; /* tamaño más equilibrado */
    object-fit: cover;
    border-radius: 10px;
  }
}
.servicios {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;        /* clave: NO permitir salto de línea */
  overflow-x: auto;         /* si no caben, permite scroll */
  padding: 20px;
}
@media (max-width: 768px) {
  .servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    overflow: visible;
  }
}
@media (max-width: 768px) {
  .album img {
    height: 200px;
  }
}

.album {
  padding: 10px;
}

.album img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.album h2 {
  margin-top: 15px;
}

.galeria {
  background: #f8f8f8;
}
.llamanos {
  margin: 80px 0;
}
.btn-llamanos {
  font-size: 20px;
  padding: 18px 40px;
}

.menu {
  display: flex;
  gap: 15px;
}
.menu a {
  background: #ffffff;
  padding: 10px 22px;
  border-radius: 40px;
  color: #001aff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.menu a:hover {
  background: #b48a4a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}
.servicio p,
.servicio span {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1500ff;        /* mismo azul de la invitación */
  letter-spacing: 0.4px;
  text-align: center;
}
@media (min-width: 1025px) {
  .servicio p,
  .servicio span {
    font-size: 17px;
  }
}
.servicio {
  gap: 10px;
}
.redes a i {
  font-size: 32px;        /* tamaño grande */
  color: #1500ff;         /* mismo azul del sitio */
  transition: transform 0.3s ease, color 0.3s ease;
}
.redes a i:hover {
  transform: scale(1.2);
  color: #0b1cff;
}
@media (min-width: 1024px) {
  .redes a i {
    font-size: 38px;
  }
}
.redes {
  margin-top: -20px; /* sube visualmente */
}
/* ================= ESCALA VIDEO PRINCIPAL SIN MOVER HERO ================= */

/* Base (celular) */
.video-principal video,
.video-principal iframe {
  width: 100%;
  max-width: 600px;
  transform: scale(1);
  transform-origin: center center;
}

/* PC: solo agrandar visualmente */
@media (min-width: 1025px) {
  .video-principal video,
  .video-principal iframe {
    transform: scale(1.90); /* 👈 aquí crece */
  }
}
/* ================= AJUSTE POSICIÓN VIDEO (BAJAR SIN TOCAR HERO) ================= */

@media (min-width: 1025px) {
  .video-principal {
    margin-top: -50px; /* antes estaba más arriba */
  }
}

@media (max-width: 768px) {
  .video-principal {
    max-width: 100%;
  }

  .video-principal iframe {
    transform: scale(1.15);
  }
}
