/**
  @license Copyleft
  @copyright MetodologIA
  @author Javier Montaño
  @technology Antigravity | GoogleAI Studio | Gemini 3 Pro | Gemini 3 Flash
  @poweredBy Pristino Agent
 */

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Terms & Privacy)
   ═══════════════════════════════════════════════════════════════ */

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 1000px; /* Adjust as needed */
    transition: max-height 0.5s ease-in;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-btn[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

/* Breadcrumbs local styles */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.breadcrumb-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--brand-gold-dark);
}

.breadcrumb-separator {
    color: #64748b;
    font-size: 0.65rem;
}

.breadcrumb-current {
    color: #e2e8f0;
    font-weight: 500;
}
