/* ===== VARIABLES CSS ===== */
:root {
  /* Colores principales */
  --primary-color: #e91e63;
  --secondary-color: #f8bbd9;
  --accent-color: #ff6b9d;
  --gold-color: #ffd700;
  --rose-gold: #e8b4b8;
  
  /* Colores neutros */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-color) 0%, var(--rose-gold) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(233, 30, 99, 0.9) 0%, rgba(255, 107, 157, 0.8) 100%);
  
  /* Tipografía */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;
  
  /* Espaciado */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* Border radius */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  
  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
}

/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

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

/* ===== NAVEGACIÓN ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--spacing-md) 0;
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.logo-container {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 0;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-xl);
}

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-secondary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8bbd9 url('assets/images/jessy/backgroundJessy.jpg') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.6) 0%, rgba(236, 72, 153, 0.5) 50%, rgba(251, 113, 133, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  margin-bottom: var(--spacing-xxl);
  position: relative;
  z-index: 3;
}

.save-the-date {
  text-align: center;
}

.date-number {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-md);
  background: rgba(233, 30, 99, 0.8);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 30, 99, 0.3);
  text-shadow: none;
  letter-spacing: 2px;
}

.save-text {
  font-family: var(--font-script);
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.quinceañera-name {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 900;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.event-subtitle {
  font-family: var(--font-script);
  font-size: 2rem;
  color: white;
  margin-bottom: var(--spacing-lg);
}

.location-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--dark-gray);
}

.location-icon {
  font-size: 1.2rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-photo {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--white);
  position: relative;
  z-index: 2;
}

.quinceañera-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  z-index: 1;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 15%;
  animation-delay: 0.5s;
}

.element-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 1s;
}

.element-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===== COUNTDOWN ===== */
.countdown-container {
  text-align: center;
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 3;
}

.countdown-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.countdown {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  gap: var(--spacing-lg);
  align-items: center;
}

.time-unit {
  text-align: center;
  position: relative;
}

.time-unit:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: calc(var(--spacing-lg) / -2);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.time-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  min-width: 40px;
}

.time-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: capitalize;
  letter-spacing: 0.3px;
  margin-top: 2px;
  font-weight: 500;
}

/* ===== GALERÍA ===== */
.gallery {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.image-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
}

.image-placeholder p {
  font-size: 1.5rem;
  font-weight: 600;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-lg);
  pointer-events: none;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  pointer-events: all;
}

.carousel-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* ===== INFORMACIÓN DEL EVENTO ===== */
.event-info {
  padding: var(--spacing-xxl) 0;
  background: var(--light-gray);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

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

.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-lg);
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
}

.info-icon svg {
  width: 28px;
  height: 28px;
}

.info-card h3 {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.info-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.info-detail {
  font-size: 0.5rem;
  color: var(--gray);
}

/* ===== UBICACIÓN ===== */
.location {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.location-details h3 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-lg);
}

.address {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.address-icon {
  margin-right: var(--spacing-sm);
  color: var(--primary-color);
}

.location-features {
  margin-bottom: var(--spacing-xl);
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.location-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== INVITACIÓN ===== */
.invitation {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
  overflow-x: hidden;
}

.invitation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.invitation-text h2 {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-lg);
}

.invitation-text > p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: var(--spacing-xl);
}

.app-features {
  margin-bottom: var(--spacing-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.feature-item .feature-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.download-section {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.download-section h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.download-section > p {
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
}

.download-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.store-badge {
  display: block;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: scale(1.05);
}

.store-badge {
  display: block;
  transition: transform 0.3s ease;
  width: 180px;
  height: 60px;
}

.store-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-badge.app-store img {
  height: 60px;
}

.store-badge.google-play img {
  height: 65px;
  margin-top: -2.5px;
}

.access-code-info {
  background: rgba(233, 30, 99, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--primary-color);
}

.code-text {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 500;
  color: var(--dark-gray);
  margin: 0;
}

.code-icon {
  color: var(--primary-color);
}

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
  width: 300px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.app-preview {
  padding: var(--spacing-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.app-logo {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.app-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-header h3 {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin: 0;
}

.invitation-card {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  color: var(--white);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.invitation-header {
  margin-bottom: var(--spacing-lg);
}

.event-date {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.event-title {
  font-family: var(--font-script);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.event-name {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
}

.invitation-details {
  margin-bottom: var(--spacing-lg);
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
}

.detail-icon {
  font-size: 1rem;
}

.qr-code {
  display: flex;
  justify-content: center;
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
}

.qr-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: var(--spacing-xs);
}

.qr-square {
  width: 8px;
  height: 8px;
  background: var(--dark-gray);
  border-radius: 1px;
}

.qr-placeholder p {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0;
}

/* ===== CLICKABLE INFO CARDS ===== */
.clickable-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.info-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.info-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.click-indicator {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    opacity: 0;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clickable-card:hover .click-indicator {
    opacity: 1;
}

.click-indicator svg {
    width: 12px;
    height: 12px;
    color: var(--white);
}

/* ===== PARENTS SECTION ===== */
.parents-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.parents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(233, 30, 99, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.parents-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-container {
    margin-bottom: var(--spacing-xxl);
}

.quote-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.quote-mark {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.4;
    font-weight: 700;
    line-height: 1;
}

.quote-mark-left {
    margin-right: var(--spacing-sm);
    transform: translateY(-10px);
}

.quote-mark-right {
    margin-left: var(--spacing-sm);
    transform: translateY(10px);
}

.celebration-quote {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    margin: 0;
    font-weight: 400;
    max-width: 600px;
}

.quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.decorative-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.3;
}

.flower-ornament {
    opacity: 0.6;
    animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(2deg);
    }
}

.parents-info {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(233, 30, 99, 0.08);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.parents-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.parents-header {
    margin-bottom: var(--spacing-xl);
}

.parents-title {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    background: var(--white);
}

.family-sections {
    display: flex;
    justify-content: center;
}

.family-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(233, 30, 99, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.family-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63 0%, #ffd700 50%, #e91e63 100%);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.family-content {
    text-align: center;
    position: relative;
}

.animated-heart {
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.family-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.family-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease-out;
}

.family-section:nth-child(3) {
    animation-delay: 0.3s;
}

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

.family-title {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.family-names {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
}

.family-name {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.4;
}

.family-separator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-sm) 0;
    animation: pulse 2s ease-in-out infinite;
}

.separator-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.4;
}

.separator-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.parent-label {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.parent-name-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--dark-gray);
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .celebration-quote {
        font-size: 1.3rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .parents-title {
        font-size: 2.2rem;
    }
    
    .family-name {
        font-size: 1.1rem;
    }
    
    .parents-info {
        padding: var(--spacing-xl);
    }
    
    .family-card {
        padding: var(--spacing-lg);
    }
    
    .family-title {
        font-size: 1.6rem;
    }
    
    .separator-line {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .celebration-quote {
        font-size: 1.1rem;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .family-card {
        padding: var(--spacing-md);
    }
    
    .family-name {
        font-size: 1rem;
    }
    
    .family-title {
        font-size: 1.4rem;
    }
    
    .animated-heart {
        transform: scale(0.9);
    }
    
    .separator-line {
        width: 25px;
    }
}

/* ===== DRESS CODE & GIFTS SECTION ===== */
.dresscode-gifts {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #fef7f7 0%, #f8f0f0 100%);
    position: relative;
}

.dresscode-gifts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e91e63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>');
    pointer-events: none;
}

.dresscode-gifts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Dress Code Section */
.dresscode-section {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h3 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.title-decoration {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.dresscode-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.dresscode-main {
    text-align: center;
}

.dresscode-type {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.dresscode-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.dresscode-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.reserved-colors h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.color-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}

.color-circle.rose-gold {
    background: linear-gradient(135deg, #D47F8B 0%, #c96d7a 100%);
    border: 2px solid #b85d6a;
}

.color-circle.dorado {
    background: linear-gradient(135deg, #CDB26D 0%, #b8a05c 100%);
    border: 2px solid #a3904b;
}

.color-circle.ivory {
    background: linear-gradient(135deg, #F2EDE0 0%, #e8e3d6 100%);
    border: 2px solid #ded9cc;
}

.color-item span {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-align: center;
}

.dresscode-illustration {
    display: flex;
    justify-content: center;
    padding: var(--spacing-lg) 0;
}

.outfit-examples {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.outfit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.outfit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    background: rgba(233, 30, 99, 0.1);
}

.outfit-icon svg {
    color: var(--primary-color);
}

.outfit-item span {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-align: center;
}

/* Gifts Section */
.gifts-section {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.gifts-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.gifts-intro p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    font-style: italic;
}

.gifts-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.gift-option {
    background: linear-gradient(135deg, #fef7f7 0%, #f8f0f0 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.gift-option:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.liverpool-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.liverpool-link:hover {
    text-decoration: none;
    color: inherit;
}

.click-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--border-radius-sm);
    opacity: 0;
    transition: all 0.3s ease;
}

.gift-option:hover .click-hint {
    opacity: 1;
}

.hint-text {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.click-hint svg {
    color: var(--primary-color);
}

.gift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

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

.liverpool-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.liverpool-l {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.liverpool-logo span {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.gift-code {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-xs);
}

.code-label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.code-value {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    background: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--primary-color);
}

.gift-option.envelope .gift-header h4 {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.envelope-icon {
    color: var(--primary-color);
}

.gift-description {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dresscode-gifts-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .section-title h3 {
        font-size: 2rem;
    }
    
    .color-palette {
        gap: var(--spacing-md);
    }
    
    .outfit-examples {
        gap: var(--spacing-lg);
    }
    
    .gift-header {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        text-align: center;
    }
    
    .gift-code {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .dresscode-section,
    .gifts-section {
        padding: var(--spacing-lg);
    }
    
    .color-palette {
        flex-direction: column;
        align-items: center;
    }
    
    .outfit-examples {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.footer-column h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: var(--spacing-sm);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.event-credit {
  margin-top: var(--spacing-sm);
  font-weight: 600;
  color: var(--secondary-color);
}

/* ===== RESPONSIVE DESIGN ===== */

/* iPad y tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-background {
    background-attachment: scroll;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .main-photo {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .invitation-content {
    gap: var(--spacing-xl);
  }
  
  .invitation-text h2 {
    font-size: 2.75rem;
  }
  
  .phone-mockup {
    width: 280px;
  }
  
  .phone-image {
    max-width: 280px;
  }
  
  .download-section {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .nav-container {
    padding: 0 var(--spacing-md);
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-background {
    background-attachment: scroll;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .date-number {
    font-size: 3rem;
  }
  
  .save-text {
    font-size: 2.5rem;
  }
  
  .quinceañera-name {
    font-size: 3.5rem;
  }
  
  .main-photo {
    width: 280px;
    height: 280px;
  }
  
  .countdown {
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    flex-wrap: nowrap;
  }
  
  .time-unit:not(:last-child)::after {
    font-size: 1.2rem;
  }
  
  .time-number {
    font-size: 1.5rem;
    min-width: 35px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .carousel-slide {
    height: 300px;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .invitation-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .invitation-text h2 {
    font-size: 2.5rem;
  }
  
  .invitation-text > p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
  }
  
  .app-features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto var(--spacing-xl) auto;
  }
  
  .download-section {
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md);
  }
  
  .download-section h3 {
    font-size: 1.75rem;
  }
  
  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  
  .store-badge {
    width: 150px;
    height: 50px;
  }
  
  .store-badge.app-store img {
    height: 50px;
  }
  
  .store-badge.google-play img {
    height: 54px;
    margin-top: -2px;
  }
  
  .phone-mockup {
    width: 250px;
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  
  .phone-image {
    max-width: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .date-number {
    font-size: 1.75rem;
    padding: var(--spacing-xs) var(--spacing-md);
    letter-spacing: 1px;
  }
  
  .save-text {
    font-size: 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .info-card {
    padding: var(--spacing-lg);
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
  }
  
  .info-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .quinceañera-name {
    font-size: 3rem;
  }
  
  .main-photo {
    width: 250px;
    height: 250px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .invitation-text h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .invitation-text > p {
    font-size: 1rem;
  }
  
  .app-features {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }
  
  .feature-item {
    font-size: 0.9rem;
    gap: var(--spacing-sm);
  }
  
  .download-section {
    padding: var(--spacing-md);
    margin: 0 var(--spacing-sm);
  }
  
  .download-section h3 {
    font-size: 1.5rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
  }
  
  .store-badge {
    width: 100%;
    max-width: 200px;
  }
  
  .store-badge {
    width: 135px;
    height: 45px;
  }
  
  .store-badge.app-store img {
    height: 45px;
  }
  
  .store-badge.google-play img {
    height: 48px;
    margin-top: -1.5px;
  }
  
  .access-code-info {
    padding: var(--spacing-sm);
  }
  
  .code-text {
    font-size: 0.9rem;
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-xs);
  }
  
  .phone-mockup {
    width: 200px;
    margin-bottom: var(--spacing-md);
  }
  
  .phone-image {
    max-width: 200px;
  }
}

@media (max-width: 375px) {
  .invitation {
    padding: var(--spacing-xl) 0;
  }
  
  .invitation-text h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
  }
  
  .invitation-text > p {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
  }
  
  .app-features {
    margin-bottom: var(--spacing-lg);
  }
  
  .feature-item {
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .feature-icon {
    font-size: 1rem !important;
  }
  
  .download-section {
    padding: var(--spacing-sm);
    margin: 0 var(--spacing-xs);
  }
  
  .download-section h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
  }
  
  .download-section > p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
  }
  
  .store-badge {
    width: 120px;
    height: 40px;
  }
  
  .store-badge.app-store img {
    height: 40px;
  }
  
  .store-badge.google-play img {
    height: 43px;
    margin-top: -1.5px;
  }
  
  .access-code-info {
    padding: var(--spacing-xs);
  }
  
  .code-text {
    font-size: 0.85rem;
  }
  
  .phone-mockup {
    width: 180px;
  }
  
  .phone-image {
    max-width: 180px;
  }
}
