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

body {
    font-family: 'Playfair Display', serif;
    overflow-x: hidden;
    background: #fafaf5;
}


.invitation-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Sección de Portada */
.cover-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Para usar tu propia foto, reemplaza la URL de arriba con: url('tu-foto.jpg') */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.names {
    animation: fadeInUp 1.8s ease-out;
}

.subtitle {
    animation: fadeInUp 2s ease-out;
}

.names {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff8e1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Sección de Cuenta Regresiva */

.countdown-title {
    font-family: 'Playfair Display', serif;
    color: #4b4b4b;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
}




.date-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 2rem;
    letter-spacing: 1px;
    color: #5F5246;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.9s, transform 0.6s ease-out 0.9s;
}

.countdown-section-alt.animate-in .date-text {
    opacity: 1;
    transform: translateY(0);
}

/* Segunda Cuenta Regresiva (Diseño Alternativo) */
.countdown-section-alt {
    background: #fffcfc;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-circles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-circle-item {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotateY(180deg);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.countdown-section-alt.animate-in .countdown-circle-item:nth-child(1) {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    transition-delay: 0.1s;
}

.countdown-section-alt.animate-in .countdown-circle-item:nth-child(2) {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    transition-delay: 0.3s;
}

.countdown-section-alt.animate-in .countdown-circle-item:nth-child(3) {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    transition-delay: 0.5s;
}

.countdown-section-alt.animate-in .countdown-circle-item:nth-child(4) {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    transition-delay: 0.7s;
}

.countdown-circle-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    stroke: #a17c511e;
}

.circle-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.circle-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.countdown-circle-item:hover .circle-number {
    transform: scale(1.1);
}

.circle-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: #9A8B7A;
    text-transform: lowercase;
}

.heart-icon-alt {
    width: 60px;
    height: 60px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s ease-out 1s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
}

.countdown-section-alt.animate-in .heart-icon-alt {
    opacity: 1;
    transform: scale(1);
    animation: pulse 2s ease-in-out infinite 1.6s;
}

.heart-icon-alt img {
    transition: transform 0.3s ease;
}

.countdown-section-alt.animate-in .heart-icon-alt img {
    animation: float 3s ease-in-out infinite 1.6s;
}

.heart-icon-alt:hover img {
    transform: scale(1.2) rotate(10deg);
}

.heart-icon-alt svg {
    width: 100%;
    height: 100%;
}

.countdown-message {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #94887b;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 1.1s, transform 0.6s ease-out 1.1s;
}

.countdown-section-alt.animate-in .countdown-message {
    opacity: 1;
    transform: translateY(0);
}

/* Sección de Eventos (Ceremonia y Fiesta) */
.events-section {
    padding: 5rem 0rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    background: #f8f8f8;
}

.event-card {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    /* Animaciones de scroll desactivadas */
    /* transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, opacity 0.8s ease; */
    /* opacity: 0; */
}

.event-card:nth-child(1) {
    /* transform: translateX(-100px); */
}

.event-card:nth-child(2) {
    /* transform: translateX(100px); */
}

.event-card.animate-in {
    /* opacity: 1; */
    /* transform: translateX(0); */
}

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

.event-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-image::after {
    opacity: 1;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-title {
    /* font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #a89584;
    margin: 1.5rem 0 1.5rem;
    letter-spacing: 1px;
    text-transform: capitalize; */



    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #bbab9f;
    margin: 2rem 0 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.event-info {
    font-family: 'Playfair Display', serif;
    color: #5F5246;
    line-height: 1.8;
    margin: 0 2rem 1.5rem;
    flex-grow: 1;
}

.event-date-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.event-decorative-line {
    width: 50px;
    height: .6px;
    background: linear-gradient(
        to right,
        transparent,
        #eddbc6,
        transparent
      );
}

.event-date {
    font-size: 1.1rem;
    color: #5d544b;
    font-weight: 400;
}

.event-time {
    font-size: 1rem;
    color: #94887b;
    font-weight: 400;
    text-align: center;
}

.event-location {
    font-size: 1.2rem;
    color: #5d544b;
    font-weight: 400;
    margin: 1.2rem 0 0.3rem !important;
    text-align: center;
}

.event-address {
    font-size: .9rem;
    color: #94887b;
    font-weight: 400;
    margin: 0 0 1rem !important;
    text-align: center;
}

.event-separator {
    display: block;
    width: 100%;
    height: .6px;
    margin: 1rem auto;
    background: linear-gradient(
        to right,
        transparent,
        #eddbc6,
        transparent
      );
}

.event-info p {
    margin-bottom: 0.3rem;
}

.event-note {
    font-style: italic;
    color: #b2a89d;
    font-size: 0.9rem;
    text-align: center;
}


.event-button  {
    background: #d1b89f;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 2rem 2rem;
    width: 70%;
}

.event-button:hover {
    background: #c9a882;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 184, 159, 0.4);
}

.event-button:active {
    transform: translateY(0) scale(0.98);
}



/* Sección de Galería */
.gallery-section {
    background: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gallery-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #a89584;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.gallery-section.animate-in .gallery-title {
    opacity: 1;
    transform: translateY(0);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.gallery-item:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Modal para ver fotos grandes */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ccc;
}

.modal-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    pointer-events: all;
    transition: background 0.3s ease;
    margin: 0 2rem;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Botón de Audio Flotante */
.audio-player-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 0.8s ease-out 1s forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.audio-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.audio-player-container:hover .audio-label {
    opacity: 1;
    transform: translateX(0);
}

.audio-player-btn {
    width: 60px;
    background: #8b8b8b00;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: solid #ff000000;
    animation: gentleBounce 2s ease-in-out infinite;
}

.audio-player-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.audio-player-btn:hover::before {
    width: 100%;
    height: 100%;
}

.audio-player-btn:hover {
    transform: scale(1.1);
    animation: none; /* Detener la animación en hover para mejor control */
}

.audio-player-btn:active {
    transform: scale(0.95);
    animation: none;
}

.audio-player-btn.playing {
    animation: gentleBounce 2s ease-in-out infinite;
}

@keyframes pulseAudio {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(107, 142, 35, 0.6);
    }
}

.audio-icon {
    width: 65%;
    height: 65%;
    position: relative;
    z-index: 1;
}

/* Responsive para el botón de audio */
@media (max-width: 768px) {
    .audio-player-container {
        top: 1rem;
        right: 1rem;
    }
    
    .audio-player-btn {
        width: 60px;
        height: 60px;
    }
    
    .audio-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .audio-icon {
        width: 70%;
        height: 70%;
    }
}

/* Sección de Regalos */
.gift-section {
    background-image: url('https://www.agendalafecha.com/invitaciones/romantica/assets/img/fondo-papel.jpg');
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gift-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gift-section-content{
    background: white;
    width: 80%;
    padding: 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.gift-section.animate-in .gift-section-content {
    opacity: 1;
    transform: scale(1);
}

.gift-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.gift-icon img {
    transition: transform 0.3s ease;
}

.gift-section:hover .gift-icon img {
    transform: rotate(10deg) scale(1.1);
}

.gift-icon svg {
    width: 100%;
    height: 100%;
}

.gift-icon svg path,
.gift-icon svg rect {
    stroke: #8b7355;
}

.gift-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #94887b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.gift-button {

    background: #d1b89f;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
    letter-spacing: 1px;
    text-transform: uppercase;


  

}

.gift-button:hover {
    background: #b8966f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gift-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Sección de Sugerencias de Canciones */
.songs-section {
    background: #f8f8f8;
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.songs-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.songs-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #a89584;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 800px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.songs-section.animate-in .songs-title {
    opacity: 1;
    transform: translateY(0);
}

.songs-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.8;   
    color: #94887b;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.songs-section.animate-in .songs-text {
    opacity: 1;
    transform: translateY(0);
}

.songs-button {
    background: #d1b89f;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s, all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.songs-section.animate-in .songs-button {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.songs-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.songs-button:hover::before {
    left: 100%;
}

.songs-button:hover {
    background: #c9a882;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(209, 184, 159, 0.5);
}

.songs-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Modal de Datos Bancarios */
.bank-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.bank-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bank-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888888;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.bank-close-btn:hover {
    color: #333333;
}

.bank-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.bank-account-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.bank-account-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.account-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bank-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: fit-content;
}

.bank-detail-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0; /* Permite que el texto se ajuste */
}

.bank-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #6b5d4f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bank-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #4a4a4a;
    font-weight: 400;
    word-break: break-all;
}

.copy-icon-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.copy-icon-btn:hover {
    transform: scale(1.2);
}

.copy-icon-btn:active {
    transform: scale(0.95);
}

.copy-icon-btn svg {
    transition: all 0.3s ease;
}

.copy-button {
    width: 100%;
    background: #c9a882;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.copy-button:hover {
    background: #b8966f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copy-all-button {
    margin-top: 1.5rem;
    background: #8b7355;
}

.copy-all-button:hover {
    background: #7a6345;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.copy-button:active {
    transform: translateY(0);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .names {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 2.5rem;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1.5rem 1rem;
        min-width: 90px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 1.2rem;
    }
    
    /* Contador alternativo responsive */
    .countdown-circle-item {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }
    
    .circle-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .circle-label {
        font-size: 0.75rem;
    }
    
    .countdown-circles {
        gap: 0.8rem;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .countdown-section-alt {
        padding: 3rem 1rem;
    }
    
    .date-text {
        font-size: 22px;
    }
  
    
    .countdown-message {
        font-size: 14px;
    }
    
    .gallery-title {
        font-size: 20px;
    }
    
    .gift-text {
        font-size: 14px;
    }
    
    .gift-button {
        font-size: 14px;
    }
    
    .songs-title {
        font-size: 22px;
    }
    
    .songs-text {
        font-size: 14px;
    }
    
    .songs-button {
        font-size: 14px;
    }
    
    .instagram-text {
        font-size: 14px;
    }
    
    .instagram-button {
        font-size: 14px;
    }
    
    .dresscode-title {
        font-size: 20px;
    }
    
    .dresscode-text {
        font-size: 14px;
    }
    
    .confirmation-modal .confirmation-title {
        font-size: 22px !important;
    }
    
    .confirmation-text {
        font-size: 14px;
    }
    
    .confirmation-button,
    .calendar-button {
        font-size: 14px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .events-section {
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
    
    .event-card {
        max-width: 100%;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-title {
        font-size: 20px;
    }
    
    .event-info {
        font-size: 14px;
        margin: 0 1.5rem 1.5rem;
    }
    .event-location,
    .event-date{
        font-size: 18px;
    }
    
    .event-time,
    .event-address,
    .event-note {
        font-size: 14px;
    }
    
    .event-button {
        margin: 0 1.5rem 1.5rem;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dresscode-text-sub {
        font-size: 14px !important;
    }
    .names {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.8rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .events-section {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .event-card {
        min-width: 100%;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-title {
        font-size: 20px;
    }
    
    .event-info {
        margin: 0 1rem 1rem;
        font-size: 14px;
    }
    .event-location,
    .event-date{
        font-size: 18px;
    }

    .event-time,
    .event-address,
    .event-note {
        font-size: 14px;
    }
    
    .event-button {
        margin: 0 1rem 1.5rem;
        padding: 0.9rem 1.5rem;
        font-size: 14px;
    }
    
    .gallery-section {
        padding: 3rem 1.5rem;
    }
    
    .gallery-title {
        font-size: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nav-btn {
        font-size: 2rem;
        padding: 0.8rem 1rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {

    
    .gallery-title {
        font-size: 20px;
    }
    
    .nav-btn {
        font-size: 1.5rem;
        padding: 0.6rem 0.8rem;
        margin: 0 0.5rem;
    }
    
    .gift-section {
        padding: 3rem 1.5rem;
    }
    
    .gift-text {
        font-size: 14px;
    }
    
    .gift-button {
        padding: 0.9rem 2rem;
        font-size: 12px;
    }
    
    .songs-section {
        padding: 3rem 1.5rem;
    }
    
    .songs-title {
        font-size: 20px;
    }
    
    .songs-text {
        font-size: 14px;
    }
    
    .songs-button {
        padding: 0.9rem 2rem;
        font-size: 12px !important;
    }
    
    .bank-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .bank-modal-title {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
    
    .account-title {
        font-size: 20px;
        margin-bottom: 1rem;
    }
    
    .bank-account-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .bank-info {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .bank-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .bank-detail-row > div {
        width: 100%;
    }
    
    .copy-icon-btn {
        align-self: flex-end;
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }
    
    .copy-icon-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .bank-label {
        font-size: 14px;
    }
    
    .bank-value {
        font-size: 14px;
    }
    
    .copy-button {
        padding: 0.9rem 1.5rem;
        font-size: 14px;
    }
    
    .copy-all-button {
        margin-top: 1rem;
    }
    .gift-section-content {
        width: 90% !important;
    }
    
    .instagram-section {
        padding: 3rem 1.5rem;
    }
    
    .instagram-text {
        font-size: 14px !important;
    }
    .instagram-handle{
        font-size: 22px !important;
    }
    
    .instagram-button {
        padding: 0.9rem 1.8rem;
        font-size: 12px !important;
    }
    
    .dresscode-section {
        padding: 3rem 1.5rem;
    }
    
    .dresscode-title {
        font-size: 22px !important;
    }
    
    .dresscode-text {
        font-size: 14px !important;
    }
    
    .dresscode-icons {
        gap: 2rem;
    }
    
    .dresscode-icon {
        width: 50px;
        height: 50px;
    }
    
    .confirmation-section {
        padding: 2rem 1.5rem;
        min-height: 80vh;
    }
    
    .confirmation-modal {
        padding: 2.5rem 2rem;

    }
    
    .confirmation-modal .confirmation-title {
        font-size: 20px !important;
    }
    
    .confirmation-text {
        font-size: 14px;
    }
    .confirmation-button{
        width: 100% !important;
    }
    
    .confirmation-button,
    .calendar-button {
        padding: 0.9rem 2rem !important;
        font-size: 12px !important;
        width: 100% !important;
    }
    
    .countdown-circle-item {
        width: 75px;
        height: 75px;
        flex-shrink: 0;
    }
    
    .circle-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    
    .circle-label {
        font-size: 0.7rem;
    }
    
    .countdown-circles {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .countdown-section-alt {
        padding: 3rem 1rem;
    }
}

/* Sección de Instagram */
.instagram-section {
    background: #ffffff;
    padding: 2rem 2rem 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.instagram-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.instagram-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.instagram-icon img {
    transition: transform 0.3s ease;
}

.instagram-section:hover .instagram-icon img {
    transform: scale(1.1) rotate(5deg);
}

.instagram-icon svg {
    width: 100%;
    height: 100%;
}

.instagram-icon svg rect,
.instagram-icon svg circle {
    stroke: #8b7355;
    fill: #8b7355;
}

.instagram-handle {

    font-style: italic;
    font-size: 1.5rem;
    font-weight: 600;
    color: #a89584;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.instagram-text {
  


    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.8;
    color: #94887b;
}

.instagram-button {
    background: #ffffff;
    border: 1px solid #d4b896;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c7ad8c;
    font-family: 'Noto Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.instagram-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(209, 184, 159, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.instagram-button:hover::after {
    width: 300px;
    height: 300px;
}

.instagram-button:hover {
    background: #fafaf5;
    border-color: #c9a882;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.instagram-button:active {
    transform: translateY(0);
}

/* Sección de Dress Code */
.dresscode-section {
    background: #d1b89fbb;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.dresscode-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.dresscode-icons {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out 0.1s, transform 0.6s ease-out 0.1s;
}

.dresscode-section.animate-in .dresscode-icons {
    opacity: 1;
    transform: translateY(0);
}

.dresscode-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.dresscode-icon img {
    transition: transform 0.4s ease;
}

.dresscode-section:hover .dresscode-icon {
    transform: translateY(-5px);
}

.dresscode-section:hover .dresscode-icon img {
    transform: scale(1.1) rotate(5deg);
}

.dresscode-icon svg {
    width: 100%;
    height: 100%;
}

.dresscode-icon svg path {
    stroke: #8b7355;
}

.dresscode-title {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.dresscode-section.animate-in .dresscode-title {
    opacity: 1;
    transform: translateY(0);
}

.dresscode-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.dresscode-section.animate-in .dresscode-text {
    opacity: 1;
    transform: translateY(0);
}

.dresscode-text-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #ffffffdd;
    letter-spacing: 1px;
    margin-top: .5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}

.dresscode-section.animate-in .dresscode-text-sub {
    opacity: 1;
    transform: translateY(0);
}
/* Sección de Confirmación de Asistencia */
.confirmation-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.confirmation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(8px);
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-out;
}

.confirmation-background.animate-in {
    opacity: 0.9;
}

.confirmation-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    animation: shimmer 3s ease-in-out infinite;
}

.confirmation-modal {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 16px;
    padding: 3.5rem 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmation-modal.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.confirmation-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #a5968a;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.confirmation-modal.animate-in .confirmation-title {
    opacity: 1;
    transform: translateY(0);
}

.confirmation-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #94887b;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.confirmation-modal.animate-in .confirmation-text {
    opacity: 1;
    transform: translateY(0);
}

.confirmation-button {
    background: #d1b89f;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 80%;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s, background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.confirmation-modal.animate-in .confirmation-button {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.confirmation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.confirmation-button:hover::before {
    left: 100%;
}

.confirmation-modal.animate-in .confirmation-button:hover {
    background: #c9a882;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(209, 184, 159, 0.5);
}

.confirmation-modal.animate-in .confirmation-button:active {
    transform: translateY(-1px) scale(1.02);
}

.calendar-button {
    width: 60%;
    background: #ffffff;
    color: #c7ad8c;
    border: 1px solid #d4b896;
    font-family: 'Noto Sans', sans-serif;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.6s ease-out 0.8s, transform 0.6s ease-out 0.8s, all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmation-modal.animate-in .calendar-button {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.calendar-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(209, 184, 159, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.calendar-button:hover::after {
    width: 300px;
    height: 300px;
}

.calendar-button:hover {
    background: #fafaf5;
    border-color: #c9a882;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.calendar-button:active {
    transform: translateY(-1px) scale(1.02);
}

.calendar-button:active {
    transform: translateY(0);
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

/* Sección de ClassyCountdown */
.countdown-classy-section {
    background: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.countdown-classy-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ClassyCountdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-message-classy {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #94887b;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 2rem;
    font-style: italic;
}

/* Personalización de ClassyCountdown para coincidir con la paleta de colores */
.ClassyCountdown-wrapper {
    width: 100%;
    max-width: 1200px;
}

.ClassyCountdown-wrapper .ClassyCountdown-value {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    color: #5a4a3c !important;
    font-size: 3rem !important;
}

.ClassyCountdown-wrapper .ClassyCountdown-label {
    font-family: 'Dancing Script', cursive !important;
    font-size: 1.4rem !important;
    color: #9A8B7A !important;
    text-transform: lowercase !important;
}

.ClassyCountdown-wrapper .ClassyCountdown-days,
.ClassyCountdown-wrapper .ClassyCountdown-hours,
.ClassyCountdown-wrapper .ClassyCountdown-minutes,
.ClassyCountdown-wrapper .ClassyCountdown-seconds {
    margin: 0 1rem;
}

/* Responsive para ClassyCountdown */
@media (max-width: 768px) {
    .ClassyCountdown-wrapper .ClassyCountdown-value {
        font-size: 2rem !important;
    }
    
    .ClassyCountdown-wrapper .ClassyCountdown-label {
        font-size: 1rem !important;
    }
    
    .ClassyCountdown-wrapper .ClassyCountdown-days,
    .ClassyCountdown-wrapper .ClassyCountdown-hours,
    .ClassyCountdown-wrapper .ClassyCountdown-minutes,
    .ClassyCountdown-wrapper .ClassyCountdown-seconds {
        margin: 0.5rem;
    }
}

/* Footer */
.footer-section {
    background: #a28e7abb;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive para el footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 1.5rem;
    }
    
    .footer-text {
        font-size: 14px;
    }
}

