.sp-legal-page-section {
    background: #28282A;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin: 0 auto;
    animation: sp-fadeInUp 0.6s ease-out;
}

.sp-legal-main-title {
    text-align: center;
    color: #DBDBDB;
    font-size: 2.8em;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 3px solid #ff2c2c;
    padding-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sp-legal-update-info {
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
    margin-bottom: 30px;
    font-weight: 600;
    color: #DBDBDB;
}

.sp-legal-update-info p {
    margin: 0;
    text-align: center;
}

.sp-legal-content-wrapper {
    line-height: 1.8;
    color: #DBDBDB;
    font-size: 16px;
}

.sp-legal-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.sp-legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sp-legal-section-title {
    color: #ff2c2c;
    font-size: 1.8em;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
    font-weight: 600;
    position: relative;
}

.sp-legal-section-title::before {
    content: "•";
    color: #ff2c2c;
    margin-right: 10px;
    font-size: 1.2em;
}

.sp-legal-content-wrapper p {
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

.sp-legal-content-wrapper p:last-child {
    margin-bottom: 0;
}

.sp-legal-list {
    background: #1a1a1a;
    border-left: 4px solid #ff2c2c;
    padding: 25px 30px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
}

.sp-legal-list-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.sp-legal-list-item::before {
    content: "▸";
    color: #ff2c2c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sp-legal-list-item:last-child {
    margin-bottom: 0;
}

.sp-legal-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    font-weight: 600;
}

.sp-legal-link:hover {
    border-bottom: 1px solid #ff2c2c;
}

.sp-legal-link:focus {
    outline: 2px solid #ff2c2c;
    outline-offset: 2px;
    border-radius: 2px;
}

.sp-legal-highlight {
    color: #ff2c2c;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

@keyframes sp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para formulario de solicitudes */
.sp-contenedor-solicitudes {
    display: flex;
    gap: 20px;
    margin: 0 30px;
    max-width: 1600px;
    padding: 0 20px 0 0;
}

.sp-columna-formulario {
    flex: 0 0 50%;
}

.sp-columna-texto {
    flex: 0 0 50%;
}

.sp-formulario-solicitud {
    background: #28282A;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.sp-formulario-solicitud h2 {
    color: #DBDBDB;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
}

.sp-subtitulo {
    color: #aaa;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.sp-campo {
    margin-bottom: 20px;
}

.sp-campo label {
    display: block;
    color: #DBDBDB;
    margin-bottom: 8px;
    font-weight: 600;
}

.sp-campo select,
.sp-campo input {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #DBDBDB;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sp-campo select:focus,
.sp-campo input:focus {
    outline: none;
    border-color: #ff2c2c;
    box-shadow: 0 0 0 2px rgba(255, 44, 44, 0.2);
}

.sp-campo select option {
    background: #1a1a1a;
    color: #DBDBDB;
}

.sp-btn-suscribete {
    width: 100%;
    padding: 15px;
    background: #ff2c2c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-btn-suscribete:hover {
    background: #d82323;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 44, 44, 0.3);
}

.sp-btn-suscribete:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sp-btn-text {
    display: block;
}

.sp-btn-loading {
    display: none;
}

.sp-btn-suscribete.loading .sp-btn-text {
    display: none;
}

.sp-btn-suscribete.loading .sp-btn-loading {
    display: block;
}

#sp-mensaje-resultado {
    margin-top: 20px;
    min-height: 50px;
}

.sp-mensaje-exito,
.sp-mensaje-error,
.sp-mensaje-cargando {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    animation: sp-fadeIn 0.3s ease;
}

.sp-mensaje-exito {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    border-left: 4px solid #28a745;
}

.sp-mensaje-error {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border-left: 4px solid #dc3545;
}

.sp-mensaje-cargando {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
    border-left: 4px solid #ffc107;
}

@keyframes sp-fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sp-info-box {
    background: #28282A;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.sp-info-box h3 {
    color: #DBDBDB;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
}

.sp-paso {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.sp-paso:last-child {
    margin-bottom: 0;
}

.sp-numero {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #ff2c2c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.sp-contenido {
    flex: 1;
}

.sp-contenido strong {
    color: #DBDBDB;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.sp-contenido p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 10px;
}

.sp-contenido p:last-child {
    margin-bottom: 0;
}

/* Estilos para guía de descarga */
.sp-guia-descarga {
    background: #28282A;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin: 0 30px;
    max-width: 1600px;
    animation: sp-fadeInUp 0.6s ease-out;
}

.sp-guia-descarga h2 {
    color: #DBDBDB;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #ff2c2c;
    padding-bottom: 15px;
}

.sp-guia-descarga > p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.sp-guia-descarga > p:last-of-type {
    margin-bottom: 30px;
}

.sp-boton-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.sp-boton {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 200px;
    text-align: center;
    border: 2px solid transparent;
}

.sp-boton:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.sp-boton img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 10px;
}

.sp-boton-terabox {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

.sp-boton-terabox:hover {
    border-color: #6a11cb;
    background: linear-gradient(135deg, #5a0db5, #1c65e6);
}

.sp-boton-vlc {
    background: linear-gradient(135deg, #ff8800, #ff5500);
    color: white;
}

.sp-boton-vlc:hover {
    border-color: #ff8800;
    background: linear-gradient(135deg, #e67a00, #e64c00);
}

.sp-boton-winrar {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
}

.sp-boton-winrar:hover {
    border-color: #00b09b;
    background: linear-gradient(135deg, #009a87, #86b935);
}

.sp-consejos-box {
    background: #1a1a1a;
    border-left: 4px solid #ff2c2c;
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sp-consejos-box p {
    color: #DBDBDB;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05em;
}

.sp-consejos-box strong {
    color: #ff2c2c;
    font-size: 1.1em;
}

.sp-final {
    color: #aaa;
    font-style: italic;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 30px;
    line-height: 1.7;
}

/* Responsive para páginas */
@media (max-width: 768px) {
    .sp-legal-page-section {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .sp-legal-main-title {
        font-size: 2.2em;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    .sp-legal-section-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .sp-legal-content-wrapper {
        font-size: 15px;
    }
    
    .sp-legal-list {
        padding: 20px 25px;
    }
    
    .sp-legal-list-item {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .sp-legal-page-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .sp-legal-main-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    .sp-legal-section-title {
        font-size: 1.3em;
    }
    
    .sp-legal-list {
        padding: 15px 20px;
    }
    
    .sp-legal-list-item {
        padding-left: 18px;
    }
    
    .sp-legal-update-info {
        padding: 12px 15px;
    }
}

@media (max-width: 992px) {
    .sp-contenedor-solicitudes {
        flex-direction: column;
        gap: 30px;
    }
    
    .sp-columna-formulario,
    .sp-columna-texto {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .sp-contenedor-solicitudes {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .sp-formulario-solicitud,
    .sp-info-box {
        padding: 25px 20px;
    }
    
    .sp-formulario-solicitud h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .sp-contenedor-solicitudes {
        padding: 0 10px;
    }
    
    .sp-formulario-solicitud,
    .sp-info-box {
        padding: 20px 15px;
    }
    
    .sp-paso {
        gap: 15px;
    }
    
    .sp-numero {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .sp-boton-container {
        gap: 20px;
    }
    
    .sp-boton {
        width: 180px;
        padding: 18px 25px;
    }
}

@media (max-width: 768px) {
    .sp-guia-descarga {
        padding: 30px 25px;
        margin: 30px 20px;
    }
    
    .sp-guia-descarga h2 {
        font-size: 1.7em;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .sp-boton-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .sp-boton {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px 20px;
    }
    
    .sp-boton img {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .sp-consejos-box {
        padding: 20px 25px;
        margin: 30px 0;
    }
    
    .sp-final {
        padding: 15px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .sp-guia-descarga {
        padding: 25px 20px;
        margin: 20px 15px;
    }
    
    .sp-guia-descarga h2 {
        font-size: 1.5em;
    }
    
    .sp-boton {
        padding: 12px 15px;
    }
    
    .sp-boton img {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .sp-consejos-box {
        padding: 18px 22px;
    }
    
    .sp-consejos-box p {
        font-size: 1em;
    }
}