body {
    background: linear-gradient(135deg, #E3FCEC, #FFFFFF);
    font-family: 'Outfit', sans-serif;
    color: #1F2937;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.98;
}

.container {
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}

.left {
    background: linear-gradient(135deg, #FB923C, #FDBA74);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.25));
}

.right {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0px 2px 6px rgba(16,185,129,0.25);
}

h1 {
    font-size: 34px;
    margin: 0 0 15px;
    color: #111827;
    font-weight: 700;
}

p {
    color: #6B7280;
    max-width: 550px;
    line-height: 1.7;
    font-size: 17px;
}

.extra-msg {
    margin-top: 25px;
    padding: 15px 20px;
    background: #F0FDF4;
    border-left: 6px solid #34D399;
    border-radius: 12px;
    font-size: 15px;
    color: #065F46;
}


/* ❄️ NIEVE NAVIDEÑA */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
    filter: blur(1px);
    animation-name: snowfall;
    animation-timing-function: linear;
}

@keyframes snowfall {
    to {
        transform: translateY(110vh);
        opacity: 0.3;
    }
}