/* 
   ==========================================================================
   🎨 RECUERDA - DESIGN SYSTEM (OOCSS / Component-Based)
   Versão: 2.0 (Refatoração Inteligente)
   Descrição: Este arquivo centraliza a identidade visual do projeto usando 
   uma arquitetura de componentes reutilizáveis. O objetivo é evitar repetição
   e garantir que o site seja construído como um "Lego".
   ========================================================================== 
*/

:root {
    /* --- 🌈 PALETA DE CORES (OKLCH) ---
       Usamos OKLCH por ser o padrão mais moderno de cores, garantindo
       percepção de brilho constante e cores mais vivas. 
    */
    --color-primary-light: oklch(85% 0.12 195);
    --color-primary: oklch(75% 0.14 200);       
    --color-primary-dark: oklch(65% 0.15 205);
    
    /* Neutros & Superfícies */
    --bg-app: oklch(98% 0.01 200);             /* Fundo da página (off-white azulado) */
    --bg-surface: oklch(100% 0 0);             /* Fundo de cards e modais (branco puro) */
    
    /* Texto */
    --text-main: oklch(25% 0.05 230);          /* Azul escuro profundo para leitura */
    --text-muted: oklch(50% 0.04 230);         /* Cinza suave para legendas */
    --text-on-accent: oklch(100% 0 0);         /* Texto sobre botões coloridos */
    
    /* --- 🏗️ TOKENS DE DESIGN ---
       Estes tokens garantem que "a vibe" do site seja a mesma em todo lugar.
    */
    --gradient-blue: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    --shadow-sm: 0 2px 4px oklch(0% 0 0 / 5%);
    --shadow-md: 0 10px 20px oklch(0% 0 0 / 8%), 0 4px 6px oklch(0% 0 0 / 4%);
    --shadow-lg: 0 20px 40px oklch(0% 0 0 / 12%);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    /* --- 📏 FLUID TYPOGRAPHY ---
       O clamp() faz com que a fonte diminua no mobile e cresça no desktop 
       sem precisar de centenas de media queries.
    */
    --fs-h1: clamp(1.75rem, 5vw, 2.75rem);
    --fs-h2: clamp(1.35rem, 4vw, 2rem);
    --fs-h3: clamp(1.15rem, 3vw, 1.5rem);
    --fs-body: clamp(0.95rem, 1.5vw, 1.05rem);
}

/* ================= 0. RESET & BASE ================= 
   Limpando as margens padrões do navegador para termos controle total.
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-app);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: var(--fs-body);
    padding-bottom: 50px; 
}

/* ================= 1. TYPOGRAPHY & UTILS ================= 
   Aqui definimos o comportamento padrão das tags e utilitários de texto.
   Isso evita termos que criar classes para cada detalhe de texto.
*/

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.04em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-h3); }

p { margin-bottom: 1rem; color: var(--text-main); font-weight: 400; }
small { color: var(--text-muted); font-size: 0.8rem; }

/* Utilitários de Texto: Para ajustes rápidos no HTML */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--color-primary-dark); }
.text-sm { font-size: 0.85rem; }
.text-bold { font-weight: 800; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

/* Destaque com gradiente da marca */
.text-gradient-bold {
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 1px oklch(0% 0 0 / 2%));
    display: inline-block;
}

/* ================= 2. LAYOUT & SCAFFOLDING ================= 
   A "mágica" acontece aqui. Em vez de cada card ter seu flexbox, 
   usamos peças de Lego para montar o layout.
*/

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 2rem;
}

/* Utilitários de Flexbox: O fim da repetição de 'display: flex' */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1; }

.gap-xs { gap: 0.5rem; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2rem; }

/* Utilitários de Espaçamento */
.p-sm { padding: 1rem; }
.p-md { padding: 1.5rem; }
.p-lg { padding: 2.5rem; }
.p-0 { padding: 0; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }

/* SKELETON LOADING STATES */
.skeleton {
  background: var(--bg-muted);
  background: linear-gradient(
    110deg,
    oklch(0.95 0 0) 8%,
    oklch(0.9 0 0) 18%,
    oklch(0.95 0 0) 33%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: var(--radius-md);
  color: transparent !important;
  border: none !important;
  pointer-events: none;
}

.skeleton-circle {
  border-radius: 50% !important;
}

@keyframes shimmer {
  to {
    background-position-x: -200%;
  }
}

/* Controle de visibilidade para popups e elementos absolutos */
.overflow-visible { overflow: visible !important; }

/* Estruturas Base */
.section {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
}

.container {
    flex: 1 1 450px;
    max-width: 450px;
}

/* ================= 3. SURFACES & CARDS ================= 
   O coração visual do site. Quase tudo no Recuerda é um Card. 
   Aqui unificamos a "superfície" (fundo, sombra, borda).
*/

.card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid oklch(0% 0 0 / 5%);
    overflow: hidden; /* Garante que o conteúdo não vaze o arredondado */
    transition: var(--transition);
}

/* Modificadores de Card: Seguem a lógica do seu .btn */
.card-lg {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Card que reage ao mouse (usado em listas de memoriais) */
.card-interactive:hover {
    transform: translateY(-4px); /* Reduzido de -8px para -4px e removido o scale */
    box-shadow: var(--shadow-md); /* Sombra mais leve */
    border-color: oklch(0% 0 0 / 8%);
}

/* Card que reage lateralmente (usado em badges e opções) */
.card-interactive-sm:hover {
    transform: translateX(3px); /* Reduzido de 5px para 3px */
    border-color: var(--color-primary-light);
    background: oklch(from var(--bg-app) l c h / 50%); /* Mais sutil que o original */
}

/* Estrutura Interna de Cards: Padronização de cabeçalho e corpo */
.card-header {
    padding: 1.2rem 1.8rem;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: oklch(0% 0 0 / 2%);
    border-bottom: 2px solid oklch(0% 0 0 / 3%);
}

.card-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.card-footer {
    padding: 1.5rem 2.5rem;
    background: oklch(0% 0 0 / 2%);
    border-top: 1px solid oklch(0% 0 0 / 5%);
}

/* ================= 4. BUTTONS & PILLS ================= 
   Baseado exatamente no que você pediu: uma base (.btn) e variações.
*/

.btn {
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.1rem 2.4rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-shadow: 0 1px 2px oklch(0% 0 0 / 15%);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-on-accent);
    box-shadow: 0 10px 25px -5px oklch(75% 0.14 200 / 30%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -8px oklch(75% 0.14 200 / 40%);
    filter: brightness(1.05);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    text-shadow: none;
}

.btn-secondary:hover {
    background: oklch(75% 0.14 200 / 4%);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    text-shadow: none;
}

.btn-ghost:hover {
    background: var(--bg-app);
    color: var(--color-primary);
}

/* Botão Redondo de Ícone */
.btn-icon {
    width: 60px;
    height: 60px;
    padding: 0;
    background: var(--bg-surface);
    color: var(--color-primary);
    border: 2px solid oklch(0% 0 0 / 5%);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    cursor: pointer;
}

.btn-icon:hover {
    border-color: var(--color-primary);
    transform: rotate(5deg) scale(1.05);
}

/* Forçando o ícone interno do btn-icon a ser azul e ter o tamanho correto */
.btn-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(50%) sepia(90%) saturate(1500%) hue-rotate(160deg);
}

.btn-mini {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

/* Pills / Tags */
.pill-tag {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: var(--gradient-blue);
    color: var(--text-on-accent);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 20px -5px oklch(75% 0.14 200 / 30%);
    text-shadow: 0 1px 2px oklch(0% 0 0 / 20%);
}

/* ================= 5. FORMS & INPUTS ================= 
   Padronização de todos os campos de entrada do site.
*/

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    padding-left: 0.5rem;
}

.input {
    font-family: inherit;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid oklch(0% 0 0 / 8%);
    background: var(--bg-app);
    transition: var(--transition);
    outline: none;
    color: var(--text-main);
    width: 100%;
}

.input:focus {
    border-color: var(--color-primary);
    background: var(--bg-surface);
    box-shadow: 0 10px 20px -10px oklch(75% 0.14 200 / 15%);
}

/* Custom Radio Option Card (Usado no Wizard) 
   Aqui combinamos a classe .card com lógica de formulário.
*/
.option-item {
    position: relative;
    cursor: pointer;
    display: flex;
}

.option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Quando o rádio é selecionado, o card pai muda de cor */
.option-input:checked + .card {
    border-color: var(--color-primary);
    background: oklch(75% 0.14 200 / 6%);
    color: var(--color-primary-dark);
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid oklch(0% 0 0 / 15%);
    border-radius: 50%;
    transition: var(--transition);
    background: var(--bg-surface);
    flex-shrink: 0;
}

.option-input:checked + .card .radio-circle {
    border-color: var(--color-primary);
    border-width: 6px;
}

/* ================= 6. ICONS ================= 
   Sistema de normalização de ícones. 
   Permite colorir qualquer SVG via filtro CSS.
*/

.ico {
    transition: var(--transition);
    display: inline-block;
}

.ico-sm { width: 18px; height: 18px; }
.ico-md { width: 24px; height: 24px; }
.ico-lg { width: 32px; height: 32px; }

.ico-gray { filter: brightness(0) invert(0.5); }
.ico-white { filter: brightness(0) invert(1); }
.ico-dark { filter: brightness(0); }
.ico-primary { filter: brightness(0) invert(50%) sepia(90%) saturate(1500%) hue-rotate(160deg); }

.badge-icon {
    font-size: 1.8rem;
}

/* ================= 7. TOGGLES E TABS ================= */

.tabs-container {
    background: var(--bg-app);
    padding: 0.4rem;
    border-radius: var(--radius-full);
    border: 1px solid oklch(0% 0 0 / 5%);
}

.tab-btn {
    flex: 1;
    padding: 0.6rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--bg-surface);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.switch {
    width: 50px;
    height: 28px;
    background: oklch(0% 0 0 / 10%);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px oklch(0% 0 0 / 10%);
}

.switch.on { background: var(--color-primary); }
.switch.on::after { left: 25px; }

/* ================= 8. SKELETON & LOADERS ================= */

.skeletonbox {
    background: linear-gradient(90deg, 
        oklch(0% 0 0 / 5%) 25%, 
        oklch(0% 0 0 / 10%) 50%, 
        oklch(0% 0 0 / 5%) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ================= 9. COMPONENTES ESPECÍFICOS ================= 
   Estilos que são muito únicos e não se repetem no site, 
   por isso não viraram componentes genéricos.
*/

.section-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.6;
}

.section-label::after {
    content: "";
    height: 1px;
    flex: 1;
    background: oklch(0% 0 0 / 8%);
}

.text-center .section-label {
    justify-content: center;
}

.text-center .section-label::before {
    content: "";
    height: 1px;
    flex: 1;
    background: oklch(0% 0 0 / 8%);
}

.recuerda-header {
    padding: clamp(2rem, 8vh, 5rem) 1.5rem;
    text-align: center;
    border-bottom: 1px solid oklch(0% 0 0 / 5%);
    margin-bottom: 3rem;
}

/* Hero Banner & Avatar */
.hero-banner {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    background: var(--gradient-blue);
    overflow: visible;
    margin-bottom: 4rem;
}

.avatar-overlap {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--bg-surface);
    background: oklch(90% 0 0);
    box-shadow: var(--shadow-md);
    background-image: url('https://i.pravatar.cc/150');
    background-size: cover;
    z-index: 10;
}

/* Progress Bar (Wizard) */
.progress-track {
    width: 100%;
    height: 8px;
    background: oklch(0% 0 0 / 5%);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-blue);
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

/* Timeline (Milestones) */
.timeline-preview {
    border-left: 2px dashed oklch(0% 0 0 / 10%);
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border: 4px solid var(--bg-surface);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 2px oklch(75% 0.14 200 / 20%);
}

/* Edição Inline (Popups) */
.editable-text {
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    border: 2px dashed transparent;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.editable-text:hover {
    border-color: oklch(0% 0 0 / 15%);
    background: var(--bg-app);
}

.editable-text::after {
    content: "✏️";
    opacity: 0;
    transition: var(--transition);
    font-size: 0.8rem;
}

.editable-text:hover::after { opacity: 1; }

.inline-edit-popup {
    position: absolute;
    z-index: 50;
    top: -12px !important;
    left: -12px !important;
    width: calc(100% + 24px) !important;
}

/* FAB (Floating Action Button) */
.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: white;
    border: none;
    box-shadow: 0 10px 20px -5px oklch(75% 0.14 200 / 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px -5px oklch(75% 0.14 200 / 50%);
}

/* Barra de Busca do Dashboard */
.search-bar {
    border-radius: var(--radius-full);
}
.search-bar input {
    border: none;
    background: transparent;
    padding: 0.5rem;
}
.search-bar input:focus {
    box-shadow: none;
}

/* Documentação: Swatches de Cor */
.swatch-item {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    border: 2px solid var(--bg-app);
    box-shadow: var(--shadow-sm);
}

#color-primary { background-color: var(--color-primary); }
#color-primary-end { background-color: var(--color-primary-light); }
#color-dark { background-color: var(--text-main); }
#color-light { background-color: var(--bg-app); }
#color-surface { background-color: var(--bg-surface); }
#color-accent { background-color: var(--color-primary-dark); }

/* ================= 10. NAVBAR & RESPONSIVIDADE ================= */

.main-nav {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    display: flex;
    justify-content: center;
    pointer-events: none;
    bottom: 0;
}

.nav-content {
    pointer-events: auto;
    background: oklch(100% 0 0 / 80%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid oklch(100% 0 0 / 40%);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-full);
    width: 100%;
    max-width: 900px;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.nav-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
    display: none;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

/* Container de Links da Nav */
.nav-links {
    display: flex;
    gap: 0.4rem;
    flex: 1;
    justify-content: space-around; /* Distribuição igual no mobile */
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.6rem 0.4rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.nav-item img {
    width: 24px;
    filter: grayscale(1) opacity(0.4);
}

.nav-item:hover, 
.nav-item.active {
    color: var(--color-primary-dark);
}

.nav-item.active img {
    filter: invert(50%) sepia(90%) saturate(1500%) hue-rotate(160deg) opacity(1);
}

/* Ajustes para Desktop (Telas maiores que 900px) */
@media (min-width: 900px) {
    body {
        padding-top: 110px;
        padding-bottom: 0;
    }

    .main-nav {
        bottom: auto;
        top: 0;
        padding-top: 1.5rem;
    }
    
    .nav-content {
        padding: 0.7rem 2.5rem;
        gap: 4rem;
    }
    
    .nav-logo {
        display: block;
        flex-shrink: 0;
    }
    
    .nav-links {
        display: flex;
        flex-direction: row; /* Força horizontal no desktop */
        justify-content: flex-end; 
        gap: 1.2rem;
        flex: 1;
    }
    
    .nav-item {
        flex-direction: row;
        gap: 0.6rem;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        flex: none;
    }

    .nav-item img {
        width: 20px;
    }
}

/* Ajustes Mobile Específicos */
@media (max-width: 480px) {
    .recuerda-header { padding: 3rem 1rem; }
    .wrapper { padding: 0 1rem 5rem; gap: 1.5rem; }
}

@media (max-width: 767px) {
    /* Sobe o FAB no mobile para não cobrir a barra de navegação inferior */
    .fab { bottom: 85px; right: 1.5rem; }
}

/* ================= 11. LEGACY CLASSES (BACKWARDS COMPATIBILITY) ================= 
   Estas classes mantêm o site antigo funcionando até serem refatoradas.
*/
:root {
  --blue-start: var(--color-primary);
  --blue-end: var(--color-primary-light);
  --dark: var(--text-main);
  --light: var(--bg-app);
  --white: var(--bg-surface);
  --text: var(--text-main);
  --card-background: var(--bg-surface);
  --text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  --border: solid 1px var(--color-primary);
  --radius: 2rem;
  --max-width: 1200px;
  --space: 1.5rem;
  --font: "Quicksand", sans-serif;
}

.pill-text {
  background: var(--gradient-blue);
  color: var(--text-on-accent);
  width: fit-content;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.1em 1em;
  text-transform: capitalize;
}
.pill-text p {
  text-shadow: var(--text-shadow);
}
.title {
  text-transform: capitalize;
  max-width: 20ch;
}
.btn-var1 {
  background: var(--gradient-blue);
  color: var(--text-on-accent);
}
.btn-var2 {
  background-color: var(--bg-app);
  color: var(--color-primary);
}
.section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 3em 0;
  max-width: 90vw;
  margin: 0 auto;
  justify-content: center;
  gap: 3rem;
}
.section > * {
  flex: 1 1 20rem;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}
.container > * {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.icon {
  width: 2rem;
  filter: brightness(0) saturate(100%) invert(100%);
}
.icon-container {
  background-color: var(--color-primary);
  padding: 1rem;
  border-radius: var(--radius);
}
.highlighted-icon {
  filter: invert(51%) sepia(80%) saturate(2858%) hue-rotate(180deg) brightness(96%) contrast(91%);
}
.highlighted-icon-container {
  background-color: var(--bg-app);
}
.icon-cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.icon-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  padding: 2rem;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  width: 20rem;
}
.highlighted-card {
  background: var(--gradient-blue);
  color: var(--text-on-accent);
  text-shadow: var(--text-shadow);
}
