/* Estilos para páginas legales (Términos y Condiciones, Privacidad) */

.legal-section {
    background-color: #f7f3f0;
    background-image: url("images/paper-back.png");
    min-height: 70vh;
    padding: 40px 5%;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Header de la página legal */
.legal-header {
    background: linear-gradient(135deg, #2d5a3a 0%, #1a3d24 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.legal-title {
    font-family: 'MuseoSansRounded700', sans-serif;
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.legal-subtitle {
    font-family: 'MuseoSansRounded300', sans-serif;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Contenido principal */
.legal-content {
    padding: 50px 40px;
    font-family: 'MuseoSansRounded300', sans-serif;
    color: #333;
    line-height: 1.8;
}

.legal-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.legal-intro p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Bloques de sección */
.legal-section-block {
    margin-bottom: 40px;
}

.legal-section-title {
    font-family: 'MuseoSansRounded700', sans-serif;
    color: #2d5a3a;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #009d3d;
    display: inline-block;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
}

.legal-content strong {
    font-family: 'MuseoSansRounded700', sans-serif;
    color: #2d5a3a;
}

/* Listas */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
}

.legal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #009d3d;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Enlaces */
.legal-link {
    color: #009d3d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #2d5a3a;
    text-decoration: underline;
}

/* Nota al pie */
.legal-footer-note {
    margin-top: 50px;
    padding: 25px;
    background-color: #f0f7f0;
    border-left: 4px solid #009d3d;
    border-radius: 8px;
}

.legal-footer-note p {
    margin: 0;
    font-size: 0.95rem;
}

/* Botón de volver */
.legal-back-link {
    padding: 30px 40px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #009d3d 0%, #006c2a 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'MuseoSansRounded700', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 157, 61, 0.3);
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 157, 61, 0.4);
    color: #ffffff;
}

.btn-back i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 20px 3%;
    }

    .legal-container {
        border-radius: 10px;
    }

    .legal-header {
        padding: 35px 25px;
    }

    .legal-title {
        font-size: 1.6rem;
    }

    .legal-subtitle {
        font-size: 0.9rem;
    }

    .legal-content {
        padding: 30px 25px;
    }

    .legal-section-title {
        font-size: 1.3rem;
    }

    .legal-content p,
    .legal-list li {
        font-size: 0.95rem;
        text-align: left;
    }

    .legal-back-link {
        padding: 25px 20px;
    }

    .btn-back {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 1.4rem;
    }

    .legal-section-title {
        font-size: 1.2rem;
    }

    .legal-content {
        padding: 25px 20px;
    }
}
