/* Theme: Ovejitas Tiernas - Cumpleaños de Oriana Guzman Lazo */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&family=Sacramento&display=swap');

:root {
  --font-primary: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fredoka', cursive, sans-serif;
  --font-script: 'Sacramento', cursive;

  --color-primary: #FF7B9C;
  --color-primary-light: #FFE0E9;
  --color-primary-dark: #E25B7E;
  
  --color-sky-blue: #70B8E8;
  --color-sky-light: #E1F1FB;
  --color-mint: #7CCBA2;
  --color-mint-light: #E4F6ED;
  --color-lemon: #F6C85F;
  --color-lemon-light: #FFF6DC;
  --color-lavender: #A895DF;
  --color-lavender-light: #F0EAFB;
  
  --color-cream: #FFFDF9;
  --color-cloud: #FFFFFF;
  --color-wood: #B38054;
  --color-wood-dark: #825833;
  --color-wood-light: #F3E5D8;

  --color-text-main: #3F332C;
  --color-text-soft: #6E5C53;
  --color-text-light: #9B8A81;

  --shadow-sm: 0 4px 12px rgba(99, 70, 55, 0.06);
  --shadow-md: 0 8px 24px rgba(99, 70, 55, 0.08);
  --shadow-lg: 0 16px 36px rgba(99, 70, 55, 0.12);
  --shadow-hover: 0 20px 40px rgba(255, 123, 156, 0.2);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --max-width: 860px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-main);
  background-color: #FFF9F5;
  background-image: 
    radial-gradient(#FFE8E3 1.2px, transparent 1.2px), 
    radial-gradient(#E8F2FA 1.2px, #FFF9F5 1.2px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, .font-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.25;
}

.script-text {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--color-primary);
  display: block;
}

/* Floating Controls (Abajo a la derecha) */
.floating-controls {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-float {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 2px solid var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.25rem;
}

.btn-float:hover {
  transform: scale(1.1) rotate(5deg);
  background: #FFF;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}

.btn-float.active {
  background: var(--color-primary);
  color: #FFF;
  border-color: var(--color-primary);
}

/* ENVELOPE MODAL (Cover Reveal) */
.envelope-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 34, 30, 0.75);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.envelope-overlay.opened {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.envelope-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #FFFDFC;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid #FFE4EC;
  animation: gentlePulse 3s ease-in-out infinite;
  cursor: pointer;
  user-select: none;
}

.envelope-card::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 2px dashed #FFAEC9;
  pointer-events: none;
}

.envelope-stamp {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: var(--radius-full);
  background: #FFF0F5;
  border: 3px solid #FFAEC9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.envelope-stamp img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.envelope-title {
  font-size: 1.6rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.envelope-subtitle {
  font-size: 1rem;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}

.btn-open-envelope {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF8EA9 0%, #FF5B84 100%);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 91, 132, 0.35);
  transition: all 0.3s ease;
}

.btn-open-envelope:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 28px rgba(255, 91, 132, 0.45);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 40px 0 30px;
  background: linear-gradient(180deg, #A2D5F2 0%, #D4EDFA 45%, #EDF8FF 80%, #FFF9F5 100%);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(162, 213, 242, 0.25);
}

.hero-landscape-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary-light);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.hero-sheep-wrapper {
  position: relative;
  max-width: 380px;
  margin: 0 auto 16px;
}

.hero-sheep-img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(74, 59, 50, 0.15));
}

.hero-title-group {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-name {
  font-size: 3.2rem;
  color: #FF527B;
  text-shadow: 2px 2px 0px #FFF, 4px 4px 0px rgba(255, 174, 201, 0.4);
  margin: 4px 0 10px;
  letter-spacing: 0.5px;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--color-text-soft);
  max-width: 500px;
  margin: 0 auto;
}

/* FLOATING CLOUD ACCENTS */
.cloud-float-1, .cloud-float-2 {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}

.cloud-float-1 {
  top: 15%;
  left: -20px;
  width: 120px;
}

.cloud-float-2 {
  top: 30%;
  right: -25px;
  width: 140px;
}

/* SECTION COMMONS */
.section {
  padding: 50px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 34px;
}

.section-tag {
  display: inline-block;
  padding: 4px 16px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.1rem;
  color: var(--color-text-main);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: var(--color-text-soft);
  font-size: 1.05rem;
  margin-top: 6px;
}

/* CARDS COMMON */
.card-pastel {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid #FFF1F4;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* COUNTDOWN SECTION */
.countdown-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 3px solid #FFF0F4;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.countdown-box {
  background: linear-gradient(180deg, #FFF6F8 0%, #FFE9F0 100%);
  border: 2px solid #FFD3DF;
  border-radius: var(--radius-md);
  padding: 16px 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.countdown-box:hover {
  transform: translateY(-3px) scale(1.02);
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF527B;
  line-height: 1;
  margin-bottom: 4px;
}

.countdown-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-soft);
  letter-spacing: 1px;
}

.countdown-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 24px;
  background: #FFF0E6;
  border: 1px solid #FFD8BA;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--color-wood-dark);
}

/* CUMPLEAÑERA PHOTO FRAME WIDGET */
.cumpleanera-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 32px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 3px solid #FFF1F5;
}

.photo-frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 1536 / 1024;
}

/* The circular photo placed behind 06.webp */
.frame-photo {
  position: absolute;
  left: 69.66%;
  top: 39.55%;
  width: 40.3%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
  background: #FFF0F3;
}

/* The frame overlay with transparent hole */
.frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.cumpleanera-info h3 {
  font-size: 2rem;
  color: #FF527B;
  margin-bottom: 12px;
}

.cumpleanera-bio {
  font-size: 1.08rem;
  color: var(--color-text-soft);
  margin-bottom: 20px;
}

.cumpleanera-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--color-text-main);
  background: #FFF8FA;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #FFE6EE;
}

.highlight-icon {
  font-size: 1.25rem;
}

/* DATE & LOCATION SECTION */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.detail-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid #EBF4FA;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-card.accent-pink {
  border-color: #FFE3EC;
}

.detail-icon-box {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
  background: #E3F2FD;
  color: #2196F3;
}

.detail-card.accent-pink .detail-icon-box {
  background: #FFE4EC;
  color: #FF527B;
}

.detail-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.detail-primary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.detail-secondary {
  color: var(--color-text-soft);
  font-size: 1rem;
  margin-bottom: 18px;
}

/* Action Buttons for Location & Calendar */
.btn-group-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-maps {
  background: #4285F4;
  color: #FFF;
}
.btn-maps:hover {
  background: #3367D6;
  transform: translateY(-2px);
}

.btn-waze {
  background: #33CCFF;
  color: #FFF;
}
.btn-waze:hover {
  background: #1FB8EB;
  transform: translateY(-2px);
}

.btn-copy {
  background: #FFF1F5;
  color: #FF527B;
  border: 1px solid #FFCCD9;
}
.btn-copy:hover {
  background: #FFE0E9;
  transform: translateY(-2px);
}

.btn-calendar {
  background: #FF7B9C;
  color: #FFF;
}
.btn-calendar:hover {
  background: #FF527B;
  transform: translateY(-2px);
}

/* Location Showcase with 07.webp */
.location-showcase {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid #EBF4FA;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 24px;
}

.location-img-wrap {
  text-align: center;
}

.location-sheep-img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
}

.map-embed-wrapper {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid #E1F1FB;
  box-shadow: var(--shadow-sm);
  position: relative;
}

#mapContainer {
  width: 100%;
  height: 100%;
}

/* ITINERARIO / TIMELINE */
.itinerary-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.itinerary-timeline {
  position: relative;
  padding: 20px 0;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #FFE3EC;
  border-radius: 4px;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 44%;
  background: #FFFFFF;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 2px solid #FFF0F4;
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: scale(1.03);
}

.timeline-badge {
  position: absolute;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: #FFF;
  border: 3px solid #FF8EA9;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 142, 169, 0.3);
}

.timeline-time {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #FF527B;
  background: #FFF0F5;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

/* Cake Banner inside itinerary */
.itinerary-cake-banner {
  margin-top: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F5F1FF 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 2px solid #FFE4EE;
  box-shadow: var(--shadow-md);
}

.cake-img {
  max-width: 320px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 10px 16px rgba(110, 92, 83, 0.1));
}

/* ========================================== */
/* SECCIONES Y BANNERS CON EFECTO PARALLAX */
/* ========================================== */

/* Parallax con patrón de ovejitas 10.webp (visible en sección Dress Code) */
.section-parallax-sheep {
  position: relative;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 252, 248, 0.93)), 
    url('/assets/img/10.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: repeat;
  background-size: 500px auto;
  border-top: 3px dashed #FFD6E3;
  border-bottom: 3px dashed #FFD6E3;
}

/* Banner Intermedio con Parallax 09.webp */
.parallax-quote-banner {
  position: relative;
  padding: 65px 20px;
  background-image: 
    linear-gradient(135deg, rgba(255, 123, 156, 0.80) 0%, rgba(112, 184, 232, 0.82) 100%), 
    url('/assets/img/09.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 8px 20px rgba(0,0,0,0.12), inset 0 -8px 20px rgba(0,0,0,0.12);
}

.parallax-quote-banner .quote-text {
  font-family: var(--font-script);
  font-size: 3rem;
  color: #FFFFFF;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
  line-height: 1.25;
  margin-bottom: 8px;
}

.parallax-quote-banner .quote-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFF9E6;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

@media (max-width: 600px) {
  .parallax-quote-banner .quote-text {
    font-size: 2.2rem;
  }
  .parallax-quote-banner .quote-sub {
    font-size: 0.9rem;
  }
}

/* DRESS CODE */
.dress-code-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  border: 2px solid #FFF0F4;
  box-shadow: var(--shadow-md);
}

.palette-swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 16px;
}

.swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.swatch-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: 3px solid #FFF;
  transition: transform 0.25s ease;
}

.swatch-circle:hover {
  transform: scale(1.15) rotate(5deg);
}

.swatch-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-soft);
}

/* REGALOS / LLUVIA DE SOBRES */
.gifts-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 2px solid #FFF0F4;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 28px;
}

.gift-sheep-img {
  width: 100%;
  max-width: 220px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.gift-info h3 {
  font-size: 1.8rem;
  color: #FF527B;
  margin-bottom: 10px;
}

.gift-text {
  font-size: 1.05rem;
  color: var(--color-text-soft);
  margin-bottom: 20px;
}

.bank-details-box {
  background: #FFF7F9;
  border: 2px dashed #FFCCD9;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.bank-info-item {
  font-size: 0.95rem;
}

.bank-info-item strong {
  color: var(--color-text-main);
  display: block;
}

/* RSVP FORM */
.rsvp-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-lg);
  border: 3px solid #FFE4EC;
  max-width: 640px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #EBE4E0;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-main);
  background: #FFFDFD;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #FF8EA9;
  box-shadow: 0 0 0 4px rgba(255, 142, 169, 0.15);
  background: #FFF;
}

.attendance-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: 2px solid #EBE4E0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  transition: all 0.25s ease;
  background: #FFFDFD;
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card.active {
  border-color: #FF527B;
  background: #FFF0F5;
  color: #FF527B;
  box-shadow: 0 4px 12px rgba(255, 82, 123, 0.15);
}

.btn-whatsapp-submit {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-whatsapp-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}

/* GUESTBOOK / MURO DE DESEOS */
.guestbook-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid #FFF0F4;
  margin-bottom: 24px;
}

.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.guestbook-inputs {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .guestbook-inputs {
    grid-template-columns: 1fr;
  }
}

.guestbook-messages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.wish-item {
  background: #FFF9FB;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid #FFE4EE;
  box-shadow: var(--shadow-sm);
  position: relative;
  animation: gentlePulse 4s ease-in-out infinite;
}

.wish-author {
  font-family: var(--font-display);
  font-weight: 700;
  color: #FF527B;
  font-size: 1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wish-text {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.4;
}

.wish-date {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 8px;
  text-align: right;
}

/* NIGHT FAREWELL SECTION (08.webp) */
.farewell-section {
  position: relative;
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #1C2442 0%, #29345D 40%, #3B4673 80%, #202747 100%);
  color: #FFF;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 -10px 30px rgba(28, 36, 66, 0.3);
}

.farewell-stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 40px 60px, #FFEDB3, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 150px 120px, #FFF, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 280px 40px, #FFE599, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 450px 90px, #FFF, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 600px 50px, #FFD166, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 750px 140px, #FFF, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 800px 200px;
  opacity: 0.8;
  pointer-events: none;
}

.farewell-content {
  position: relative;
  z-index: 2;
}

.farewell-img {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
}

.farewell-text {
  font-size: 1.25rem;
  color: #E2E8F0;
  max-width: 540px;
  margin: 0 auto 24px;
}

.farewell-family {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: #FFD166;
}

/* FOOTER */
.site-footer {
  background: #141A33;
  color: #94A3B8;
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
}

.site-footer a {
  color: #F6C85F;
  text-decoration: none;
}

/* TOAST NOTIFICATION */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(33, 33, 33, 0.95);
  color: #FFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 10001;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-name {
    font-size: 2.5rem;
  }
  
  .cumpleanera-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .location-showcase {
    grid-template-columns: 1fr;
  }
  
  .gifts-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .bank-details-box {
    justify-content: center;
    text-align: center;
  }
  
  .itinerary-timeline::before {
    left: 24px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 54px;
  }
  
  .timeline-badge {
    left: 24px;
  }
  
  .timeline-content {
    width: 100%;
  }

  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .countdown-grid {
    gap: 8px;
  }
  
  .countdown-box {
    padding: 12px 4px;
  }
  
  .countdown-number {
    font-size: 1.65rem;
  }
  
  .btn-open-envelope {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
