/* Variables CSS */
:root {
    /* Colores principales */
    --dark-navy: #0A1628;
    --navy: #1A2332;
    --light-navy: #2A3441;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    
    /* Degradados principales */
    /* Paleta alineada con la landing (Tailwind blue/purple/pink) */
    --gradient-primary: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%); /* blue-500 → purple-500 */
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); /* se mantiene para usos secundarios */
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-text: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%); /* texto gradiente como en index */
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Tipografía */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espaciado */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-navy);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Botones */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.button-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.button-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.button-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-accent);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Secciones */
.section-dark {
    background-color: var(--dark-navy);
    padding: var(--section-padding);
}

.section-light {
    background-color: var(--navy);
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Feature Section */
.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text {
    max-width: 600px;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Mockup */
.mockup-container {
    perspective: 1000px;
}

.mockup-screen {
    background: var(--light-navy);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27ca3f; }

.mockup-title {
    font-weight: 600;
    color: var(--white);
}

.mockup-content {
    padding: 2rem;
}

.mockup-invoice {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.invoice-header h4 {
    color: var(--white);
    margin: 0;
}

.verifactu-badge {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.invoice-details {
    margin-bottom: 1.5rem;
}

.invoice-line {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qr-code {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 4px;
    position: relative;
}

.qr-code::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--dark-navy);
    border-radius: 2px;
}

.qr-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Pricing */
.pricing-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

/* Subscription page adjustments */
.subscription-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.subscription-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    justify-items: center; /* center children horizontally */
    align-content: start; /* start content stack; card can be centered via margins */
    grid-template-areas:
      "header"
      "card"
      "info";
}

.subscription-header {
    text-align: center;
    margin-top: 0.5rem;
}

.subscription-container .subscription-header { grid-area: header; }
.subscription-container > .pricing-card { grid-area: card; }
.subscription-container .subscription-info { grid-area: info; }

.subscription-container .pricing-card {
    margin: 0 auto; /* center the plan card */
    box-shadow: var(--shadow-xl);
    max-width: 1100px; /* two-column layout (left payment, right checks) */
    align-self: start;
    overflow: visible; /* avoid clipping features content */
}

/* Fix price typography (markup uses .price .amount/.period) */
.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

/* Make primary CTA full width when requested */
.full-width { width: 100%; }

/* Subscription info grid styling */
.subscription-info h3 {
    text-align: center;
    color: var(--white);
    margin-top: 2rem;
}

.subscription-info { width: 100%; }

.subscription-info .info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.subscription-info .info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    min-height: 120px;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    line-height: 1.55;
    display: flex;
    flex-direction: column;
}

.subscription-info .info-item h4 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    line-height: 1.3;
}

.subscription-info .info-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.subscription-info { margin-top: 2.5rem; }

/* Pricing internals on subscription page */
.pricing-features ul {
    list-style: none;
    padding: 0 1.25rem;
    margin: 0 0 0.75rem 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 0.35rem;
}

.pricing-features li {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    white-space: normal;
    word-break: break-word;
}

.pricing-action { padding: 0 1.25rem 1rem; }
.pricing-footer { padding: 0 1.25rem 1.25rem; color: var(--text-muted); }

/* Center overall content inside section container */
.subscription-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px; /* narrower container for subscribe page */
}

/* Desktop layout: stack vertically (header → card → reasons) */
@media (min-width: 1000px) {
  .subscription-container {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .subscription-container .subscription-header { grid-column: 1; }
  .subscription-container .pricing-card { grid-column: 1; }
  .subscription-container .subscription-info {
    grid-column: 1;
    width: 100%;
    margin-top: 2rem; /* ensure spacing below CTA */
  }
}

/* Inside pricing card: 2 columns (left payment, right checks) */
@media (min-width: 700px) {
  .subscription-container .pricing-card {
    display: grid;
    grid-template-columns: 360px 1fr; /* left fixed, right flexible */
    column-gap: 2rem;
    align-items: start;
  }
  /* Left column container becomes transparent; children become grid items */
  .subscription-container .pricing-card .pricing-left { display: contents; }
  .subscription-container .pricing-card .pricing-left .pricing-header,
  .subscription-container .pricing-card .pricing-left .pricing-action,
  .subscription-container .pricing-card .pricing-left .pricing-footer { grid-column: 1; }
  .subscription-container .pricing-card .pricing-left .pricing-header {
    text-align: left;
    border-bottom: none;
    padding: 0.5rem 1rem 0.15rem;
  }
  .subscription-container .pricing-card .pricing-left .pricing-header h3 { margin-bottom: 0.35rem; }
  .subscription-container .pricing-card .pricing-left .price { margin: 0.05rem 0; display: flex; align-items: baseline; gap: 0.5rem; line-height: 1; }
  .subscription-container .pricing-card .pricing-left .pricing-action { padding: 0 1rem 0.5rem; margin-top: 0; }
  .subscription-container .pricing-card .pricing-left .pricing-footer { padding: 0 1rem 0.5rem; }

  /* Right column: checks span all rows */
  .subscription-container .pricing-card .pricing-features {
    grid-column: 2;
    grid-row: 1 / -1;
    padding: 1rem 1rem 1rem 1.25rem;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    align-self: stretch;
  }
  .subscription-container .pricing-card .pricing-features ul {
    grid-template-columns: 1fr; /* one column list on the right */
    row-gap: 0.45rem;
  }

  /* Pull CTA closer to price */
  .subscription-container .pricing-card .pricing-action { margin-top: 0; }
  .subscription-container .pricing-card .pricing-action .cta-button { margin-top: 0; }
}

/* Responsive: collapse info grid to 1 column on tablets/mobiles */
@media (max-width: 900px) {
    .subscription-info .info-grid { grid-template-columns: 1fr; }
}

/* Mobile: features list in a single column */
@media (max-width: 600px) {
  .pricing-features ul { grid-template-columns: 1fr; }
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding: 2rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.price {
    margin: 0.25rem 0; /* tighter spacing under price */
}

/* Reduce title spacing only inside subscription pricing card */
.subscription-container .pricing-card .pricing-header h3 { margin-bottom: 0.5rem; }

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-body {
    padding: 2rem;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.guarantee-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ */
.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.main-footer {
    background-color: var(--light-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .pricing-body {
        padding: 1.5rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.card {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Estilos para páginas legales, documentación y artículos */
.legal-page, .doc-page, .article-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content, .doc-section, .article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2, .doc-section h2, .article-content h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2:first-of-type, .doc-section h2:first-of-type, .article-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3, .doc-section h3, .article-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p, .doc-section p, .article-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol, .doc-section ul, .doc-section ol, .article-content ul, .article-content ol {
    color: var(--text-light);
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li, .doc-section li, .article-content li {
    margin-bottom: 0.5rem;
}

.legal-content a, .doc-section a, .article-content a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover, .doc-section a:hover, .article-content a:hover {
    color: #4facfe;
}

/* Estilos específicos para artículos de blog */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-category {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.article-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Article enhancements: TOC, callouts, pros/cons */
.toc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.toc h2 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.toc ul {
    margin: 0;
    padding-left: 1rem;
    list-style: none;
}

.toc li {
    margin: 0.5rem 0;
}

.toc a {
    color: #667eea;
    text-decoration: none;
}

.toc a:hover {
    color: #4facfe;
    text-decoration: underline;
}

.callout {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #8b5cf6; /* default accent */
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.callout .callout-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.callout-info { border-left-color: #3b82f6; }
.callout-success { border-left-color: #22c55e; }
.callout-warning { border-left-color: #f59e0b; }
.callout-danger { border-left-color: #ef4444; }

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .pros-cons { grid-template-columns: 1fr; }
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.pros h3, .cons h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pros ul, .cons ul {
    margin: 0.5rem 0 0.5rem 1.2rem;
}

.pros li, .cons li {
    margin: 0.35rem 0;
}

.breadcrumbs {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.breadcrumbs a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.steps {
    counter-reset: step;
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
}

.steps li {
    list-style: none;
    position: relative;
    padding-left: 2.5rem;
    margin: 1rem 0;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.article-content blockquote {
    border-left: 4px solid rgba(102, 126, 234, 0.7);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    margin: 1.25rem 0;
    border-radius: 6px;
}

/* Estilos para el blog */
.blog-page {
    padding: 120px 0 80px;
    background: var(--dark-navy);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.related-articles {
    margin: 3rem 0 1rem;
}

.related-articles h2 {
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.related-articles .blog-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin: 1rem 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    height: auto;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.blog-card-category {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.blog-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-readmore {
    color: #4facfe;
    transform: translateX(5px);
}

/* Tabla personalizada para artículos */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.custom-table th,
.custom-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-table th {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 600;
}

.custom-table td {
    color: var(--text-light);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

/* Responsive para páginas adicionales */
@media (max-width: 768px) {
    .legal-page, .doc-page, .article-page, .blog-page {
        padding: 100px 0 60px;
    }
    
    .legal-content, .doc-section, .article-content {
        padding: 0 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .article-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .custom-table {
        font-size: 0.9rem;
    }
    
    .custom-table th,
    .custom-table td {
        padding: 0.75rem 0.5rem;
    }
}


/* Estilos para la página de contacto */
.contact-page {
    padding: 120px 0 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-form-container h3, .contact-info-container h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.contact-form .form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-item p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float:before {
    content: "💬";
    font-size: 24px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-banner-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #667eea;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-float:before {
        font-size: 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

/* Authentication Pages */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-group small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.full-width {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* Dashboard Pages */
.dashboard-page, .account-page, .subscription-page, .success-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.dashboard-header, .account-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-grid, .account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-card, .account-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dashboard-card:hover, .account-card:hover {
    transform: translateY(-2px);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 1.5rem;
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

.status-cancelled, .status-expired {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.status-succeeded {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.status-failed {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* Subscription info */
.subscription-info, .subscription-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item, .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child, .detail-item:last-child {
    border-bottom: none;
}

.info-item label, .detail-item label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-item span, .detail-item span {
    color: var(--text-light);
    font-weight: 500;
}

/* Download section */
.download-info {
    text-align: center;
    margin-bottom: 2rem;
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-info h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.download-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Payment history */
.payments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-amount {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.payment-status {
    font-size: 0.8rem;
}

/* Support section */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-item h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.support-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.support-item a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
}

.support-item a:hover {
    text-decoration: underline;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* User info in header */
.user-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

.main-nav a.active {
    color: #667eea;
    font-weight: 600;
}

/* Subscription page specific */
.subscription-container {
    max-width: 800px;
    margin: 0 auto;
}

.subscription-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.subscription-info {
    margin-top: 3rem;
}

.subscription-info h3 {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Success page */
.success-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-icon, .error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.success-card h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

/* Success steps: number badge to the left of text */
.success-card .steps .step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.success-card .steps .step-number {
    flex-shrink: 0;
    margin-top: 2px; /* slight alignment with heading baseline */
}

.success-actions, .error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.success-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.success-info h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.success-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-info li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    .dashboard-grid, .account-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-actions, .success-actions, .error-actions {
        flex-direction: column;
    }
    
    .download-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
