    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f9fafb;
        color: #1f2937;
    }

    /* Navigation */
    nav {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        color: white;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .logo-icon {
        /* background: white; */
        padding: 0.5rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-icon img {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .nav-links {
        display: flex;
        gap: 1.5rem;
        list-style: none;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: background 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Main Content */
    main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }

    /* Hero Section */
    .hero-about {
        background: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
        color: white;
        padding: 3rem;
        border-radius: 16px;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-logo {
        /* background: white; */
        width: 100px;
        height: 100px;
        margin: 0 auto 1.5rem;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }



    .hero-logo img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .hero-about h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-about p {
        font-size: 1.2rem;
        opacity: 0.95;
    }

    /* Main Content Card */
    .content-card {
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 16px;
        padding: 3rem;
        margin-bottom: 2rem;
    }

    .content-card h3 {
        color: #1f2937;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 3px solid #059669;
    }

    .content-card p {
        color: #4b5563;
        line-height: 1.8;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .content-card ul {
        list-style: none;
        margin: 1.5rem 0;
    }

    .content-card ul li {
        color: #374151;
        padding: 0.75rem 0;
        padding-left: 2rem;
        position: relative;
        line-height: 1.6;
    }

    .content-card ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #059669;
        font-weight: bold;
        font-size: 1.2rem;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .feature-box {
        padding: 1.75rem;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .feature-emerald {
        background: #d1fae5;
        border: 2px solid #6ee7b7;
    }

    .feature-blue {
        background: #dbeafe;
        border: 2px solid #93c5fd;
    }

    .feature-purple {
        background: #f3e8ff;
        border: 2px solid #c084fc;
    }

    .feature-yellow {
        background: #fef3c7;
        border: 2px solid #fcd34d;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }


    .feature-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 1rem;
    }

    .feature-box h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-emerald h4 {
        color: #047857;
    }

    .feature-blue h4 {
        color: #1e40af;
    }

    .feature-purple h4 {
        color: #6d28d9;
    }

    .feature-yellow h4 {
        color: #92400e;
    }

    .feature-box p {
        font-size: 0.9rem;
        color: #6b7280;
        margin: 0;
    }

    /* Team Section */
    .team-section {
        background: #f9fafb;
        padding: 2rem;
        border-radius: 12px;
        margin: 2rem 0;
    }

    .team-section h4 {
        color: #1f2937;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .team-section p {
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
    }

    /* Stats Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .stat-box {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        color: white;
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1rem;
        opacity: 0.95;
    }

    /* Contact Section */
    .contact-section {
        background: #d1fae5;
        padding: 2rem;
        border-radius: 12px;
        margin-top: 2rem;
    }

    .contact-section h4 {
        color: #047857;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-section h4 img {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
    }

    .contact-section h4 {
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-item {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-icon img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .contact-info h5 {
        color: #1f2937;
        margin-bottom: 0.25rem;
    }

    .contact-info p {
        color: #047857;
        font-weight: 600;
        margin: 0;
    }

    /* Vision Section */
    .vision-section {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 3rem;
        border-radius: 16px;
        text-align: center;
        margin: 2rem 0;
    }

    .vision-section h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .vision-section p {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* Footer */
    footer {
        background: #1f2937;
        color: white;
        padding: 2rem;
        text-align: center;
        margin-top: 3rem;
    }

    footer p {
        margin-bottom: 0.5rem;
    }

    .footer-subtitle {
        color: #9ca3af;
        font-size: 0.9rem;
    }

    /* Animação para os números */
    .stat-number {
        transition: all 0.5s ease;
    }

    .stat-number:hover {
        transform: scale(1.05);
        cursor: pointer;
    }

    /* Tooltip personalizado */
    .stat-number[title] {
        cursor: help;
    }

    /* Estilo para o small dentro da label */
    .stat-label small {
        display: block;
        font-size: 10px;
        font-weight: normal;
        margin-top: 4px;
        color: #059669;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-container {
            flex-direction: column;
            gap: 1rem;
        }

        .nav-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }

        main {
            padding: 1rem;
        }

        .hero-about h2 {
            font-size: 1.8rem;
        }

        .content-card {
            padding: 2rem 1.5rem;
        }

        .features-grid,
        .stats-grid,
        .contact-grid {
            grid-template-columns: 1fr;
        }
    }