/*
|--------------------------------------------------------------------------
| ARQUIVO DE ESTILOS GERAIS UNIFICADO
|--------------------------------------------------------------------------
*/

/* ==================================== */
/* === ESTILOS GERAIS/UTILITÁRIOS === */
/* ==================================== */

/* Definições de cor baseadas no Tailwind (Hex Codes) */
:root {
    --color-primary: #0c4a6e; /* btn-primary (Azul marinho forte) */
    --color-secondary: #1d4ed8; /* blue-600 */
    --color-accent: #0e7490; /* cian-700/blue-500 (Hover/Títulos) */
    --color-bg-light: #f9fafb; /* gray-50 */
    --color-bg-blue: #eff6ff; /* blue-50 */
    --color-text-dark: #1f2937; /* gray-800 */
    --color-text-light: #4b5563; /* gray-600 */
    --color-text-700: #374151; /* gray-700 */
    --color-success: #10b981; /* green-500 */
    --color-warning: #f97316; /* orange-500 */
    --color-error: #ef4444; /* red-500 */
    --color-cyan: #06b6d4; /* cyan-500 */
    --color-blue-800: #1e40af; /* blue-800 */
    --color-cyan-tabela: #0d9488; /* cyan-700 usado em títulos de programação */
    --color-forum-title: #0B7F8C; /* Título principal do Fórum */
}

/* Reset Básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* Tipo de letra e cor de fundo global */
.body-base {
    color: var(--color-text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.body-bg-light {
    background-color: var(--color-bg-light); /* bg-gray-50 */
}

/* Container de Largura Fixa e Centralização */
.container-main {
    max-width: 1280px; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
}


/* ==================================== */
/* ============= BOTÕES ============= */
/* ==================================== */

/* Botão Principal/CTA */
.btn-primary {
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    display: inline-block;
    color: white; /* text-white */
    font-weight: 700; /* font-bold */
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    transform: none;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: scale(1.03);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Botão de Inscrição (Index) */
.btn-cta {
    font-size: 1.25rem; /* text-xl */
    padding: 0.75rem 2.5rem; /* px-10 py-3 */
    margin-right: 1rem; /* Ajustado para espaçamento lateral */
}

/* Botão Final CTA (Index) */
.btn-final-cta {
    font-size: 1.5rem; /* text-2xl */
    padding: 1rem 3rem; /* px-12 py-4 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    border-radius: 9999px;
}

/* Botão Secundário (Ver Localização - Index) */
.btn-secondary {
    display: inline-block;
    margin-top: 1rem; /* mt-4 (para mobile) */
    background-color: #6b7280; /* bg-gray-500 */
    color: white; /* text-white */
    font-weight: 500; /* font-medium */
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05); /* shadow-md */
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4b5563; /* hover:bg-gray-600 */
}

/* Agrupamento de Botões (Index) */
.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .btn-secondary {
        margin-top: 0;
    }
}

/* Botão de Formulário (Inscricao) */
.btn-submit {
    background-color: var(--color-primary); /* Azul marinho */
    transition: background-color 0.3s ease;
}
.btn-submit:hover {
    background-color: var(--color-accent); /* Ciano/Azul claro */
}

.btn-form-submit {
    width: 100%;
    color: white;
    font-size: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.btn-form-submit:hover {
    transform: scale(1.01);
}


/* ==================================== */
/* ============= HEADER ============= */
/* ==================================== */

.header-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e5e7eb;
    background-color: white;
}

.header-inner {
    max-width: 1280px;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-img {
    max-height: 80px;
}
@media (min-width: 768px) {
    .logo-img {
        max-height: 96px;
    }
}

/* Estilos específicos da página de Inscrição (Com seta de voltar) */
.header-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: scale(1.05);
}

.back-icon {
    height: 1.75rem;
    width: 1.75rem;
    color: var(--color-blue-800);
    transition: color 0.3s ease;
}

.back-link:hover .back-icon {
    color: #06b6d4; /* cyan-600 */
}

.logo-inscricao {
    max-height: 80px;
    object-fit: contain;
}
@media (min-width: 768px) {
    .logo-inscricao {
        max-height: 96px;
    }
}


/* ==================================== */
/* =========== HERO SECTION (Index) =========== */
/* ==================================== */

.section-hero {
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-inner {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--color-forum-title);
    margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Caixa de Informações (Data/Hora/Local) */
.info-box {
    font-size: 1.125rem;
    color: var(--color-text-700);
    font-weight: 500;
    margin-bottom: 2.5rem;
    background-color: var(--color-bg-blue);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #bfdbfe;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-icon {
    font-size: 1.25rem;
}
.icon-calendar { color: var(--color-secondary); }
.icon-time { color: #ec4899; }
.icon-location { color: var(--color-error); }

.info-text .font-bold {
    font-weight: 700;
}


/* ==================================== */
/* ========== OBJETIVOS SECTION (Index) ======= */
/* ==================================== */

.section-objectives {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-blue-800);
    text-align: center;
    margin-bottom: 3rem;
}

.grid-objectives {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .grid-objectives {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-objectives {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Cartões de Objetivo */
.card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-top-width: 4px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Cores das Bordas Superiores */
.card-cyan { border-top-color: var(--color-cyan); }
.card-green { border-top-color: var(--color-success); }
.card-orange { border-top-color: var(--color-warning); }
.card-red { border-top-color: var(--color-error); }

.card-icon {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
    display: block;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.card-text {
    color: var(--color-text-light);
    font-size: 0.875rem;
}


/* ==================================== */
/* ========== PROGRAMAÇÃO SECTION (Index) ===== */
/* ==================================== */

.section-programacao {
    background-color: #E6F3F5;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-programacao .section-title {
    margin-bottom: 2.5rem;
}

.grid-programacao {
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .grid-programacao {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.program-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cyan-tabela);
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--color-text-700);
    list-style: none;
    padding: 0;
}

.program-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-time {
    font-weight: 600;
}


/* ==================================== */
/* ========== FINAL CTA SECTION (Index) ======= */
/* ==================================== */

.section-final-cta {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section-title-cta {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-blue-800);
    margin-bottom: 1rem;
}

.text-cta {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}


/* ==================================== */
/* ============= FOOTER ============= */
/* ==================================== */

.footer-main {
    background-color: var(--color-blue-800);
    color: white;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.footer-text {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    min-height: 30px;
}

.footer-copy {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-margin-top {
    margin-top: 2.5rem; /* mt-10 (Usado na página de Lista) */
}


/* ==================================== */
/* =========== WHATSAPP FLOAT ========= */
/* ==================================== */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; /* bottom-6 */
    right: 1.5rem; /* right-6 */
    background-color: var(--color-success);
    color: white;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 50;
}

.whatsapp-float:hover {
    background-color: #059669; /* hover:bg-green-600 */
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 2rem;
    height: 2rem;
}

.float-inscricao {
    bottom: 6rem; /* bottom-24 (Afastado do rodapé na página de Inscrição) */
}


/* ==================================== */
/* =========== POPUP DE SUCESSO (Inscricao) ======= */
/* ==================================== */

.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.popup-hidden {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 24rem;
    width: 100%;
}

.popup-success {
    border-top: 8px solid var(--color-success);
}

.popup-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.popup-icon-inner {
    background-color: #d1fae5;
    color: #047857;
    border-radius: 9999px;
    padding: 1rem;
}

.popup-icon-svg {
    height: 2.5rem;
    width: 2.5rem;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 0.5rem;
}

.popup-text {
    color: var(--color-text-light);
    font-weight: 500;
}


/* ==================================== */
/* ========== FORMULÁRIO (Inscricao) ======== */
/* ==================================== */

.section-form-list {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1.5rem;
}

@media (min-width: 640px) {
    .section-form-list {
        padding: 2.5rem;
    }
}

.form-card-wrapper {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
}

.form-col-left {
    grid-column: span 12 / span 12;
    padding: 1.5rem;
}
@media (min-width: 768px) {
    .form-col-left {
        grid-column: span 8 / span 8;
        padding: 2.5rem;
    }
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-blue-800);
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Estilo para todos os campos de input/select */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

/* Estilo de Foco do Input */
.form-input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 2px var(--color-cyan);
}

/* Estilo para o Select (Dropdown) */
.form-select-styled {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="gray"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" fill-rule="evenodd"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em 1.5em;
    background-color: white;
}

.form-label {
    display: block;
    color: var(--color-text-700);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* Espaçador no grid */
.form-col-spacer {
    display: none;
}
@media (min-width: 640px) {
    .form-col-spacer {
        display: block;
    }
}

.form-submit-wrapper {
    padding-top: 1rem;
}
@media (min-width: 640px) {
    .form-submit-wrapper {
        grid-column: span 2 / span 2;
    }
}

.form-status-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-text-700);
}


/* ==================================== */
/* ============ CARROSSEL (Inscricao) ============= */
/* ==================================== */

.carousel-col-right {
    background-color: #f3f4f6;
    position: relative;
    overflow: hidden;
    grid-column: span 12 / span 12;
    display: none;
}
@media (min-width: 768px) {
    .carousel-col-right {
        grid-column: span 4 / span 4;
        display: block;
    }
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.carousel-img.img-visible {
    opacity: 1;
}

.carousel-dots-wrapper {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: white;
    border-radius: 9999px;
    transition: opacity 0.3s ease;
}

.dot-active {
    opacity: 1;
}

.dot-inactive {
    opacity: 0.5;
}


/* ==================================== */
/* =========== LISTA/TABELA (Ajustes Visuais) =========== */
/* ==================================== */

.section-list {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-lista-full {
    min-height: 100vh;
}

.section-list-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-blue-800);
    text-align: center;
}

.title-icon-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-icon {
    margin-right: 0.5rem;
    font-size: 2.25rem;
}

.section-list-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.tabela-wrapper {
    overflow-x-auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    background-color: white;
}

.tabela-main {
    min-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Ajuste 3: Cabeçalho da Tabela mais fino */
.tabela-header {
    background-color: var(--color-primary); /* Azul marinho */
    color: white;
}

.tabela-th {
    /* CORREÇÃO: Padding para deixar mais fino (py-3) */
    padding: 0.75rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-right: 1px solid #0a3d5b; /* Separador THs */

    /* Novo: Estilo para indicar que é clicável */
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background-color 0.2s;
}

.tabela-th:hover {
    background-color: #105980; /* Um tom ligeiramente mais claro no hover */
}

/* Ícone de ordenação (seta) */
.tabela-th .sort-icon {
    margin-left: 0.5rem;
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    fill: currentColor;
    opacity: 0.6;
}

.tabela-th.sorted-asc .sort-icon {
    transform: rotate(0deg);
    opacity: 1;
}

.tabela-th.sorted-desc .sort-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.tabela-th-start {
    border-top-left-radius: 1rem;
}

.tabela-th-end {
    border-top-right-radius: 1rem;
    border-right: none;
}

.th-width-25 {
    width: 25%; /* Usado na página de Lista */
}

.tabela-tbody {
    /* Sem borda externa aqui, as linhas terão a borda interna */
}

.tabela-row:nth-child(even) {
    background-color: #f9fafb;
}

/* Ajuste 2 e 4: Células do Corpo da Tabela (Linhas) */
.tabela-td {
    /* CORREÇÃO 2: Padding à esquerda para descolar o texto da borda */
    padding: 1rem 1.5rem; /* py-4 px-6 (Mantém a altura, adiciona padding lateral) */
    white-space: nowrap; /* whitespace-nowrap */
    font-size: 0.875rem; /* text-sm */
    color: #374151; /* CORREÇÃO 4: gray-700 (Letra mais escura) */
}

/* Seletor para a primeira coluna (Nome), que deve ser mais escura e negrito */
.tabela-row .tabela-td-nome {
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* gray-900 (Mais escura) */
}

.tabela-loading-message {
    text-align: center;
    padding: 1.5rem;
    color: #6b7280;
}

.tabela-status-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* Estilos para Badges (Usados no JS para a coluna 'Participante') */
.badge-base {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
    display: inline-flex; /* Garante que o padding funcione corretamente */
}
/* Cores dos Badges */
.badge-presidente { background-color: #fef3c7; color: #b45309; }
.badge-palestrante { background-color: #d1fae5; color: #065f46; }
.badge-visitante { background-color: #e0f2f1; color: #155e75; }


/* ==================================== */
/* ============ CAMPO PESQUISA (Ajustado) ======== */
/* ==================================== */

.search-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.search-input-container {
    position: relative;
    width: 100%;
    max-width: 28rem;
}

/* CORREÇÃO 1: Lupa Centralizada */
.search-icon-span {
    position: absolute;
    inset-y: 0;
    left: 0.5rem; /* Ajuste fino para centralizar melhor */
    display: flex;
    align-items: center;
    color: #9ca3af;
}

.search-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.search-input {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 2px var(--color-cyan);
}