body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0d1b2a !important; /* 🔵 fondo uniforme azul */
  color: #ffffff;
}

/* NAV */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #0d1b2a;
  align-items: center;
}



/* ===== ESPACIADO LOGO ===== */
.logo {
  padding: 1px 80px; /* espacio arriba y abajo */
}

.logo img,
.logo-img {
  margin: center;
  display: logo;
}

.evento p {
  font-size: 14px;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100px;
  margin: 0 auto;
}




.evento {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
}




/* ===== LOGO RECTANGULAR (SIN DEFORMAR) ===== */
/* ===== LOGO RECTANGULAR FORZADO ===== */
.logo {
  height: 120px;       /* altura del header */
  overflow: hidden;    /* 👈 oculta lo que sobra */
  display: flex;
  align-items: center;
}

.logo img,
.logo-img {
  height: 200px;       /* más grande para recortar */
  width: auto;
  object-fit: cover;
}
  object-fit: contain;
  aspect-ratio: auto;
  display: block;
  transition: 0.4s ease;
}

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


/* ===== ANIMACIÓN LOGO PREMIUM ===== */
.logo-img {
  animation: logoFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1) translateY(-3px);
}



@keyframes logoFloat {
  0% {transform: translateY(0px);
  }
  50% {transform: translateY(-6px);
  }
  100% {transform: translateY(0px);
}
}
.logo-img:hover {
  transform: scale(1.1) translateY(-3px);
  filter: drop-shadow(0 10px 20px rgba(202,168,92,0.5));
}







/* ===== OFERTA PREMIUM ===== */
.oferta-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff3b3b, #ff7a00);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
  animation: pulseOffer 1.5s infinite;
  box-shadow: 0 10px 20px rgba(255, 60, 60, 0.3);
}

@keyframes pulseOffer {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.urgencia {
  color: #ffd166;
  font-weight: 500;
  margin-bottom: 20px;
}




/* ===== BOTONES HERO ALINEADOS ===== */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  height: auto;
}




/* NAV LINKS */
nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}

/* BOTÓN NAV MEJORADO */
.btn-nav {
  border: 2px solid #caa85c;
  padding: 12px 22px;
  color: #caa85c;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-nav:hover {
  background: #caa85c;
  color: #0d1b2a;
}

/* ===== HERO FIX PROFESIONAL ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

/* texto */
.hero-text {
  flex: 1;
  min-width: 280px;
  z-index: 2;
}

/* imagen */
.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.hero-img img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
}
.hero-text h1 {
  font-size: 60px;
}

.hero-text span {
  color: #caa85c;
}




/* BOTONES PRINCIPALES MEJORADOS (RESERVAR / ALQUILAR) */
.btn-primary {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  padding: 14px 24px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  color: #caa85c;
  margin-left: 10px;
  border: 1px solid #caa85c;
  padding: 12px 18px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #caa85c;
  color: #0d1b2a;
}

/* BENEFICIOS */
.beneficios {
  display: flex;
  justify-content: space-around;
  background: #1b263b;
  padding: 40px;
  text-align: center;
}

.beneficios i {
  font-size: 30px;
  color: #caa85c;
}

/* CATÁLOGO */
.catalogo {
  text-align: center;
  padding: 50px;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  color: black;
  border-radius: 10px;
  width: 250px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 300px;       /* 👈 mismo alto para todas */
  object-fit: cover;   /* 👈 recorta sin deformar */
  border-radius: 10px 10px 0 0;
}



.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top; /* 👈 enfoca la parte de arriba (rostro) */
  border-radius: 10px 10px 0 0;
}



.card {
  overflow: hidden;
}

.card img {
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.08);
}





/* CONTACTO */
.contacto {
  text-align: center;
  padding: 50px;
  background: #1b263b;
}

.contact-buttons a {
  display: inline-block;
  margin: 10px;
  background: #25D366;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
}

/* ===== WHATSAPP FLOAT PREMIUM ===== */
.wsp-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* botón principal */
.wsp-main {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.wsp-main:hover {
  transform: scale(1.1);
}

/* opciones */
.wsp-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* cada número */
.wsp-options a {
  background: #25D366;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
  text-align: center;
}

.wsp-options a:hover {
  transform: scale(1.05);
  background: #1ebe5d;
}
/* EVENTOS */
.eventos {
  text-align: center;
  padding: 50px;
}

.eventos-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.evento {
  background: #1b263b;
  padding: 20px;
  border-radius: 10px;
  width: 120px;
  transition: 0.3s;
}

.evento:hover {
  transform: translateY(-8px);
}

.evento i {
  font-size: 25px;
  color: #caa85c;
  margin-bottom: 10px;
}

/* PROCESO */
.proceso {
  text-align: center;
  padding: 60px 20px;
  background: #0d1b2a;
}

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

.paso {
  background: #1b263b;
  padding: 25px;
  border-radius: 12px;
  width: 220px;
  position: relative;
  transition: 0.3s;
}

.paso:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.numero {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #caa85c;
  color: black;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CTA */
.cta-final {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

.btn-cta {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  padding: 15px 25px;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-cta:hover {
  transform: scale(1.05);
}

/* GLOBAL */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ===== CONTENEDOR GLOBAL CENTRADO ===== */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* limita ancho de toda la web */
header,
.hero,
.beneficios,
.catalogo,
.eventos,
.proceso,
.contacto,
.cta-final,
footer {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* evita que todo quede pegado a los lados */
section {
  padding-left: 20px;
  padding-right: 20px;
}



/* animación suave global */
* {
  scroll-behavior: smooth;
}

/* hover elegante en cards */
.card {
  transition: 0.4s;
}

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

/* botones con pulso suave */
.btn-primary, .btn-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-cta::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.btn-primary:hover::after,
.btn-cta:hover::after {
  left: 0;
}



/* ===== CONTENEDOR GENERAL CENTRADO ===== */
.contacto-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

/* ===== TARJETAS CENTRADAS ===== */
.tarjeta {
  background: #1b263b;
  width: 450px;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

/* CENTRAR TODO EL TEXTO */
.tarjeta h3,
.tarjeta p {
  text-align: center;
}

/* ===== BOTONES WHATSAPP CENTRADOS ===== */
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* botones full centrados */
.contact-buttons a {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== MAPA CENTRADO ===== */
.tarjeta iframe {
  margin-top: 15px;
  border-radius: 12px;
  width: 100%;
}




/* ===== BOTÓN FLOTANTE FACEBOOK ===== */
.fb-float {
  width: 60px;
  height: 60px;
  background: #1877f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
  margin-bottom: 10px; /* separación del WhatsApp */
}

/* hover */
.fb-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(24,119,242,0.4);
}




/* ===== CONTACTO FINAL LIMPIO ===== */
.contacto-cards {
  padding: 60px 20px;
  text-align: center;
}

.contacto-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card-contacto {
  background: #1b263b;
  width: 450px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  text-align: left;
}

.card-contacto iframe {
  margin-top: 10px;
  border-radius: 12px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.contact-buttons a {
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 900px) {
  .card-contacto {
    width: 100%;
  }
}



/* ===== CENTRAR TARJETA CONTACTO ===== */
.contacto-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* tarjeta contacto más llamativa */
.tarjeta-contacto {
  text-align: center;
  background: linear-gradient(145deg, #1b263b, #0f1a2b);
  border: 1px solid rgba(202,168,92,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: scale(1.03);
}

/* subtítulo */
.contact-sub {
  color: #cfd8dc;
  font-size: 14px;
  margin-bottom: 15px;
}

/* botones centrados */
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* botón whatsapp más fuerte */
.wa-btn {
  width: 85%;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* hover llamativo */
.wa-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 15px 30px rgba(37,211,102,0.4);
}

/* badge inferior */
.contact-highlight {
  margin-top: 15px;
  display: inline-block;
  background: #caa85c;
  color: #0d1b2a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  animation: pulseOffer 1.5s infinite;
}

/* ya tienes esta animación, si no, dime */


/* ===== CENTRAR COMPLETO TARJETA CONTACTO ===== */
.tarjeta-contacto {
  text-align: center;
}

/* centra títulos y textos */
.tarjeta-contacto h3,
.tarjeta-contacto p,
.tarjeta-contacto div {
  text-align: center;
}

/* botones centrados correctamente */
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* botones ocupan centro real */
.wa-btn {
  width: 85%;
  justify-content: center;
}

.tarjeta-contacto * {
  text-align: center;
}



/* ===== CONTACTO TARJETAS PREMIUM ===== */
.contacto-tarjetas {
  padding: 60px 20px;
  text-align: center;
}

/* grid centrado */
.contacto-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* tarjeta */
.tarjeta {
  background: #1b263b;
  width: 450px;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
  text-align: left;
  transition: 0.3s;
}

/* hover elegante */
.tarjeta:hover {
  transform: translateY(-8px);
}

/* botones whatsapp */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.contact-buttons a {
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
}

.contact-buttons a:hover {
  transform: scale(1.05);
}

/* móvil */
@media (max-width: 900px) {
  .tarjeta {
    width: 100%;
  }
}




/* BOTÓN ALQUILAR EN TARJETAS */
.btn-card {
  display: block;
  margin: 12px auto 15px;
  background: #caa85c;
  color: #0d1b2a;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  width: 80%;
  transition: 0.3s;
}

.btn-card:hover {
  background: #e0c36a;
  transform: scale(1.05);
}




/* ===== RESPONSIVE MÓVIL PRO ===== */
@media (max-width: 768px) {

  /* NAVBAR */
  header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* LOGO */
  .logo-img {
    height: 120px !important;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-img img {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }

  /* BOTONES HERO */
  .hero-btns {
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
  }

  /* BENEFICIOS */
  .beneficios {
    flex-direction: column;
    gap: 20px;
  }

  /* CATÁLOGO */
  .grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 320px;
  }

  /* EVENTOS */
  .eventos-grid {
    flex-wrap: wrap;
    gap: 15px;
  }

  .evento {
    width: 40%;
  }

  /* PROCESO */
  .pasos {
    flex-direction: column;
    align-items: center;
  }

  /* CONTACTO TARJETAS */
  .contacto-grid {
    flex-direction: column;
    align-items: center;
  }

  .tarjeta {
    width: 95%;
  }

  /* BOTONES WHATSAPP */
  .wa-btn {
    width: 100%;
  }

  /* MAPA */
  iframe {
    height: 250px;
  }

  /* FLOAT BOTONES */
  .wsp-container {
    right: 15px;
    bottom: 15px;
  }

  .wsp-main,
  .fb-float {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}



@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-img {
    order: -1; /* 👈 IMAGEN ARRIBA */
  }

  .hero-img img {
    max-width: 300px;
    margin-bottom: 15px;
  }
}

footer {
  text-align: center;
  padding: 25px 10px;
  color: #cfd8dc;
  font-size: 14px;
}
footer p {
  letter-spacing: 1px;
}


/* ===== EVITAR DESBORDES ===== */
html, body {
  overflow-x: hidden;
}



/* TODO dentro del ancho de pantalla */
* {
  box-sizing: border-box;
}



.contacto-texto {
  text-align: center;
  color: #cfd8dc;
  margin-bottom: 15px;
  line-height: 1.5;
}



/* ===== HORARIO PREMIUM ===== */
.horario-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #0d1b2a;
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}

/* icono */
.horario-box i {
  font-size: 22px;
  color: #caa85c;
}

/* título */
.titulo-horario {
  font-weight: bold;
  color: #caa85c;
  margin-bottom: 3px;
}

/* texto */
.horario-box p {
  margin: 0;
  font-size: 14px;
  color: #cfd8dc;
  text-align: left;
}

/* hover elegante */
.horario-box:hover {
  transform: translateY(-3px);
}




.horario-box {
  border: 1px solid rgba(202,168,92,0.2);
}


.tallas-info {
  color: #caa85c;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 16px;
}


/* ===== ANIMACIÓN HERO IMAGE ===== */
.hero-img img {
  animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}


.vestidos .card img {
  height: 320px;
  object-fit: cover;
}
