/**
 * Via Permuta Landing Page - CSS Customizado
 * Design System: Laranja #f48c06, Amarelo #ffb703, Preto #000000
 * Complementa Tailwind CSS via CDN
 * Performance otimizada com CSS crítico inline no HTML
 */

/* ============================================================================
   1. VARIÁVEIS CSS - DESIGN SYSTEM
   ============================================================================ */

:root {
    /* Cores Primárias */
    --color-primary: #f48c06;
    --color-secondary: #ffb703;
    --color-dark: #000000;
    --color-darklight: #111111;
    --color-text: #ffffff;
    --color-textlight: #999999;
    --color-border: #222222;

    /* Espaçamento */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;

    /* Transições */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 0 20px rgba(244, 140, 6, 0.2);
}

/* ============================================================================
   2. RESET E ESTILOS BASE
   ============================================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-dark);
    color: var(--color-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

/* ============================================================================
   3. TIPOGRAFIA
   ============================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

/* ============================================================================
   4. LINKS E ÂNCORAS
   ============================================================================ */

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================================================
   5. BOTÕES
   ============================================================================ */

button,
.btn,
input[type="button"],
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    min-height: 48px;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 9999px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    text-transform: uppercase;
}

/* Botão Primário */
.btn-primary,
button[type="submit"] {
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(244, 140, 6, 0.3);
}

.btn-primary:hover,
button[type="submit"]:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 140, 6, 0.4);
}

.btn-primary:active,
button[type="submit"]:active {
    transform: translateY(0);
}

.btn-primary:focus,
button[type="submit"]:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Botão Outline */
.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.btn-outline:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Botão Desabilitado */
button:disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================================================
   6. FORMULÁRIOS
   ============================================================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--color-darklight);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 140, 6, 0.1);
    background-color: var(--color-darklight);
}

.form-group input::placeholder {
    color: #6b7280;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Input Inválido */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ============================================================================
   7. ACCORDION FAQ
   ============================================================================ */

.accordion-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: var(--spacing-lg) 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-normal);
    color: var(--color-text);
    user-select: none;
    -webkit-user-select: none;
}

.accordion-header:hover {
    color: var(--color-primary);
}

.accordion-header:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.accordion-icon {
    font-size: 1.8rem;
    color: #f39200;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding-bottom var(--transition-normal);
    padding-bottom: 0;
    color: var(--color-textlight);
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: var(--spacing-lg);
}

/* ============================================================================
   8. CARDS E CONTAINERS
   ============================================================================ */

.card {
    background-color: var(--color-darklight);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

/* ============================================================================
   9. SEÇÕES
   ============================================================================ */

section {
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.hero-section {
    background-color: #000000;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0) 60%), url('grafico_vp.png');
    background-size: 100%;
    background-position: right -0px top -60px;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    padding: 100px 0 150px 0 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-title::after {
    content: "";
    display: block;
    width: 250px;
    height: 4px;
    background: #f39200;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.testimonials-section {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('conexcoes_vp_fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Isso cria um efeito parallax elegante ao rolar */
    background-repeat: no-repeat;
    padding: 80px 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--spacing-3xl) var(--spacing-2xl);
    }
}

/* ============================================================================
   10. CONTAINER
   ============================================================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================================================
   11. GRID RESPONSIVO
   ============================================================================ */

.grid-cols-1-md-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .grid-cols-1-md-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
}

.grid-cols-1-md-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .grid-cols-1-md-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-2xl);
    }
}

/* ============================================================================
   12. UTILITÁRIOS
   ============================================================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-12 {
    margin-bottom: 48px;
}

.mb-16 {
    margin-bottom: 64px;
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-8 {
    margin-top: 32px;
}

.mt-16 {
    margin-top: 64px;
}

.pt-8 {
    padding-top: 32px;
}

.pt-16 {
    padding-top: 64px;
}

.px-4 {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.px-8 {
    padding-left: 32px;
    padding-right: 32px;
}

.py-4 {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.gap-4 {
    gap: var(--spacing-lg);
}

.gap-8 {
    gap: 32px;
}

.gap-12 {
    gap: 48px;
}

.space-y-2>*+* {
    margin-top: var(--spacing-sm);
}

.space-y-4>*+* {
    margin-top: var(--spacing-lg);
}

.space-y-8>*+* {
    margin-top: 32px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.w-full {
    width: 100%;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:gap-12 {
        gap: 48px;
    }

    .md\:px-8 {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* ============================================================================
   13. RESPONSIVIDADE MOBILE
   ============================================================================ */

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    button,
    .btn {
        width: 100%;
        min-height: 44px;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Evita zoom em iOS */
    }

    .grid-cols-1-md-3,
    .grid-cols-1-md-2 {
        gap: var(--spacing-lg);
    }
}

/* ============================================================================
   14. ACESSIBILIDADE
   ============================================================================ */

/* Focus visível para navegação por teclado */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Reduz animações para usuários que preferem */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================================
   15. IMPRESSÃO
   ============================================================================ */

@media print {
    body {
        background-color: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }

    button,
    .btn {
        display: none;
    }
}

/* ============================================================================
   16. ANIMAÇÕES SUAVES
   ============================================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

.slide-down {
    animation: slideDown 0.5s ease-out;
}

/* ============================================================================
   16.1 SWIPER - NAVEGAÇÃO E PAGINAÇÃO GLOBAIS (PADRÃO LARANJA)
   ============================================================================ */

/* Setas circulares com fundo semi-transparente */
.swiper-button-prev,
.swiper-button-next {
    color: #000000 !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #ffffff !important;
    background-color: rgba(244, 140, 6, 0.3);
    border-color: rgba(244, 140, 6, 0.5);
    transform: scale(1.08);
}

/* Bolinhas de paginação */
.swiper-pagination-bullet {
    background-color: #444444 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: #f48c06 !important;
}

/* ============================================================================
   17. GOOGLE REVIEWS - CARROSSEL DUAS COLUNAS (FLEX FORÇADO)
   ============================================================================ */

/* Wrapper principal: flex forçado para duas colunas */
.google-reviews-wrapper {
    display: flex !important;
    gap: 40px;
    padding: 40px 0;
    align-items: flex-start;
}

/* --- Sidebar (coluna esquerda) --- */
.google-sidebar {
    flex: 0 0 250px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #0a0a0a;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 15px !important;
    gap: 12px;
    height: 280px !important;
    min-height: 280px !important;
}

@media (min-width: 1024px) {
    .google-sidebar {
        position: sticky;
        top: 100px;
    }
}

/* Imagem forçada a 80x80 circular */
.google-sidebar img,
.google-sidebar__logo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px !important;
    border: 2px solid #222222;
}

.google-sidebar__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0 !important;
    line-height: 1.3;
    margin-bottom: 0;
}

.google-sidebar__stars {
    display: flex;
    gap: 2px;
    font-size: 1.4rem;
}

.google-sidebar__stars span {
    color: #f48c06;
    transition: transform 200ms ease;
}

.google-sidebar__stars span:hover {
    transform: scale(1.25);
}

.google-sidebar__count {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 4px;
}

.google-sidebar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 9999px;
    background-color: #ffffff;
    color: #111111;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 300ms ease;
    border: 1px solid #dddddd;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: auto;
}

.google-sidebar__btn:hover {
    background-color: #f48c06;
    color: #000000;
    border-color: #f48c06;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 140, 6, 0.3);
    text-decoration: none;
}

/* --- Coluna do Carrossel (flex: 1) --- */
.google-carousel-col {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-bottom: 40px;
}

/* --- Card de Review --- */
.google-card {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 15px !important;
    height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 12px;
    min-height: 280px !important;
    transition: border-color 300ms ease, box-shadow 300ms ease, height 300ms ease;
}

.google-card.auto-height {
    height: auto !important;
    min-height: 280px !important;
}

.google-card:hover {
    border-color: #333333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.google-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-card__avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
}

.google-card__name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Ícone do Google no canto superior direito do card */
.google-card__google-icon {
    color: #4285f4;
    font-size: 1.1rem;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 200ms ease;
}

.google-card__google-icon:hover {
    opacity: 1;
}

.google-card__date {
    font-size: 0.75rem;
    color: #666666;
    margin-bottom: 0;
    line-height: 1;
}

.google-card__stars {
    font-size: 1rem;
    color: #f48c06;
    letter-spacing: 1px;
}

.google-card__text {
    display: -webkit-box !important;
    -webkit-line-clamp: 6 !important;
    line-clamp: 6 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
    flex-grow: 1;
}

.google-card__text.expanded {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    display: block !important;
    overflow: visible !important;
}

/* Link 'Consulte Mais informação' */
.google-card__readmore {
    margin-top: auto !important;
    font-size: 0.75rem !important;
    color: #999999 !important;
    text-decoration: none;
    transition: color 200ms ease;
    padding-top: 8px;
}

.google-card__readmore:hover {
    color: #f48c06;
    text-decoration: underline;
}

/* --- Swiper overrides para Google Reviews --- */
#reviewsSwiper {
    overflow: hidden;
    padding-bottom: 8px;
}

#reviewsSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

#reviewsSwiper .swiper-button-prev,
#reviewsSwiper .swiper-button-next {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
}

#reviewsSwiper .swiper-button-prev::after,
#reviewsSwiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

#reviewsSwiper .swiper-button-prev {
    left: -4px;
}

#reviewsSwiper .swiper-button-next {
    right: -4px;
}

@media (min-width: 1024px) {
    #reviewsSwiper .swiper-button-prev {
        left: -16px;
    }

    #reviewsSwiper .swiper-button-next {
        right: -16px;
    }
}

.google-swiper-pagination {
    position: relative;
    margin-top: 16px;
    text-align: center;
}

/* (regras de paginação agora são globais na seção 16.1) */

/* --- Responsivo: mobile empilha --- */
@media (max-width: 1023px) {
    .google-reviews-wrapper {
        flex-direction: column !important;
        gap: 24px;
    }

    .google-sidebar {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        align-items: center;
        gap: 16px;
        padding: 24px;
    }

    .google-sidebar img,
    .google-sidebar__logo {
        width: 48px !important;
        height: 48px !important;
    }

    .google-sidebar__title {
        font-size: 1rem;
    }

    #reviewsSwiper .swiper-button-prev,
    #reviewsSwiper .swiper-button-next {
        display: none;
    }
}

/* ============================================================================
   22. STATS SECTION
   ============================================================================ */
.stats-section {
    padding: 60px 0;
    background-color: #000000;
}

.stats-divider {
    display: block;
    width: 80%;
    max-width: 1000px;
    height: 1px;
    background: #f39200;
    margin: 0 auto 60px auto; /* Centraliza a linha e dá espaço abaixo */
    opacity: 0.2; /* Suave e elegante */
}

.stats-wrapper {
    display: flex;
    justify-content: space-between; /* Espaça igualmente os 3 blocos */
    align-items: center;
    text-align: center;
    flex-wrap: wrap; /* Permite que os itens quebrem em telas menores */
    gap: 2rem;
}

.stat-item {
    flex: 1; /* Faz cada item ter o mesmo tamanho */
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem; /* Ajuste o tamanho do número aqui */
    color: #f39200;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
}

/* ============================================================================
   FIM DO CSS
   ============================================================================ */