* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;
        }
        
        body {
            background-color: #faf7f5;
            color: #5a5a5a;
            overflow-x: hidden;
        }
        
        /* Encabezado con imagen de fondo */
        .header {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://source.unsplash.com/random/1600x900/?wedding') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .names {
            font-size: 5rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 1.5s forwards 0.5s;
        }
        
        .date {
            font-size: 1.5rem;
            letter-spacing: 3px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 1.5s forwards 1s;
        }
        
        /* Contador regresivo */
        .countdown {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
            opacity: 0;
            animation: fadeIn 1.5s forwards 1.5s;
        }
        
        .countdown-item {
            margin: 0 1rem;
            text-align: center;
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: bold;
            background: rgba(255, 255, 255, 0.2);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        /* Secciones */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            color: #d4af37;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #d4af37;
        }
        
        /* Historia */
        .story {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .story-item {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .story-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .story-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #d4af37;
        }
        
        /* Detalles de la boda */
        .details {
            background: linear-gradient(to right, #f9f9f9, #f1f1f1);
        }
        
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .detail-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .detail-card h3 {
            color: #d4af37;
            margin-bottom: 1rem;
        }
        
        /* Galería */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.9);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Formulario de confirmación */
        .rsvp {
            background: linear-gradient(to right, #f9f9f9, #f1f1f1);
            text-align: center;
        }
        
        .rsvp-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .btn {
            background: #d4af37;
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #c19b2e;
        }
        
        /* Footer */
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
        }
        
        /* Animaciones */
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Efectos de aparición al hacer scroll */
        .visible {
            animation: fadeIn 1s forwards;
        }
        
        .visible-scale {
            animation: fadeInScale 1s forwards;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .names {
                font-size: 3rem;
            }
            
            .countdown-number {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .section {
                padding: 3rem 1rem;
            }
        }