/* CSS compartido para páginas legales: Términos y Condiciones + Política de Privacidad */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fef5ed;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
}

.logo-container img {
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #ff6f00;
}

.back-button {
    background-color: #ff6f00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #e65f00;
}

.main-content {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1 {
    color: #ff6f00;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.intro-text {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: justify;
    padding: 20px;
    background-color: #fef5ed;
    border-radius: 5px;
    border-left: 4px solid #ff6f00;
}

.version-info {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
    color: #666;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

h2 {
    color: #ff6f00;
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

h3 {
    color: #666;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin-bottom: 15px;
    margin-left: 30px;
}

li {
    margin-bottom: 8px;
}

.highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
}

.contact-info {
    margin-top: 50px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.contact-info h3 {
    color: #ff6f00;
    margin-bottom: 15px;
}

.footer {
    background-color: white;
    color: #333;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid #dee2e6;
    font-size: 12px;
}

.footer a {
    color: #ff6f00;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .main-content {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 20px 15px;
    }
}

/* Numeración de secciones */
.section-number {
    font-weight: 700;
    color: #ff6f00;
}

/* Alertas específicas para privacidad */
.privacy-warning {
    background-color: #fff3e0;
    border: 2px solid #ff8f00;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    color: #e65100;
}

.privacy-warning strong {
    color: #bf360c;
}