/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
}
.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #e74c3c;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Hero + Slider */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 800px;
}
.slider {
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 10;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 5%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  text-align: center;
}
.slide-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover {
  background: #c0392b;
  transform: translateY(-3px);
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
}
.slider-dots button.active {
  background: white;
}

/* Videos - tarjetas sutiles */
.videos {
  padding: 4rem 0;
  background: #fafafa;
}
.videos h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #222;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-card p {
  padding: 1rem 1.2rem;
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  text-align: center;
}

/* Responsive: 2 columnas en tablet, 3 en desktop */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Galería */
.gallery {
  padding: 4rem 0;
}
.gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonios */
.testimonials {
  padding: 4rem 0;
  background: #f9f9f9;
}
.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.testimonial {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.stars {
  color: #f39c12;
  margin-bottom: 0.8rem;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
}
cite {
  font-weight: 600;
  color: #e74c3c;
}

/*Puente Genil*/
.city-focus {
  padding: 4rem 0;
  background: #f8f9fa;
}
.city-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .city-content {
    flex-direction: column;
  }
}
.city-text {
  flex: 1;
}
.city-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Contacto */
.contact {
  padding: 5rem 0;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  border: 2px solid #ddd;
  border-radius: 12px;
  transition: all 0.3s;
}
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.contact-btn.whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.contact-btn.whatsapp:hover {
  background: #128C7E;
}

/* Formulario de leads */
.lead-form-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.form-container h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}
.form-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

.form-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  background: #e74c3c;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
}
.form-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.form-privacy {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #888;
}
.form-privacy a {
  color: #e74c3c;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 0;
}

/* WhatsApp flotante (solo móvil) */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none;
}
.whatsapp-float svg {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: block;
  }
  .btn-whatsapp {
    display: none;
  }
  .slide-content h1 {
    font-size: 1.8rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}

/* CTA destacado para Puente Genil */
.cta-puente-genil {
  text-align: center;
  margin: 2.5rem 0;
  padding: 0 1rem;
}

.btn-puente-genil {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
  transition: all 0.3s ease;
  border: 2px solid #d35400;
  position: relative;
  overflow: hidden;
}

.btn-puente-genil:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #d35400, #a04000);
}

.btn-puente-genil::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s;
}

.btn-puente-genil:hover::after {
  left: 120%;
}

/* Versión móvil */
@media (max-width: 768px) {
  .btn-puente-genil {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 340px;
  }
}


/* Página específica: dj-bodas-puente-genil */
.city-detail {
  padding: 3rem 0;
  background: #f8f9fa;
}
.city-detail ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 1.5rem auto;
}
.city-detail li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}
.city-detail li::before {
  content: "📍";
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.pricing {
  padding: 4rem 0;
  text-align: center;
}
.price-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin: 1.5rem 0;
  position: relative;
}
.price-card.featured {
  border: 2px solid #e74c3c;
  transform: scale(1.03);
}
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #e74c3c;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e74c3c;
  margin: 1rem 0;
}
.price span {
  font-size: 1.5rem;
}

.faq {
  padding: 4rem 0;
  background: #f8f9fa;
}
.faq-item {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.faq-item h3 {
  color: #e74c3c;
  margin-bottom: 0.8rem;
}

/* Videos en tarjetas (igual que en home) */
.videos {
  padding: 4rem 0;
  background: #fafafa;
}
.videos h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #222;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}
.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-card p {
  padding: 1rem 1.2rem;
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  text-align: center;
}

/* Responsive: 2 columnas en tablet, 3 en desktop */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

