/* ============================================== */
/* === ESTILOS GENERALES / GLOBAL === */
/* ============================================== */
body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
  overflow-x: hidden; 
}

/* ============================================== */
/* === HEADER === */
/* ============================================== */
header {
  background: #ffb6c1;
  padding: 8px 10px;
  color: #fff;
  position: relative;
  top: 0;
  z-index: 1000;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

.header-content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: rgb(0, 0, 0);
  font-weight: 600;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* ============================================== */
/* === HERO (SLOGAN + IMAGEN EN MARCO) === */
/* ============================================== */
.hero-container {
  text-align: center;
  margin-top: 30px;
}

.hero-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
  text-decoration: none;
}

.image-frame {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 0px;
  border-radius: 5px;
  width: fit-content;
  margin: auto;
}

.image-frame img {
  width: 420px !important;
  height: 350px !important;
  border-radius: 5px !important;
  display: block !important;
}

@media (max-width: 450px) {
  .image-frame img {
    width: 100% !important;
    height: auto !important;
  }
}

/* ============================================== */
/* === NUEVA SECCIÓN: SERVICIOS Y PRECIOS (ESTILO BOUTIQUE NY) === */
/* ============================================== */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 10px;
  margin-top: 20px;
}

.price-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #ffb6c1; /* Rosa de tu header */
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  background: #fffafa;
  border: 2px solid #b80000; /* Rojo de tus botones */
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffb6c1;
  padding-bottom: 10px;
}

.card-header i {
  font-size: 1.5rem;
  color: #b80000;
}

.card-header h3 {
  margin: 0;
  text-decoration: none !important;
  font-size: 1.3rem;
  color: #333;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}

.price-list li span:last-child {
  font-weight: 700;
  color: #b80000;
  white-space: nowrap;
}

.price-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: auto;
  padding-top: 15px;
  font-style: italic;
  text-align: center;
}

.separator {
  height: 20px;
  border: none !important;
}

/* ============================================== */
/* === MÉTODOS DE PAGO === */
/* ============================================== */
.payment-methods {
  text-align: center;
  margin-top: 40px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 2.2rem;
  color: #444;
  margin-top: 10px;
}

.zelle-badge {
  background: #6d1ed1;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1rem;
}

.zelle-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* Aumentamos de 15px a 35px para dar más aire */
    margin-top: 35px; 
    /* Añadimos una línea divisoria sutil para separar visualmente */
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.zelle-email {
    font-size: 0.95rem;
    color: #6d1ed1; 
    font-weight: 600;
    word-break: break-all; 
    padding: 8px 18px;
    background: #f0ebf9;
    border-radius: 20px;
    margin-top: 5px;
}

/* ============================================== */
/* === SLIDER === */
/* ============================================== */
.slider {
  width: 100%;
  max-width: 900px;
  height: 500px; 
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.slider-track {
  display: flex;
  transition: transform 0.1s linear;
}

.slider-track img {
  width: 100%;
  height: 550px; 
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

/* ============================================== */
/* === SECCIONES === */
/* ============================================== */
section, .seccion {
  padding: 30px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  text-align: center;
  text-decoration: underline;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* ============================================== */
/* === REDES SOCIALES === */
/* ============================================== */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  justify-content: center;
  width: fit-content;
  margin: 6px auto 0;
}

.circle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.circle:hover {
  transform: scale(1.1);
  opacity: 1;
}

.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.face { background: #1877f2; }
.tiktok { background: #000; }

/* ============================================== */
/* === CONTACTO / FORMULARIO === */
/* ============================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full { grid-column: 1/-1; }

input, textarea, select {
  font-family: "Montserrat";
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: 20px auto 0;
  padding: 12px 20px;
  background: #b80000;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

button:hover {
  background: #8e0000;
  transform: translateY(-2px);
}

.mapa-card iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  display: block;
}

/* ============================================== */
/* === FOOTER === */
/* ============================================== */
footer {
  padding: 25px;
  background: #111;
  color: #ccc;
  text-align: center;
  margin-top: 40px;
}

/* ============================================== */
/* === RESPONSIVE === */
/* ============================================== */
@media (max-width: 768px) {
  .grid-2, .contact-form form {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================== */
/* === SPLASH SCREEN (ANIMACIÓN IOS) === */
/* ============================================== */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffb6c1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0s 0.5s;
}

.splash-hidden {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

#splash img {
  width: 300px;
  height: 300px;
  -webkit-animation: logoDynamic 2s ease-out forwards;
  animation: logoDynamic 2s ease-out forwards;
}

@-webkit-keyframes logoDynamic {
  0% { -webkit-transform: translateX(-200px) scale(0.5) rotate(0deg); opacity: 0; }
  100% { -webkit-transform: translateX(0) scale(1) rotate(360deg); opacity: 1; }
}

@keyframes logoDynamic {
  0% { transform: translateX(-200px) scale(0.5) rotate(0deg); opacity: 0; }
  100% { transform: translateX(0) scale(1) rotate(360deg); opacity: 1; }
}