/* css/terminos-condiciones.css - Estilos específicos de terminos-condiciones.html */
.terminos-header {
    background-color: #013836;
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.terminos-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.terminos-header .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.terminos-content {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.terminos-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-institucional {
    background-color: #f9f5f2;
    border-left: 4px solid #8d4c2c;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.info-institucional h3 {
    color: #013836;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-institucional p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.terminos-section {
    margin-bottom: 40px;
}

.terminos-section h2 {
    color: #013836;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(141, 76, 44, 0.3);
}

.terminos-section h3 {
    color: #8d4c2c;
    font-size: 1.3rem;
    margin: 25px 0 10px;
}

.terminos-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.terminos-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terminos-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contacto-section {
    background-color: #013836;
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contacto-section h3 {
    color: white;
    margin-bottom: 15px;
}

.btn-volver {
    background-color: #8d4c2c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-volver:hover {
    background-color: #013836;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .terminos-header {
        padding: 60px 0 30px;
    }
    .terminos-header h1 {
        font-size: 2rem;
    }
    .terminos-content {
        padding: 40px 0;
    }
    .terminos-container {
        padding: 30px 20px;
    }
    .terminos-section h2 {
        font-size: 1.5rem;
    }
}