/* Estilos para la página de Términos y Condiciones */
:root {
--primary: #2c3e50;
--secondary: #e74c3c;
--accent: #3498db;
--dark: #2c3e50;
--light: #ecf0f1;
--gray: #95a5a6;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}

body {
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}

.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

/* Header */
header {
background-color: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 20px 0;
position: sticky;
top: 0;
z-index: 100;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
text-decoration: none;
}

/* Breadcrumb */
.breadcrumb {
background-color: white;
padding: 15px 0;
border-bottom: 1px solid #eee;
}

.breadcrumb-content {
display: flex;
align-items: center;
gap: 10px;
}

.breadcrumb a {
color: var(--accent);
text-decoration: none;
}

.breadcrumb span {
color: var(--gray);
}

/* Terms Content */
.terms-content {
padding: 60px 0;
background: white;
}

.terms-section {
margin-bottom: 50px;
}

.terms-section h2 {
font-size: 1.8rem;
color: var(--primary);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--accent);
display: inline-block;
}

.terms-list {
list-style-type: none;
}

.terms-list li {
margin-bottom: 25px;
padding-left: 30px;
position: relative;
}

.terms-list li:before {
content: "•";
color: var(--accent);
font-size: 1.5rem;
position: absolute;
left: 0;
top: -5px;
}

.terms-list h3 {
font-size: 1.3rem;
color: var(--dark);
margin-bottom: 10px;
}

.terms-list p, .terms-list ul {
margin-bottom: 10px;
color: #555;
}

.terms-list ul {
list-style-type: none;
padding-left: 20px;
}

.terms-list ul li {
margin-bottom: 8px;
padding-left: 25px;
position: relative;
}

.terms-list ul li:before {
content: "-";
color: var(--accent);
position: absolute;
left: 0;
}

/* Last Updated */
.last-updated {
background-color: var(--light);
padding: 20px;
border-radius: 8px;
margin-top: 40px;
border-left: 4px solid var(--accent);
}

/* Footer */
footer {
background-color: var(--dark);
color: white;
padding: 40px 0;
text-align: center;
}

.footer-content {
display: flex;
flex-direction: column;
gap: 20px;
}

.footer-links {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }
    .header-content {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .terms-content {
        padding: 30px 0;
    }
    .terms-section h2 {
        font-size: 1.5rem;
    }
    .terms-list li,
    .terms-list ul li {
        padding-left: 15px;
    }
    .terms-hero h1 {
        font-size: 2.2rem;
    }
    footer {
        padding: 20px 0;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}




@media (max-width: 480px) {
.terms-section h2 {
    font-size: 1.2rem;
}

.terms-hero h1 {
    font-size: 1.5rem;
}
}
