@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
    box-sizing: border-box;
}
    *:focus {
        outline: none !important;
        box-shadow: none !important;
    }

html {
    scroll-behavior: smooth;
}
/* Estilo da barra de rolagem */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background-color: #9ca3af; /* cinza claro */
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #6b7280; /* cinza um pouco mais escuro */
    }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f9fafb;
    margin-bottom: 60px;
}
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
a {
    text-decoration: none;
}
.aa:hover {
    text-decoration: none;
    color: white;
}
html {
    position: relative;
    min-height: 100%;
}
.mb-15px{
    margin-bottom: -16px;
}
.text-orange-500 {
    color: #f97316;
    transition-duration: 200ms;
}
.bg-orange-500{
    background-color: #f97316;
}
.background-Orange {
    background: #f97316;
}
.background-Orange:hover{
    background: #f97316;
}
.border-yellow-200 {
    border-color: rgb(254 240 138);
}
.text-orange-500:hover {
    color: #ea580c !important; /* equivalent to text-orange-500 */
}
.text-orange-100 {
    color: #ffedd5;
}
.text-yellow-700{
    color: #A16207;
}
.text-yellow-600 {
    color: #ca8a04;
}
.bg-green-50 {
    background-color: #f0fdf4;
}
.text-green-800 {
    color: #166534;
}
.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-green-500 {
    color: rgb(34, 197, 94);
}
.text-green-600 {
    color: rgb(22 163 74);
}
.bg-green-500 {
    background-color: rgb(34, 197, 94);
}
.text-gray-400 {
    color: rgb(156,163,175 );
}
.text-blue-500 {
    color: rgb(59 130 246);
}
.text-blue-700 {
    color: #1d4ed8;
}
.text-green-500 {
    color: rgb(34 197 94);
}
.font-size-18 {
    font-size: 18px;
}
.font-size-14 {
    font-size: 14px;
}
.font-medium {
    font-weight: 500;
}
.mb-4-5 {
    margin-bottom: 2rem;
}
.Outline-inputs:focus {
    outline: solid .5px #f97316 !important;
}

.custom-btn-addGroup {
    background-color: #f97316;
    justify-content: center;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    padding: 0.315rem 0.75rem; /* equivalente a px-3 py-1.5 */
    font-size: 0.875rem; /* text-sm */
    gap: 0.375rem; /* gap-1.5 */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    text-decoration: none;
}
.custom-btn-addGroup:hover {
    background-color: #ea580c;
    box-shadow: 0 12px 20px -5px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.custom-btn-addGroup:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.5); /* foco laranja */
}
.custom-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    color: #4b5563; /* text-gray-600 */
    background-color: transparent;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem; /* text-sm */
    gap: 0.375rem;
    border: none;
}
.border-dark-opacity {
    border-top: .5px solid gray;
    width: 95%;
    margin: auto;
}
.custom-search-btn:hover {
    color: #111827; /* text-gray-900 */
    background-color: #f3f4f6; /* hover:bg-gray-100 */
}

    .custom-search-btn:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(107, 114, 128, 0.5); /* focus:ring-gray-500 */
    }
    .custom-menu-button {
    transition: background-color 0.2s ease;
    background-color: inherit;
    }

    .custom-menu-button:hover {
        background-color: #f3f4f6; /* cinza claro */
        border-radius: 0.5rem;
    }

.hero-bg {
    background: linear-gradient(to bottom right, #f97316, #ef4444, #facc15);
}

.pattern-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
}

.pulse-animation {
    animation: pulse 2s infinite;
}
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.text-purple {
    color: #8b5cf6;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    backdrop-filter: blur(4px);
}
/* Container do ícone */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}
/* Ícone MessageCircle */
.message-circle-icon {
    width: 40px;
    height: 40px;
    color: white;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.Hero-Section-first-p {
    font-size: 24px;
    color: rgba(255,220,220,1);
}

.Hero-Section-second-p {
    width: 100%;
    max-width: 50rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.Hero-Section-fourth-div {
    margin-top: 68px;
    padding-bottom: 5rem;
}
.Hero-Section-first-h1{
    font-size: 48px;
}
@media (max-width: 1024px) {
    html {
        font-size: 16px;
    }
    .Hero-Section-second-p {
        font-size: 18px;
    }
    .Hero-Section-first-p {
        font-size: 20px;
        color: #efd2d2;
    }
    .Hero-Section-first-h1 {
        font-size: 36px !important;
    }
    .Hero-Section-fourth-div {
        margin-top: 40px;
    }
}

.search-bar {
    max-width: 800px;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}
/* Evita conflitos com Bootstrap */
.search-bar .input-group {
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    transition: box-shadow .3s ease-in-out;
    background-color: white; /* Fundo branco para o input */
}

    .search-bar .input-group:hover,
    .search-bar .input-group:focus-within {
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    }

.search-bar .form-control,
.search-bar .form-select {
    padding: 1rem;
    font-size: 1rem;
}
select#language:focus, select#activity:focus, select#minRating:focus {
    border-color: #f97316;
    cursor: pointer;
}

.search-bar .input-group-text {
    border-radius: 0;
    padding: 0 1rem;
}

.search-bar .btn-warning {
    border-top-right-radius: .75rem;
    border-bottom-right-radius: .75rem;
    padding: 1rem 1.5rem;
    font-weight: 500;
    background-color: #f97316;
    border-color: white;
}
    .search-bar .btn-warning:hover {
        background-color: #ea580c;
    }

    #advancedFiltersToggle {
        font-size: .9rem;
    }

#advancedFiltersPanel {
    border-radius: .75rem;
}
.advancedFiltersToggleText {
    text-decoration: none;
    color: #f5f5f5;
    transition: all .2s ease-in-out;
}
.advancedFiltersToggleText:focus {
    color: #f5f5f5;
}
.advancedFiltersToggleText:hover {
    color: #f97316;
    cursor: pointer;
}

/* Container principal dos cartões */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 56rem;
    margin: 1rem auto;
}

@media (min-width: 1000px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 500px) {
    .stats-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Cartão base */
.stats-card {
    background-color: #fff;
    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);
    transition: all 0.3s ease;
    transform: translateY(0);
}

    .stats-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
        transform: translateY(-0.25rem);
    }

    /* Variações de cor */
    .stats-card.blue {
        background-color: #eff6ff;
    }

    .stats-card.green {
        background-color: #f0fdf4;
    }

    .stats-card.orange {
        background-color: #fff7ed;
    }

    .stats-card.purple {
        background-color: #faf5ff;
    }

/* Layout interno */
.stats-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stats-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4B5582;
    margin-bottom: 0.15rem;
}

.stats-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.stats-trend {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.stats-trend-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #059669;
}

.stats-trend-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.stats-icon-container {
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

    .stats-icon-container.blue {
        background-color: #3b82f6;
    }

    .stats-icon-container.green {
        background-color: limegreen;
    }

    .stats-icon-container.orange {
        background-color: #f97316;
    }

    .stats-icon-container.purple {
        background-color: #8b5cf6;
    }

.stats-icon {
    color: white;
    width: 24px;
    height: 24px;
}
.p4a {
    padding: 1.1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/***************************************/

/* Seção principal */
.categories-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.categories-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .categories-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .categories-container {
        padding: 0 2rem;
    }
}

/* Cabeçalho */
.categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.categories-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 39rem;
    margin: 0 auto;
}

/* Grid de categorias */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Cartão de categoria */
.category-card {
    position: relative;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    transform: translateY(0);
}

    .category-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
        transform: translateY(-0.25rem);
    }

    .category-card::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.05;
        transition: opacity 0.3s ease;
    }

    .category-card:hover::before {
        opacity: 0.1;
    }
    /* Cores de fundo */
    .category-card.blue::before {
        background-color: #3b82f6;
    }

    .category-card.green::before {
        background-color: #10b981;
    }

    .category-card.purple::before {
        background-color: #8b5cf6;
    }

    .category-card.pink::before {
        background-color: #ec4899;
    }

    .category-card.yellow::before {
        background-color: #f59e0b;
    }

    .category-card.indigo::before {
        background-color: #6366f1;
    }

    .category-card.red::before {
        background-color: #ef4444;
    }

    .category-card.teal::before {
        background-color: #14b8a6;
    }

.category-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon-container {
    transform: scale(1.1);
}

.category-icon-container.blue {
    background-color: #3b82f6;
}

.category-icon-container.green {
    background-color: #10b981;
}

.category-icon-container.purple {
    background-color: #8b5cf6;
}

.category-icon-container.pink {
    background-color: #ec4899;
}

.category-icon-container.yellow {
    background-color: #f59e0b;
}

.category-icon-container.indigo {
    background-color: #6366f1;
}

.category-icon-container.red {
    background-color: #ef4444;
}

.category-icon-container.teal {
    background-color: #14b8a6;
}

.category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: #ea580c;
}

.category-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
}

.activity-indicator {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hover-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(0.5rem);
    color: #ea580c;
}

.category-card:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

/*********************************/

/* Seção de grupos */
.grupos-secao {
    padding: 64px 0;
    background-color: white;
}

/* Grid de cartões */
.grupos-grade {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px ;
}

@media (min-width: 1024px) {
    .grupos-grade {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cartão de grupo */
.grupos-cartao {
    background: white;
    border-radius: 12px ;
    border: 1px  solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

    .grupos-cartao:hover {
        box-shadow: 0 25px  50px  -12px  rgba(0, 0, 0, 0.25);
        transform: translateY(-8px );
    }

/* Cabeçalho do cartão */
.cartao-topo {
    position: relative;
    padding: 24px ;
    padding-bottom: 16px ;
}

/* Badge Premium */
.cartao-premium {
    position: absolute;
    top: 24px ;
    right: 16px ;
    background: linear-gradient(to right, #f59e0b, #f97316);
    color: white;
    padding: 4px  8px ;
    border-radius: 9999px;
    font-size: 12px ;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px ;
}

/* Badge de categoria */
.cartao-categoria {
    display: inline-flex;
    align-items: center;
    padding: 4px  12px ;
    border-radius: 9999px;
    font-size: 12px ;
    font-weight: 500;
    color: white;
    margin-bottom: 12px ;
}

.categoria-negocios {
    background-color: #3b82f6;
}

.categoria-empregos {
    background-color: #A855F7;
}

.categoria-educacao {
    background-color: #10b981;
}

.categoria-entretenimento {
    background-color: #ec4899;
}

/* Nome do grupo */
.cartao-nome {
    font-size: 20px ;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px ;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grupos-cartao:hover .cartao-nome {
    color: #ea580c;
}

/* Descrição */
.cartao-descricao {
    color: #4b5563;
    font-size: 14px ;
    margin-bottom: 16px ;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

/* Rating */
.cartao-avaliacao {
    display: flex;
    align-items: center;
    gap: 8px ;
    margin-bottom: 16px ;
}

.avaliacao-estrelas {
    display: flex;
    align-items: center;
    gap: 4px ;
}

.estrela-cheia {
    color: #fbbf24;
    width: 14px ;
    height: 14px ;
}

.estrela-metade {
    color: #fbbf24;
    opacity: 0.5;
    width: 14px ;
    height: 14px ;
}

.avaliacao-texto {
    font-size: 14px ;
    font-weight: 500;
    color: #374151;
}

.avaliacao-contagem {
    font-size: 12px ;
    color: #6b7280;
}

/* Estatísticas */
.cartao-estatisticas {
    padding: 0 24px ;
    padding-bottom: 16px ;
}

.estatisticas-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
}

.estatistica-item {
    display: flex;
    align-items: center;
    gap: 8px ;
}

.icone-usuarios {
    color: #3b82f6;
}

.icone-calendario {
    color: #10b981;
}

/* Tags */
.cartao-tags {
    padding: 0 24px;
    padding-bottom: 16px;
}

.tags-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    padding: 4px 8px;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    border-radius: 9999px;
}

/* Rodapé do cartão */
.cartao-rodape {
    padding: 16px 24px;
    background-color: #f9fafb;
    border-top: 1px solid #f3f4f6;
}

.rodape-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.moderador-info {
    font-size: 12px;
    color: #6b7280;
}

/* Botão Entrar */
.botao-entrar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
    background-color: #f97316;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    gap: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .botao-entrar:hover {
        background-color: #c2410c;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.grupos-cartao:hover .botao-entrar {
    transform: scale(1.05);
}

/* Indicador de atividade */
.indicador-ativo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.barra-ativa {
    height: 100%;
    background-color: #4ade80;
    width: 100%;
}

/* Botões da seção */
.botao-ver-todos {
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
    border: 2px solid #f97316;
    color: #f97316;
    padding: 8px 16px;
    font-size: 16px;
    gap: 8px;
    background: transparent;
}

    .botao-ver-todos:hover {
        background-color: #f97316;
        color: white;
    }

@media (min-width: 640px) {
    .botao-ver-todos {
        display: inline-flex;
    }
}

/* Botão mobile */
.botao-mobile {
    text-align: center;
    margin-top: 48px;
}

.botao-mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
    background-color: #ea580c;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .botao-mobile-link:hover {
        background-color: #c2410c;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

@media (min-width: 640px) {
    .botao-mobile {
        display: none;
    }
}

/* Utilitários */
.flex-center {
    display: flex;
    align-items: center;
}

.gap-3 {
    gap: 12px;
}

.gap-2 {
    gap: 8px;
}

.gap-1 {
    gap: 4px;
}

/************NEWSLETTER*********************/

/* Seção Newsletter */
.newsletter-section {
    padding: 4rem 0;
    margin-bottom: -16px;
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .newsletter-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .newsletter-container {
        padding: 0 2rem;
    }
}

/* Ícone de email */
.newsletter-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: #bfdbfe;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Título */
.newsletter-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .newsletter-title {
        font-size: 2.25rem;
    }
}

/* Descrição */
.newsletter-description {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Formulário */
.newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .form-container {
        flex-direction: row;
    }
}

/* Campo de email */
.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #111827;
    background-color: white;
    border: none;
    outline: none;
    transition: all 0.2s ease;
    animation: fadeIn 0.6s ease-out;
}

    .email-input::placeholder {
        color: #6b7280;
    }

    .email-input:focus {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    }

/* Texto de disclaimer */
.disclaimer-text {
    font-size: 0.875rem;
    color: #bfdbfe;
    margin-top: 1rem;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsividade adicional */
@media (max-width: 639px) {
    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-description {
        font-size: 1rem;
    }

    .subscribe-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/****************FOOTER LAYOUT********************************/

.footer-bg {
    background-color: rgb(17,24,39);
}
.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    color: #f97316;
    width: 32px;
    height: 32px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.social-icon {
    background-color: #1f2937;
    border-radius: 0.5rem;
    padding: 5.3px 8px;
    transition: all 0.2s ease;
    color: white;
}

    .social-icon:hover {
        background-color: #f97316;
        color: white;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

.section-title-Footer {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.75rem;
}

    .footer-link:hover {
        color: #f97316;
    }

.contact-item {
    color: #9ca3af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    color: #f97316;
    width: 18px;
    height: 18px;
}

.footer-divider {
    border-top: 1px solid #1f2937;
    margin-top: 3rem;
    padding-top: 2rem;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-bottom-link:hover {
        color: #f97316;
    }

/*********************Register e LOGIN SECTION*********************************/

.login-section-unique, .register-section-unique {
    width: 98%;
    max-width: 28rem;
    margin: auto;
    margin-top: 125px;
}
.register-section-unique {
    margin-top: 60px;
}
.login-section-first-link, .register-section-first-link,
.section-first-link-back {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.login-section-first-link:hover, .register-section-first-link:hover,
.login-section-first-link:focus, .register-section-first-link:hover, .section-first-link-back:hover{
     color: #f7f0f0;
}
.login-section-Entrar, .register-section-Entrar {
    color: rgb(17,24,39);
    font-size: 1.5rem;
    font-weight: 700;
}

.input-form-input {
    width: 100%; /* w-full */
    padding: 0.75rem 1rem 0.75rem 2.3rem; /* pl-10 pr-4 py-3 */
    border: 1px solid; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    outline: none;
    transition: all 0.2s ease;
    border-color: rgb(205 205 205 / 77%);
}
.hover-custom-btn-showhide {
    right: 10px;
    top: 12px;
}
.hover-custom-btn-showhide:hover{
    color: #4b5563 !important;
}
.text-orange-500-esqueceu-senha {
    color: #f97316;
    transition-duration: 200ms;
}
.text-orange-500-esqueceu-senha:hover {
    color: #ea580c;
}
.hover-transform-button-entrar {
    background-color: #f97316;
    border: none;
    transition: all 0.2s ease;
    padding-bottom: 12px;
    padding-top: 12px;
}
.hover-transform-button-entrar:hover{
    transform: translateY(-2px); /* hover:-translate-y-0.5 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important; 
    background-color: #ea580c;
}
.hover-transform-button-entrar:focus {
    box-shadow: 0 0 0 2px #f97316, 0 0 0 4px rgba(249, 115, 22, 0.2) !important;
}
.eye-icon:hover, .eye-off-icon:hover {
    color: #4b5563;
}

/*************ABOUT  CSHTML****************/
/* Gradiente Header */
.header-gradient {
    background: linear-gradient(to bottom right,#B43B30, #B74C19, #B84621);
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}
.bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    background-color: #f97316;
}
.vision-section {
    background-color: #eff6ff;
}

/*************CONTACT  CSHTML****************/

.contact-header {
    background: linear-gradient(to right, #f97316, #dc2626);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

    .contact-header svg {
        animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Content */
.contact-content {
    padding: 2rem;
}

.contact-grid {
    gap: 3rem;
}

@media (min-width: 992px) {
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/***********Categories CSHTML************/
.search-bar-Categories {
    max-width: 600px;
}
.category-grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(233px, 1fr));
    gap: 1.5rem;
    padding: 0 15px;
    margin: 0 auto;
}
@media only screen and (max-width: 430px){
    .category-grid-categories {
        padding: 0 35px;
        margin-left: 10px;
    }
}
@media only screen and (max-width: 320px){
    .category-grid-categories {
        padding: 0 10px;
    }
}

.category-card-categories {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 254px;
}

    .category-card-categories:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
.btn-view {
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
}

    .btn-view:hover {
        opacity: 0.85;
        color: #fff;
        transform: translateY(-2px); /* hover:-translate-y-0.5 */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
        background-color: #ea580c;
    }
.category-icon-Categories {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

    .category-icon-Categories svg {
        width: 100%;
        height: 100%;
        color: black;
    }

.category-name-Categories {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

.category-description {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
}
/* Garante que o botão sempre vá para o final */
.category-card-categories .btn-view {
    margin-top: auto;
}
/*****Group CSHTML******/
.group-card-group {
    border-radius: 12px;
    transition: transform 0.2s;
}

    .group-card-group:hover {
        transform: translateY(-4px);
    }

    .group-card-group img {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        object-fit: cover;
        height: 180px;
    }
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(271px, 1fr));
    gap: 0.5rem;
    padding: 0 8px;
}

.group-card {
    background: #fff;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .group-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    /* Área fixa da imagem */
    .group-card img,
    .group-card .group-card-placeholder {
        width: 100%;
        height: 180px; /* altura fixa */
        object-fit: cover;
        border-bottom: 1px solid #eee;
        padding: 10px;
    }

/* Placeholder */
.group-card-placeholder {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

/* Conteúdo */
.group-card-body {
    padding: 0.5rem 0.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.group-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.group-card-desc {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.5rem;
}

.group-card-category {
    font-size: 0.8rem;
    color: #777;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: left;
}

/* Botão */
.group-card .btn-view {
    margin-top: auto;
}

/******************Modal Adicionar Grupo*********************/
.outline-f9fafb:focus {
    outline: .4px solid #f97316 !important;
}
.form-control-Categories-Add-grupo {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#previewImagem {
    margin-top: 15px;
    max-width: 300px;
    max-height: 300px;
    border: 1px solid darkgray;
    display: none;
}
/****************************************/
.text-decoration-underline-Confirm:hover {
    text-decoration: underline;
    color: #f97316;
}
/************************Auth CSHTML *************************/
.custom-btn-addGroup-LayoutAuth {
    background-color: white;
    justify-content: center;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    padding: 0.315rem 0.75rem;
    font-size: 0.875rem;
    gap: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin: auto;
    cursor: pointer;
}
.custom-btn-addGroup-LayoutAuth:hover {
    background-color: #e9e7e7;
    box-shadow: 0 12px 20px -5px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
/**Classificações de ESTRELAS*/
.rating-container .stars {
    direction: rtl; /* Inverte ordem para facilitar clique */
}

.rating-container input[type="radio"] {
    display: none;
}

.rating-container label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

    .rating-container input[type="radio"]:checked ~ label,
    .rating-container label:hover,
    .rating-container label:hover ~ label {
        color: #ffc107; /* amarelo */
    }
/**FINAL Classificações de ESTRELAS*/

/* All the Features Min|Max responsive */
@media (max-width: 344px) {
    .divMenuLayouth {
        display: flex;
        align-items: center;
        justify-content: center !important;
    }
}
/* All the Features Min|Max responsive */


/* Footer */
.contact-footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
}

.contact-card {
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
}