/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Color general de texto para toda la página (excluyendo botones y .evento-section) */
  body {
    color: #a23c5d;
    overflow-x: hidden;
  }
  
  /* Ocultar scrollbar durante intro */
  body.intro-active {
    overflow: hidden;
  }
  
  /* Utility class */
  .hidden {
    display: none !important;
  }
  
  /* ==================== INTRO OVERLAY - MEJORADA ==================== */
  .intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f7f2f6 0%, #fef9f8 50%, #f3ecea 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .intro-content {
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
  }
  
  /* Anillos entrelazados */
  .intro-rings {
    margin-bottom: 2rem;
    animation: fadeInScale 1.5s ease-out;
  }
  
  .rings-icon {
    width: clamp(120px, 25vw, 180px);
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(201, 130, 151, 0.2));
  }
  
  .intro-names {
    font-family: 'Allura', cursive;
    font-size: clamp(3.5rem, 12vw, 7rem);
    color: #a23c5d;
    margin-bottom: 1.5rem;
    animation: fadeIn 1.5s ease-out 0.3s both;
  }
  
  .intro-news {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: #c98297;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeIn 1.8s ease-out 0.6s both;
  }
  
  .intro-cta {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #9b6b7a;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite, fadeIn 2s ease-out 0.9s both;
  }
  
  /* Efecto de brillos/estrellas */
  .intro-sparkle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .intro-sparkle span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c98297;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
  }
  
  .intro-sparkle span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
  }
  
  .intro-sparkle span:nth-child(2) {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
  }
  
  .intro-sparkle span:nth-child(3) {
    top: 8%;
    left: 50%;
    animation-delay: 2s;
  }
  
  /* Estado de cierre */
  .intro-overlay.closing {
    opacity: 0;
    transform: scale(1.1);
  }
  
  .intro-overlay.closing .intro-content {
    animation: zoomOut 1s ease-in-out forwards;
  }
  
  .intro-overlay.closing .rings-icon {
    animation: ringsExpand 1s ease-in-out forwards;
  }
  
  /* Animaciones */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  @keyframes sparkle {
    0%, 100% {
      opacity: 0;
      transform: scale(0);
    }
    50% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes zoomOut {
    0% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1.3);
    }
  }
  
  @keyframes ringsExpand {
    0% {
      transform: scale(1) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: scale(3) rotate(360deg);
      opacity: 0;
    }
  }
  
  /* ==================== MUSIC CONTROL ==================== */
  .music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #c98297;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 130, 151, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .music-control:hover {
    background-color: #a14b6f;
    transform: scale(1.1);
  }
  
  .music-control.muted {
    background-color: #9b6b7a;
    opacity: 0.6;
  }
  
  .music-control.muted::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 50px;
    background-color: white;
    transform: rotate(45deg);
  }
  
  /* ==================== MAIN CONTENT ==================== */
  .main-content {
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  /* Mantener colores originales de botones y evento-section */
  button,
  .btn,
  .save-date-btn,
  .card-asistencia button,
  .evento-section,
  .evento-section * {
    color: inherit;
  }
  
  /* ==================== MOBILE FIRST BASE STYLES ==================== */
  
  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    background: white;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    background: url('../assets/images/fade-flowers.png') no-repeat center top;
    background-size: cover;
    z-index: 0;
  }
  
  .hero > * {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-family: 'Allura', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    margin: 0;
  }
  
  .hero p {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    order: -1;
  }
  
  .hero-content {
    margin-top: 38vh;
  }
  
  /* IMAGE CARD */
  .image-card {
    width: 100%;
    max-width: 420px;
    height: 35vh;
    padding: 10px;
    background-color: #f7f2f6;
    border-radius: 30px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  
  .image-card img {
    width: 90%;
    height: auto;
    position: absolute;
    top: -16%;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: 3;
  }
  
  /* COUNTDOWN */
  .countdown-section {
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .countdown-title {
    font-family: 'Allura', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .countdown {
    display: flex;
    align-items: center;
  }
  
  .time {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
  }
  
  .time span {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
  }
  
  .time small {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  }
  
  .separator {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 2rem;
  }
  
  /* DATE SECTION */
  .date-section {
    background: white;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .date-card {
    background-color: #f7f2f6;
    width: 100%;
    max-width: 500px;
    padding: 2rem 2rem 4rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .date-text {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    max-width: 38ch;
    text-align: justify;
    text-align-last: center;
    hyphens: auto;
  }
  
  .date-box {
    position: relative;
    height: auto;
    padding-bottom: 7.5rem;
  }
  
  .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 20vw, 9rem);
    line-height: 1;
    color: #9b6b7a;
    margin-bottom: -1.2rem;
    position: relative;
  }
  
  .day .one,
  .day .three {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #9b6b7a;
    position: absolute;
    top: 0;
    left: 50%;
  }
  
  .day .one {
    font-size: 7rem;
    transform: translateX(-120%);
    z-index: 2;
  }
  
  .day .three {
    font-size: 8rem;
    top: -0.5rem;
    transform: translateX(-10%);
    z-index: 1;
  }
  
  .month-year {
    position: absolute;
    top: 6rem;
    left: 59%;
    transform: translateX(-60%);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
  }
  
  .month,
  .year {
    font-size: 2.2rem;
    letter-spacing: 6px;
    font-weight: 400;
  }
  
  /* BOTÓN SAVE DATE */
  .save-date-btn {
    margin-top: 2rem;
    font-family: 'Cormorant Garamond', serif;
    background-color: #c98297;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 2.5rem;
    width: 65%;
    max-width: 320px;
    font-size: 1.3rem;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  /* EVENTO SECTION */
  .evento-section {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
  }
  
  .evento-section img.ramo {
    width: 100px;
  }
  
  .evento-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 10px 0;
    color: inherit;
  }
  
  .evento-section p.info {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 5px 0;
    font-size: 18px;
  }
  
  .evento-section img.finca {
    width: 70%;
    margin: 20px 0;
    border-radius: 8px;
  }
  
  .evento-section .btn-llegar {
    display: inline-block;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    background-color: #c98297;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 2.5rem;
    width: 65%;
    max-width: 320px;
    font-size: 1.3rem;
    font-weight: 400;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .evento-section p.detalle {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
  }
  
  /* ASISTENCIA SECTION */
  .section-asistencia {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    padding: 3.5rem;
    background-image: url('../assets/images/flowers.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .section-asistencia::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .card-asistencia {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .card-asistencia h2 {
    font-family: 'Allura', cursive;
    font-size: 31px;
    color: #A54B6A;
    margin-bottom: 20px;
  }
  
  .card-asistencia p {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 16px;
    color: #7D3B57;
    margin-bottom: 10px;
  }
  
  .card-asistencia button {
    display: inline-block;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    background-color: #c98297;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 2.5rem;
    width: 100%;
    max-width: 320px;
    font-size: 1.3rem;
    font-weight: 400;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card-asistencia button:hover {
    background-color: #8B3A59;
  }
  
  /* LISTA DE BODAS */
  .lista-bodas {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  .lista-bodas h2 {
    font-family: 'Allura', cursive;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 2rem;
  }
  
  .lista-bodas .regalos-img {
    width: 150px;
    max-width: 40%;
    margin: 0 auto 2rem;
    display: block;
  }
  
  .lista-bodas .mensaje {
    font-size: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 1.5rem;
  }
  
  /* MODIFICACIÓN: Número de cuenta sin enlaces automáticos */
  .lista-bodas .cuenta {
    font-size: 1.3rem;
    font-weight: 400;
    color: #a23c5d;
  }
  
  .lista-bodas .cuenta span {
    color: #a23c5d;
    text-decoration: none;
    pointer-events: none;
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
  }
  
  /* SECCIÓN PLAYLIST + ALBUM */
  .section.playlist {
    text-align: center;
    padding: 50px 20px;
    background-color: #f3ecea;
    color: #a23c5d;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  }
  
  .section.playlist h2 {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #a23c5d;
  }
  
  .section.playlist p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #a23c5d;
  }
  
  .section.playlist img:not(.album-icon) {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .section.playlist .album-icon {
    width: 100px;
  }
  
  .section.playlist .btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    background-color: #c98297;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 2.5rem;
    width: 65%;
    max-width: 320px;
    font-size: 1.3rem;
    font-weight: 400;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .section.playlist .btn:hover {
    background-color: #9e5a70;
  }

  .flowers-section {
    background-image: url("../assets/images/flowers2.jpeg");
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    padding-top: 80px;
    display: flex;
    justify-content: center;
  }
  
  .invitation-section {
    position: relative;
    width: 230px;
    min-height: 30vh;
    text-align: center;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding: 60px 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 0 auto;
    background-color: #f7f1f1;
  }
  
  .invitation-section h2,
  .invitation-section .whatsapp-icon,
  .invitation-section button,
  .invitation-section a.invite-button {
    position: relative;
    z-index: 1;
  }
  
  .invitation-section h2 {
    color: #a14b6f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .whatsapp-icon {
    color: #a14b6f;
    font-size: 1.5rem;
    margin-bottom: 15px;
  } 
  
  .invitation-section button,
  .invitation-section a.invite-button {
    display: inline-block;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    background-color: #c98297;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 2.5rem;
    width: 100%;
    max-width: 320px;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .invitation-section button:hover,
  .invitation-section a.invite-button:hover {
    background-color: #a14b6f;
  }

  /* ==================== MEDIA QUERIES - RESPONSIVE ==================== */
  
  /* Tablets en portrait (>= 768px) */
  @media (min-width: 768px) {
    .intro-names {
      font-size: clamp(5rem, 10vw, 8rem);
    }
    
    .intro-news {
      font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .intro-cta {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
    }
    
    .envelope {
      width: clamp(350px, 70vw, 450px);
      height: clamp(230px, 45vw, 300px);
    }
    
    .envelope-wrapper {
      width: clamp(400px, 80vw, 500px);
      height: clamp(270px, 53vw, 335px);
    }
    
    .card-content {
      gap: clamp(0.5rem, 2vw, 1rem);
    }
    
    .card-content h2 {
      font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .card-content p {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
    }
    
    .card-date {
      font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    }
    
    .music-control {
      width: 55px;
      height: 55px;
      font-size: 1.3rem;
    }
    
    .hero {
      padding: 2.5rem;
    }
    
    .hero h1 {
      font-size: clamp(4rem, 8vw, 7rem);
    }
    
    .hero p {
      font-size: 1.4rem;
    }
    
    .hero-content {
      margin-top: 35vh;
    }
    
    .image-card {
      max-width: 500px;
      height: 40vh;
    }
    
    .countdown-title {
      font-size: 3rem;
    }
    
    .time {
      min-width: 90px;
    }
    
    .time small {
      font-size: 1rem;
    }
    
    .date-section {
      padding: 3rem;
    }
    
    .date-card {
      max-width: 600px;
      padding: 3rem 2.5rem 5rem;
    }
    
    .date-text {
      font-size: 1.1rem;
    }
    
    .evento-section {
      max-width: 500px;
      padding: 30px;
    }
    
    .evento-section img.ramo {
      width: 120px;
    }
    
    .evento-section h2 {
      font-size: 28px;
    }
    
    .evento-section p.info {
      font-size: 20px;
    }
    
    .section-asistencia {
      padding: 4rem;
    }
    
    .card-asistencia {
      max-width: 500px;
      padding: 30px;
    }
    
    .card-asistencia h2 {
      font-size: 38px;
    }
    
    .card-asistencia p {
      font-size: 18px;
    }
    
    .lista-bodas {
      padding: 3rem;
    }
    
    .lista-bodas .regalos-img {
      width: 180px;
    }
    
    .lista-bodas .mensaje {
      font-size: 1.1rem;
      max-width: 600px;
    }
    
    .lista-bodas .cuenta {
      font-size: 1.4rem;
    }
    
    .section.playlist {
      padding: 60px 30px;
    }
    
    .section.playlist h2 {
      font-size: 2.3rem;
    }
    
    .section.playlist p {
      font-size: 1.1rem;
    }
    
    .invitation-section {
      width: 280px;
      padding: 70px 30px 30px;
    }
    
    .invitation-section h2 {
      font-size: 1.1rem;
    }
    
    .whatsapp-icon {
      font-size: 1.8rem;
    }
  }
  
  /* Laptops y tablets en landscape (>= 1024px) */
  @media (min-width: 1024px) {
    .rings-icon {
      width: 200px;
    }
    
    .music-control {
      width: 450px;
      height: 300px;
    }
    
    .music-control {
      width: 60px;
      height: 60px;
      font-size: 1.4rem;
    }
    
    .hero {
      padding: 3rem;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
    }
    
    .hero::before {
      height: 100vh;
      background-position: center;
    }
    
    .hero-content {
      margin-top: 0;
      max-width: 45%;
    }
    
    .hero h1 {
      font-size: clamp(5rem, 7vw, 8rem);
    }
    
    .hero p {
      font-size: 1.5rem;
    }
    
    .image-card {
      max-width: 600px;
      height: 50vh;
    }
    
    .countdown-section {
      min-height: 35vh;
      padding: 3rem;
    }
    
    .countdown-title {
      font-size: 3.5rem;
    }
    
    .time {
      min-width: 110px;
    }
    
    .time small {
      font-size: 1.1rem;
    }
    
    .date-section {
      padding: 4rem;
    }
    
    .date-card {
      max-width: 700px;
      padding: 3.5rem 3rem 6rem;
    }
    
    .date-text {
      font-size: 1.2rem;
    }
    
    .save-date-btn {
      font-size: 1.4rem;
      padding: 1rem 3rem;
    }
    
    .evento-section {
      max-width: 600px;
      padding: 40px;
    }
    
    .evento-section img.ramo {
      width: 140px;
    }
    
    .evento-section h2 {
      font-size: 32px;
    }
    
    .evento-section p.info {
      font-size: 22px;
    }
    
    .evento-section img.finca {
      width: 60%;
    }
    
    .evento-section .btn-llegar {
      font-size: 1.4rem;
      padding: 1rem 3rem;
    }
    
    .section-asistencia {
      min-height: 50vh;
      padding: 5rem;
    }
    
    .card-asistencia {
      max-width: 600px;
      padding: 40px;
    }
    
    .card-asistencia h2 {
      font-size: 42px;
    }
    
    .card-asistencia p {
      font-size: 19px;
    }
    
    .card-asistencia button {
      font-size: 1.4rem;
      padding: 1rem 3rem;
    }
    
    .lista-bodas {
      padding: 4rem;
    }
    
    .lista-bodas .regalos-img {
      width: 200px;
    }
    
    .lista-bodas .mensaje {
      font-size: 1.2rem;
      max-width: 700px;
    }
    
    .lista-bodas .cuenta {
      font-size: 1.5rem;
    }
    
    .section.playlist {
      padding: 80px 40px;
    }
    
    .section.playlist h2 {
      font-size: 2.5rem;
    }
    
    .section.playlist p {
      font-size: 1.2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .section.playlist .btn {
      font-size: 1.4rem;
      padding: 1rem 3rem;
    }
    
    .flowers-section {
      padding-top: 100px;
    }
    
    .invitation-section {
      width: 320px;
      padding: 80px 40px 40px;
    }
    
    .invitation-section h2 {
      font-size: 1.2rem;
    }
    
    .whatsapp-icon {
      font-size: 2rem;
    }
    
    .invitation-section button,
    .invitation-section a.invite-button {
      font-size: 1.4rem;
      padding: 1rem 3rem;
    }
  }
  
  /* Pantallas grandes (>= 1440px) */
  @media (min-width: 1440px) {
    body {
      max-width: 1920px;
      margin: 0 auto;
    }
    
    .hero {
      padding: 4rem;
    }
    
    .hero h1 {
      font-size: 9rem;
    }
    
    .hero p {
      font-size: 1.6rem;
    }
    
    .image-card {
      max-width: 700px;
      height: 55vh;
    }
    
    .countdown-section {
      padding: 4rem;
    }
    
    .countdown-title {
      font-size: 4rem;
      margin-bottom: 2rem;
    }
    
    .time {
      min-width: 130px;
    }
    
    .time span {
      font-size: 5rem;
    }
    
    .time small {
      font-size: 1.2rem;
    }
    
    .separator {
      font-size: 4rem;
    }
    
    .date-section {
      padding: 5rem;
    }
    
    .date-card {
      max-width: 800px;
      padding: 4rem 3.5rem 7rem;
    }
    
    .date-text {
      font-size: 1.3rem;
    }
    
    .day .one {
      font-size: 8rem;
    }
    
    .day .three {
      font-size: 9rem;
    }
    
    .month,
    .year {
      font-size: 2.5rem;
    }
    
    .save-date-btn {
      font-size: 1.5rem;
      padding: 1.1rem 3.5rem;
      max-width: 380px;
    }
    
    .evento-section {
      max-width: 700px;
      padding: 50px;
    }
    
    .evento-section img.ramo {
      width: 160px;
    }
    
    .evento-section h2 {
      font-size: 36px;
    }
    
    .evento-section p.info {
      font-size: 24px;
    }
    
    .evento-section .btn-llegar {
      font-size: 1.5rem;
      max-width: 380px;
    }
    
    .section-asistencia {
      padding: 6rem;
    }
    
    .card-asistencia {
      max-width: 700px;
      padding: 50px;
    }
    
    .card-asistencia h2 {
      font-size: 48px;
    }
    
    .card-asistencia p {
      font-size: 20px;
    }
    
    .card-asistencia button {
      font-size: 1.5rem;
      max-width: 380px;
    }
    
    .lista-bodas {
      padding: 5rem;
    }
    
    .lista-bodas h2 {
      font-size: 4rem;
    }
    
    .lista-bodas .regalos-img {
      width: 220px;
    }
    
    .lista-bodas .mensaje {
      font-size: 1.3rem;
      max-width: 800px;
    }
    
    .lista-bodas .cuenta {
      font-size: 1.6rem;
    }
    
    .section.playlist {
      padding: 100px 50px;
    }
    
    .section.playlist h2 {
      font-size: 3rem;
    }
    
    .section.playlist p {
      font-size: 1.3rem;
      max-width: 800px;
    }
    
    .section.playlist .album-icon {
      width: 120px;
    }
    
    .section.playlist .btn {
      font-size: 1.5rem;
      max-width: 380px;
    }
    
    .flowers-section {
      padding-top: 120px;
    }
    
    .invitation-section {
      width: 360px;
      padding: 90px 50px 50px;
    }
    
    .invitation-section h2 {
      font-size: 1.3rem;
    }
    
    .whatsapp-icon {
      font-size: 2.2rem;
    }
    
    .invitation-section button,
    .invitation-section a.invite-button {
      font-size: 1.5rem;
      max-width: 280px;
    }
  }
  
  /* Pantallas ultra grandes (>= 1920px) */
  @media (min-width: 1920px) {
    .hero-content {
      max-width: 50%;
    }
    
    .image-card {
      max-width: 800px;
      height: 60vh;
    }
    
    .date-card {
      max-width: 900px;
    }
    
    .evento-section {
      max-width: 800px;
    }
    
    .card-asistencia {
      max-width: 800px;
    }
    
    .lista-bodas .mensaje,
    .section.playlist p {
      max-width: 900px;
    }
  }