/* Destaque para texto do processo */
.process-highlight {
    color: #fff !important;
    text-align: center;
    font-weight: 500;
}

/* About Page Styles - Following FAQ and Contact Pattern */

/* Animations */


/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.95), rgba(131, 56, 236, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #f8fafc, transparent);
    z-index: 2;
    pointer-events: none;
}

.about-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-hero .hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 20s linear infinite;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-hero .hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.about-hero .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    display: block;
    background: linear-gradient(45deg, #fff, #e0f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    display: block;
    max-width: 650px;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

.about-section .section-header {
    margin-bottom: 3rem;
}

.about-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce, #667eea);
    border-radius: 2px;
}

.about-section .section-header h2 i {
    color: #3182ce;
    font-size: 2rem;
}

.about-section .section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    margin-bottom: 4rem;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #805ad5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.mission-content {
    text-align: center;
}

.mission-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-content p {
    color: #718096;
    line-height: 1.6;
    text-align: center;
}

/* Services Section */
.services-section {
    margin: 4rem 0;
}

.services-header h2,
.workflow-header h2,
.stats-header h2,
.community-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
}

.services-header h2::after,
.workflow-header h2::after,
.stats-header h2::after,
.community-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce, #667eea);
    border-radius: 2px;
}

.services-header {
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.services-header h2 i {
    color: #f6ad55;
}

.services-header p,
.workflow-header p,
.stats-header p,
.community-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.bios-card .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.schemas-card .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.drivers-card .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.software-card .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.printers-card .service-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.courses-card .service-icon {
    background: linear-gradient(135deg, #ffa751 0%, #ffe259 100%);
}

.courses-card .service-icon i {
    color: #fff;
}

.datasheet-card .service-icon {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.service-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
}

.service-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '✓';
    color: #38a169;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-stats {
    background: #f7fafc;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Workflow Section */
.workflow-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

.workflow-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.workflow-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
}

.workflow-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2rem;
    opacity: 1;
    color: #ffffff;
    margin-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stats Section */
.stats-container {
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all 0.4s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
}

.icon-bg.downloads {
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
}

.icon-bg.users {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.icon-bg.resources {
    background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
}

.icon-bg.satisfaction {
    background: linear-gradient(135deg, #ed64a6 0%, #d53f8c 100%);
}

.stat-content {
    position: relative;
}

.stat-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 0.8s ease-out;
}

.stat-plus,
.stat-percent {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    opacity: 0.8;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.stat-text {
    font-size: 1rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

/* Animação do contador */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.stat-card:hover .icon-bg {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Team Section */
.team-section {
    margin: 4rem 0;
}

.team-header {
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.team-header h2 i {
    color: #ed8936;
}

.team-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #e2e8f0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #3182ce;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-description {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.member-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-tag {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Statistics Section */
.stats-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

.stats-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.stats-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
}

.stats-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* Community Section */
.community-section {
    margin: 4rem 0;
}

.community-header {
    margin-bottom: 3rem;
}

.community-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.community-header h2 i {
    color: #e53e3e;
}

.community-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-features .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: none;
    text-align: left;
}

.community-features .feature-item:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    background: white !important;
    border-color: #e2e8f0 !important;
}

.community-features .feature-item:hover i {
    color: #ed8936 !important;
    transform: none !important;
}

.community-features .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(237, 137, 54, 0.1);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ed8936 !important;
    font-size: 1.5rem;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.community-features .feature-icon i {
    color: #ed8936 !important;
    display: block;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

.community-cta {
    background: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 18px 40px rgba(102, 126, 234, 0.18);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.community-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.community-cta p {
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-gradient.primary {
    background: linear-gradient(135deg, #3182ce, #805ad5);
    color: white;
}

.btn-gradient.primary:hover {
    background: linear-gradient(135deg, #2c5282, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
    color: white;
    text-decoration: none;
}

.btn-gradient.secondary {
    background: linear-gradient(135deg, #38a169, #2f855a);
    color: white;
}

.btn-gradient.secondary:hover {
    background: linear-gradient(135deg, #2f855a, #276749);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.4);
    color: white;
    text-decoration: none;
}

/* Final CTA Section */
.about-cta {
    margin: 4rem 0 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 40%, #1a2332 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 255, 65, 0.15);
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ff41;
}

.cta-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #00ff41);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #b0bec5;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    color: #cfd8dc;
}

.highlight-item i {
    color: #00ff41;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }

    .about-hero .hero-title {
        font-size: 2.2rem;
    }

    .mission-cards,
    .services-grid,
    .workflow-steps,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .icon-bg {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .about-section .section-header h2,
    .services-header h2,
    .workflow-header h2,
    .team-header h2,
    .stats-header h2,
    .community-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 1.8rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1rem;
    }

    .mission-card,
    .service-card,
    .workflow-step,
    .team-member,
    .stat-card,
    .community-cta,
    .about-cta {
        padding: 1.5rem;
    }

    .workflow-section,
    .stats-section {
        padding: 2rem 1.5rem;
    }

    .modern-stat-item {
        padding: 1.5rem;
    }

    .stat-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-symbol {
        font-size: 1.2rem;
    }
}

/* ==========================================
   MODAL DE CONTRIBUIÇÃO
   ========================================== */

.contribute-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    align-items: flex-start;
    justify-content: center;
    padding:
        calc(var(--contribute-modal-top-offset, 70px) + var(--contribute-modal-gap, 1rem))
        1rem
        var(--contribute-modal-gap, 1rem);
    overflow-y: auto;
}

.contribute-modal.active {
    display: flex;
}

.contribute-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.contribute-modal-content {
    position: relative;
    background: white;
    width: min(860px, 100%);
    max-height: calc(100dvh - var(--contribute-modal-top-offset, 70px) - (var(--contribute-modal-gap, 1rem) * 2));
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contribute-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    color: #333;
}

.contribute-modal-close:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #e53e3e;
    transform: rotate(90deg);
}

.contribute-modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.contribute-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.contribute-modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contribute-modal-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contribute-modal-body {
    padding: 2rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.contribute-modal-body::-webkit-scrollbar {
    width: 12px;
}

.contribute-modal-body::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-left: 1px solid rgba(102, 126, 234, 0.08);
}

.contribute-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.contribute-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5b6ee0 0%, #6a4196 100%);
}

.contribute-option {
    background: #f7fafc;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contribute-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.contribute-option.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: #667eea;
}

.contribute-option-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.contribute-option.highlight .contribute-option-icon {
    animation: pulse 2s infinite;
}

.contribute-option-content {
    flex: 1;
}

.contribute-option-content h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contribute-option-content p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contribute-option-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contribute-option-content ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contribute-option-content ul li i {
    color: #48bb78;
    font-size: 0.9rem;
}

.contribute-cta-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.donation-widget {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(102, 126, 234, 0.18);
}

.donation-widget-header h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    color: #2d3748;
}

.donation-widget-header p {
    margin-bottom: 1rem;
}

.donation-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.donation-preset {
    border: 1px solid rgba(102, 126, 234, 0.22);
    background: white;
    color: #4c51bf;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.donation-preset:hover,
.donation-preset.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-1px);
}

.donation-input-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.donation-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.donation-input-wrapper span {
    color: #475569;
    font-weight: 700;
}

.donation-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
}

.donation-actions {
    margin-top: 1rem;
}

.donation-feedback {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    color: #475569;
}

.donation-feedback.is-error {
    color: #dc2626;
}

.donation-feedback.is-success {
    color: #15803d;
}

.contribute-modal-footer {
    background: #f7fafc;
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 20px 20px;
    border-top: 1px solid #e2e8f0;
}

.contribute-modal-footer p {
    color: #718096;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contribute-modal-footer p i {
    color: #3182ce;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .contribute-modal-content {
        width: min(100%, calc(100vw - 1rem));
        max-height: calc(100dvh - var(--contribute-modal-top-offset, 70px) - 1rem);
        border-radius: 18px;
    }

    .contribute-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .contribute-modal-header h2 {
        font-size: 1.5rem;
    }

    .contribute-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .contribute-modal-body {
        padding: 1.5rem;
    }

    .contribute-option {
        flex-direction: column;
        padding: 1.5rem;
    }

    .contribute-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contribute-option-content h3 {
        font-size: 1.2rem;
    }

    .contribute-cta-buttons {
        flex-direction: column;
    }

    .donation-input-wrapper {
        padding: 0.8rem 0.9rem;
    }

    .contribute-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contribute-modal {
        padding:
            calc(var(--contribute-modal-top-offset, 70px) + 0.5rem)
            0.5rem
            0.5rem;
    }

    .contribute-modal-content {
        width: calc(100vw - 1rem);
        max-height: calc(100dvh - var(--contribute-modal-top-offset, 70px) - 1rem);
        border-radius: 16px;
    }

    .contribute-modal-header {
        padding: 1.75rem 1rem 1.25rem;
    }

    .contribute-modal-header h2 {
        font-size: 1.35rem;
        line-height: 1.15;
    }

    .contribute-modal-header p {
        font-size: 0.98rem;
    }

    .contribute-modal-body {
        padding: 1rem;
    }

    .contribute-option {
        gap: 1rem;
        padding: 1.25rem;
    }
}


/* Counter Animation */
.stat-number {
    transition: all 0.5s ease;
}

.stat-number.counting {
    animation: countUp 0.5s ease-out;
}
