/* RESET & VARIABLES */
:root {
  --color-primary: #A2D9C7; /* Mint */
  --color-secondary: #F5E098; /* Yellow Pastel */
  --color-text: #4A5568;     /* Dark Gray */
  --color-white: #FFFFFF;
  --color-light: #FDF8F2;    /* Beige Light */
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--color-light);
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: var(--color-text);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #666;
}

.btn {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: none;
}

.btn-primary:hover {
  background-color: #8AC4B5;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text);
}

.btn-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  font-size: 0.95rem;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.95);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo svg {
  margin-right: 8px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

nav a:hover {
  color: var(--color-primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
}

/* ========== HERO ========== */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(245, 224, 152, 0.3), rgba(162, 217, 199, 0.3)), url('https://via.placeholder.com/1920x1080?text=Evento+Elegante') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 70px;
  color: #2D3748; /* Gris oscuro profundo */
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #2D3748;
  text-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #2D3748;
  text-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary {
  background-color: #A2D9C7;
  color: #2D3748;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: #8AC4B5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background-color: transparent;
  color: #2D3748;
  border: 2px solid #2D3748;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: #2D3748;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.service-card svg {
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 15px 0;
  color: var(--color-primary);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 20px;
  filter: none; /* Si quieres mantener el color original del PNG */
}

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.featured {
  border: 2px solid var(--color-secondary);
  transform: scale(1.03);
}

.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: var(--color-text);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.package-card h3 {
  margin: 15px 0;
  color: var(--color-text);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 15px 0;
  color: var(--color-primary);
}

.package-card ul {
  text-align: left;
  margin: 20px 0;
  padding-left: 20px;
}

.package-card li {
  margin: 8px 0;
}

/* PORTFOLIO */
.filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 2px solid #ddd;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--color-primary);
  color: var(--color-text);
  border-color: var(--color-primary);
}

/* ========== PORTAFOLIO ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.portfolio-item {
  aspect-ratio: 3 / 4; /* Proporción 3:4 */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Llena el espacio sin deformar */
  display: block;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: var(--transition);
  text-align: center;
  font-size: 0.9rem;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

/* TESTIMONIALS */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-light);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-nav button {
  background: var(--color-primary);
  color: var(--color-text);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background: #8AC4B5;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-light);
}

.blog-post img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-content time {
  color: #888;
  font-size: 0.9rem;
}

.post-content h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  color: var(--color-text);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background: white;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-primary);
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
}

.contact-info {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--color-text);
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* FOOTER */
footer {
  background: var(--color-text);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col a:hover {
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--color-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* LIGHTBOX */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--color-primary);
  border-radius: 8px;
}

#lightboxCaption {
  margin: 20px auto;
  text-align: center;
  color: white;
  max-width: 80%;
  font-size: 1.2rem;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons, .filters, .testimonial-nav {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a, .filters button {
    width: 100%;
    max-width: 300px;
  }
}
/* ========== BOTÓN WHATSAPP FLOTANTE ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: var(--transition);
  animation: floatIn 0.6s ease-out;
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1); /* Blanco */
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@keyframes floatIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive: en móvil, más arriba para no tapar botones del sistema */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
  }
}
/* ========== SECCIÓN REDES SOCIALES ========== */
.social-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: 180px;
  text-decoration: none;
  color: var(--color-text);
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.social-card i {
  font-size: 48px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.social-card:hover i {
  transform: scale(1.1);
}

.social-card h3 {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
  color: var(--color-primary);
}

/* Instagram */
.social-card:nth-child(1) i {
  color: #E1306C;
}

/* Facebook */
.social-card:nth-child(2) i {
  color: #1877F2;
}
.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #25D366;
  color: white !important;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  margin-top: 0.8rem;
  width: 100%; /* Opcional: si quieres que ocupe todo el ancho */
  max-width: 300px; /* Evita que sea muy largo */
}

.btn-whatsapp-large:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large i {
  font-size: 1.4rem;
}
* Centrar todo en la sección */
.text-center {
  text-align: center;
}

/* Título principal más grande */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
}

/* Subtítulo más grande y claro */
.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Botón de WhatsApp más grande y llamativo */
.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #25D366;
  color: white !important;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  margin-top: 0.8rem;
  width: 100%;
  max-width: 300px;
}

.btn-whatsapp-large:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large i {
  font-size: 1.4rem;
}