/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Beige Color Palette */
  --primary: #c28340;
  --primary-dark: #b8956a;
  --primary-light: #e8d5b7;
  --accent: #8b7355;
  --background: #fefcf8;
  --card: #ffffff;
  --foreground: #2c2c2c;
  --muted-foreground: #6b6b6b;
  --border: #e8e0d6;
  --shadow: rgba(212, 165, 116, 0.1);

  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;

  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 6rem 0;

  /* Transitions */
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.hamburger {
  width: 20px;
  height: 2px;
  background: var(--foreground);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--foreground);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

/* Hero Section - Mobile First */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* Soporte para viewport units estables */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  margin-top: 3rem;
}

.hero-title-accent {
  color: var(--primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  margin: 1.5rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  padding: 0 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  align-items: center;
  width: 100%;
  max-width: 320px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 400px;
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  line-height: 1.2;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  min-height: 3rem;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.btn-icon {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-outline {
  background: var(--primary);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  
}

.btn-outline:hover {
  background: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(212, 165, 116, 0.1);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(212, 165, 116, 0.2);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.text-accent {
  color: var(--primary);
}

.section-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--muted-foreground);
  max-width: 64rem;
  margin: 0 auto;
}


/*GALERIA SECCION*/

/* GALERIA TITULO */
.templates-section {
  padding: var(--section-padding);
  background: var(--background);
}

/* Section Header - MANTENER TAL COMO ESTÁ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.text-accent {
  color: var(--primary);
}

.section-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--muted-foreground);
  max-width: 64rem;
  margin: 0 auto;
}

/* Contenedor principal */
.mm-invitaciones {
  text-align: center;
  
}

/* Título */
.mm-invitaciones__titulo {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 2rem;
}

/* Grid de categorías */
.mm-invitaciones__categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Cada tarjeta */
.mm-invitaciones__card {
  position: relative;
  display: block;
  width: 250px;
  height: 250px; /* altura fija */
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Imagen */
.mm-invitaciones__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.mm-invitaciones__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(0,0,0,0.5); /* semitransparente */
  text-align: center;
  transition: background 0.3s;
}

/* Label de la categoría */
.mm-invitaciones__label {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Hover */
.mm-invitaciones__card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.mm-invitaciones__card:hover .mm-invitaciones__overlay {
  background: rgba(0,0,0,0.65);
}

/* Responsive */
@media (max-width: 600px) {
  .mm-invitaciones__card {
    width: 45%;
    height: 200px;
  }
}

@media (max-width: 400px) {
  .mm-invitaciones__card {
    width: 90%;
    height: 180px;
  }
}

/*GALERIA SECCION*/


/* Benefits Section */
.benefits-section {
  padding: var(--section-padding);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

.benefit-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}

.benefit-card:hover {
  border-color: rgba(212, 165, 116, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}



/* Pricing Section */
.pricing-section {
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 1rem; /* Padding lateral para móviles */
}

.pricing-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.pricing-card:hover {
  border-color: rgba(212, 165, 116, 0.3);
  transform: translateY(-4px); /* Reducido para móviles */
  box-shadow: 0 8px 24px var(--shadow);
}

.pricing-card-featured {
  border: 2px solid var(--primary);
  /* Eliminamos el scale por defecto para móviles */
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pricing-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.pricing-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pricing-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-currency {
  color: var(--muted-foreground);
  margin-left: 0.25rem;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem; /* Alineación con texto */
}

.pricing-btn {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
}

/* Breakpoints para responsive */

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
  .pricing-section {
    padding: 2rem 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 400px;
  }
  
  .pricing-card:hover {
    transform: translateY(-2px);
  }
  
  .pricing-badge {
    font-size: 0.8rem;
    padding: 0.375rem 0.875rem;
  }
  
  .pricing-title {
    font-size: 1.125rem;
  }
  
  .pricing-subtitle {
    font-size: 0.875rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .pricing-feature {
    font-size: 0.875rem;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .pricing-section {
    padding: 1.5rem 0.75rem;
  }
  
  .pricing-grid {
    padding: 0;
    gap: 1rem;
  }
  
  .pricing-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
  
  .pricing-card-featured {
    transform: none; /* Sin scale en móviles pequeños */
  }
  
  .pricing-header {
    margin-bottom: 1.25rem;
  }
  
  .pricing-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
  }
  
  .pricing-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .pricing-title {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
  
  .pricing-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
  
  .price-currency {
    font-size: 0.875rem;
    margin-left: 0.25rem;
  }
  
  .pricing-features {
    margin-bottom: 1.5rem;
  }
  
  .pricing-feature {
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
  }
  
  .feature-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.625rem;
  }
  
  .pricing-btn {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }
}

/* Tablets grandes y pantallas medianas */
@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .pricing-card-featured {
    transform: scale(1.02); /* Scale reducido para tablets */
  }
}

/* Pantallas grandes */
@media (min-width: 1025px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .pricing-card {
    padding: 2.5rem;
  }
  
  .pricing-card-featured {
    transform: scale(1.05);
  }
  
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow);
  }
  
  .pricing-badge {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }
  
  .pricing-title {
    font-size: 1.375rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding);
  background: var(--card);
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(212, 165, 116, 0.05);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact Section */
/* Contact Section */
        .contact-section {
            padding: var(--section-padding);
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, var(--background) 50%, rgba(212, 165, 116, 0.02) 100%);
            min-height: 70vh;
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: rgba(212, 165, 116, 0.1);
            color: var(--primary);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(212, 165, 116, 0.2);
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: var(--foreground);
        }

        .text-accent {
            color: var(--primary);
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-card {
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: 1.5rem;
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), rgba(212, 165, 116, 0.6));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
            border-color: rgba(212, 165, 116, 0.3);
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .contact-card:hover .contact-icon {
            background: linear-gradient(135deg, var(--primary), rgba(212, 165, 116, 0.8));
            transform: scale(1.1);
        }

        .contact-card:hover .contact-icon svg {
            color: white;
        }

        .contact-icon svg {
            width: 2rem;
            height: 2rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .contact-title {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--foreground);
        }

        .contact-desc {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1rem;
        }

        .contact-action {
            margin-top: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            border: none;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: #c19660;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
        }

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

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
        }

        .btn-icon {
            width: 1.25rem;
            height: 1.25rem;
        }

        .social-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .social-title {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--foreground);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 3.5rem;
            height: 3.5rem;
            background: rgba(212, 165, 116, 0.1);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
            border: 1px solid rgba(212, 165, 116, 0.2);
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
        }

        .social-link svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-section {
                padding: 3rem 1rem;
            }

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

            .section-description {
                font-size: 1rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-card {
                padding: 2rem;
            }

            .contact-title {
                font-size: 1.25rem;
            }

            .btn {
                width: 100%;
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 2rem 0.75rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

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

            .contact-card {
                padding: 1.5rem;
            }

            .contact-icon {
                width: 3rem;
                height: 3rem;
                margin-bottom: 1rem;
            }

            .contact-icon svg {
                width: 1.5rem;
                height: 1.5rem;
            }

            .social-section {
                margin-top: 2rem;
                padding-top: 2rem;
            }
        }

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 5rem 0 2rem;
}

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

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: rgba(254, 252, 248, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 3rem;
  height: 3rem;
  background: rgba(254, 252, 248, 0.1);
  border-radius: 0.75rem;
  border: 1px solid rgba(254, 252, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--background);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: rgba(254, 252, 248, 0.2);
}

.footer-social-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(254, 252, 248, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--background);
}

.footer-btn {
  margin-bottom: 1rem;
  border-color: rgba(254, 252, 248, 0.3);
  color: var(--background);
}

.footer-btn:hover {
  background: var(--background);
  color: var(--foreground);
}

.footer-contact {
  color: rgba(254, 252, 248, 0.8);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(254, 252, 248, 0.2);
  align-items: center;
}

.footer-copyright {
  color: rgba(254, 252, 248, 0.8);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(254, 252, 248, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-link:hover {
  color: var(--background);
}

/*MEDIA QUERYS*/

/* Dispositivos pequeños (375px - 479px) */
@media (min-width: 375px) {
  .hero-badge {
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.375rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
}

/* Dispositivos móviles medianos (480px - 639px) */
@media (min-width: 480px) {
  .hero-content {
    padding: 2rem 1.25rem 1.25rem;
  }
  
  .hero-badge {
    font-size: 1rem;
    padding: 0.6rem 1.3rem;
  }
  
  .hero-title {
    font-size: 3.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
    max-width: 450px;
  }
  
  .hero-buttons {
    max-width: 400px;
  }
  
  .btn {
    max-width: 320px;
  }
}

/* Dispositivos móviles grandes y tablets pequeñas (640px - 767px) */
@media (min-width: 640px) {
  .hero-content {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
    max-width: 500px;
    margin: 1.75rem 0;
  }
  
  .hero-stats {
    max-width: 500px;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
  
  .nav-brand {
    font-size: 2rem;
  }
  
  .nav {
    padding: 1rem 0;
  }

  .hero-content {
    padding: 3rem 2rem 2rem;
    max-width: 800px;
  }
  
  .hero-badge {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.375rem;
    max-width: 600px;
    margin: 2rem 0;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 600px;
  }
  
  .btn {
    width: auto;
    min-width: 200px;
    max-width: none;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 700px;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero-content {
    max-width: 1000px;
    padding: 4rem 2rem 2rem;
  }
  
  .hero-title {
    font-size: 5.5rem;
  }
  
  .hero-subtitle {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.5rem;
    max-width: 700px;
  }
  
  .hero-stats {
    max-width: 800px;
    gap: 3rem;
    margin-top: 4rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Desktop grande (1280px+) */
@media (min-width: 1280px) {
  .hero-content {
    max-width: 1200px;
  }
  
  .hero-title {
    font-size: 6rem;
  }
  
  .hero-subtitle {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.5rem;
    max-width: 768px;
  }
}

/* Estilos para orientación landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    min-height: auto;
    padding: 1rem;
    justify-content: flex-start;
    padding-top: 6rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin: 1rem 0;
  }
  
  .hero-buttons {
    margin: 1rem 0;
    flex-direction: row;
    gap: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
}

/* Prevención de overflow horizontal */
.hero-content * {
  max-width: 100%;
  word-wrap: break-word;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*MEDIA QUERYS*/

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
