/* Estilos específicos para la página de términos y condiciones */

.terms-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.terms-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

.terms-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.terms-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.terms-section .icon {
    color: var(--accent);
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.terms-section h2 {
    color: var(--accent);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.terms-section h3 {
    color: #444;
    font-size: 1.2em;
    margin: 20px 0 10px;
}

.terms-section h4 {
    color: #555;
    font-size: 1.1em;
    margin: 15px 0 10px;
}

.important-notice {
    background: var(--red-soft);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--accent);
}

.important-notice p {
    margin: 0;
}

.alert-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.alert-box h4 {
    color: #856404;
    margin-top: 0;
}

.payment-options ul {
    list-style: none;
    padding: 0;
}

.payment-options ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.payment-options ul li i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
}

.confirmation-process ol {
    padding-left: 20px;
}

.confirmation-process ol li {
    margin: 10px 0;
    padding-left: 10px;
}

.cancellation-policy ul li {
    margin: 10px 0;
}

.cancellation-policy ul ul {
    margin: 10px 0 10px 20px;
}

.refund-process {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.terms-contact {
    background: var(--red-soft);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.terms-contact h2 {
    color: var(--accent);
    margin-bottom: 20px;
}

.terms-contact ul {
    list-style: none;
    padding: 0;
}

.terms-contact ul li {
    margin: 10px 0;
    font-size: 1.1em;
}

.terms-update {
    text-align: center;
    color: #666;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.disclaimer {
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .terms-content {
        gap: 20px;
    }

    .terms-section {
        padding: 20px;
    }

    .terms-section h2 {
        font-size: 1.3em;
    }

    .terms-contact {
        padding: 20px;
    }

    .important-notice,
    .alert-box {
        padding: 12px;
    }
}

/* Animaciones */
.terms-section {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.terms-section:nth-child(1) { animation-delay: 0.1s; }
.terms-section:nth-child(2) { animation-delay: 0.2s; }
.terms-section:nth-child(3) { animation-delay: 0.3s; }
.terms-section:nth-child(4) { animation-delay: 0.4s; }
.terms-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}