/* Reset específico para nuestra sección navideña sutil */
.ns-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contenedor principal */
.ns-section {
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
}

.ns-container {
    width: 100%;
    max-width: 800px;
    position: relative;
}

/* Caja del mensaje */
.ns-message-box {
    background-color: white;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 220, 220, 0.3);
    position: relative;
    overflow: hidden;
}

.ns-message-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8b4513, #d4a76a, #8b4513);
}

/* Líneas decorativas */
.ns-decorative-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a76a, transparent);
    margin: 30px auto;
    width: 80%;
    opacity: 0.6;
}

/* Contenido */
.ns-content {
    position: relative;
    z-index: 2;
}

/* Título */
.ns-title {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.4;
}

.ns-title-line {
    display: block;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #8b4513;
}

.ns-title-sub {
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    color: #5d6d7e;
    font-style: italic;
}

/* Divisor */
.ns-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.ns-divider-line {
    height: 1px;
    width: 100px;
    background-color: #d4a76a;
    opacity: 0.4;
}

.ns-divider-icon {
    margin: 0 20px;
    color: #d4a76a;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Remitente */
.ns-sender {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #e0e0e0;
}

.ns-sender-label {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.ns-sender-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #8b4513;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.ns-sender-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a76a, transparent);
}

/* Decoraciones sutiles */
.ns-decoration {
    position: absolute;
    color: #d4a76a;
    opacity: 0.15;
    font-size: 1.8rem;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.ns-decoration:hover {
    opacity: 0.3;
}

.ns-dec-left-top {
    top: -20px;
    left: 20px;
}

.ns-dec-right-top {
    top: -20px;
    right: 20px;
}

.ns-dec-left-bottom {
    bottom: -20px;
    left: 20px;
}

.ns-dec-right-bottom {
    bottom: -20px;
    right: 20px;
}

/* Efectos de hover en la caja */
.ns-message-box:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .ns-message-box {
        padding: 40px 25px;
    }
    
    .ns-title-line {
        font-size: 2.5rem;
    }
    
    .ns-title-sub {
        font-size: 1.8rem;
    }
    
    .ns-sender-name {
        font-size: 2.2rem;
    }
    
    .ns-divider-line {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .ns-message-box {
        padding: 30px 20px;
    }
    
    .ns-title-line {
        font-size: 2rem;
    }
    
    .ns-title-sub {
        font-size: 1.5rem;
    }
    
    .ns-sender-name {
        font-size: 1.8rem;
    }
    
    .ns-decoration {
        font-size: 1.2rem;
    }
    
    .ns-dec-left-top, .ns-dec-right-top {
        top: -10px;
    }
    
    .ns-dec-left-bottom, .ns-dec-right-bottom {
        bottom: -10px;
    }
}