:root {
    --primary-green: #129f0c;
    --dark-green: #054706;
    --light-green: #e8f5e8;
    --accent-yellow: #FFC107; /* New accent color */
    --text-dark: #1F2036;
    --text-light: #666;
    --bg-light: #f8fff8; /* Softer background */
    --bg-white: #ffffff;
    --footer-dark: #1F2036;
    --footer-light: #2a2d4a;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    overflow-x: hidden;
    opacity: 0; /* For loading animation */
    transition: opacity 0.5s ease; /* For loading animation */
}

body.loaded {
    opacity: 1; /* For loading animation */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(18, 159, 12, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav > .logo {
    flex-shrink: 0;
}

.logo {
    font-family: 'Montserrat', sans-serif; /* Modernized font for logo */
    font-size: 1.8rem; /* Slightly larger logo */
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px; /* Increased gap */
}

.logo-img {
    width: 40px; /* Slightly larger logo image */
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow transition */
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); /* Initial shadow */
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg); /* More dynamic hover */
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3); /* Glow effect */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav > .btn-login {
    flex-shrink: 0;
    margin-left: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow); /* Accent color for underline */
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-yellow); /* Change text color on hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 50%, #0a6b05 100%);
    color: white;
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.8; /* Slightly more visible grain */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e8f5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); /* Stronger shimmer */
    transition: left 0.6s ease-out; /* Slower shimmer */
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    color: #129f0c;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.store-badge {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.btn:hover .store-badge {
    transform: scale(1.08);
}

.btn-login {
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 1rem;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(18, 159, 12, 0.05));
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(18, 159, 12, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(18, 159, 12, 0.15);
    border-color: rgba(18, 159, 12, 0.3);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(18, 159, 12, 0.3);
}

.features .feature-icon img {
    width: 2.2rem;
    height: 2.2rem;
    display: block;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(18, 159, 12, 0.4);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Plans Section */
.plans {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(18, 159, 12, 0.05), transparent);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.plan-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 18px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(18, 159, 12, 0.15);
    border-color: rgba(18, 159, 12, 0.3);
}

.plan-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    transform: scale(1.03);
}

.plan-card.featured::after {
    content: "MAIS POPULAR";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.plan-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(18, 159, 12, 0.2);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}
.plan-price .currency {
    font-size: 1em;
    font-weight: 800;
    color: var(--primary-green);
}
.plan-price .period {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 1.5rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(18, 159, 12, 0.1);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.6rem;
    font-size: 1rem;
}

.plan-features li:hover {
    background: rgba(18, 159, 12, 0.05);
    padding-left: 8px;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--footer-dark) 0%, var(--footer-light) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.footer-section ul li a:hover {
    color: var(--primary-green);
    padding-left: 12px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .btn-login {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-left: auto;
        margin-right: 10px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detailed-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detailed-feature-card {
        padding: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px); /* Deeper movement */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg); /* Added rotation */
    }
    50% {
        transform: translateY(-10px) rotate(3deg); /* More pronounced float and rotation */
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards; /* Slower and forwards */
}

.float {
    animation: float 4s ease-in-out infinite; /* Slower float */
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem; /* Larger icon */
    cursor: pointer;
    padding: 8px; /* More padding */
    border-radius: 6px; /* More rounded */
    transition: background 0.3s ease, transform 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .nav > .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
        margin-left: auto;
    }

    .btn-login {
        order: 2;
        margin-left: 0;
        margin-right: 0.5rem;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Detailed Features Section */
.detailed-features {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.detailed-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(18, 159, 12, 0.05), transparent);
}

.detailed-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detailed-feature-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 18px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(18, 159, 12, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.detailed-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detailed-feature-card:hover::before {
    transform: scaleX(1);
}

.detailed-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(18, 159, 12, 0.15);
    border-color: rgba(18, 159, 12, 0.3);
}

.detailed-feature-card .feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(18, 159, 12, 0.3);
}

.detailed-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.detailed-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.detailed-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.feature-availability {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed rgba(18, 159, 12, 0.1);
}

.availability-badge {
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-availability.available .availability-badge {
    background: linear-gradient(135deg, var(--light-green), #d4edda);
    color: var(--dark-green); /* Darker green for better contrast */
    box-shadow: 0 3px 10px rgba(18, 159, 12, 0.25);
}

.feature-availability.coming-soon .availability-badge {
    background: linear-gradient(135deg, #fff8e1, #ffecb3); /* Lighter yellow */
    color: #b08902; /* Darker yellow/brown */
    box-shadow: 0 3px 10px rgba(133, 100, 4, 0.25);
}

.plan-info {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(18, 159, 12, 0.05), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(18, 159, 12, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 159, 12, 0.15);
    border-color: rgba(18, 159, 12, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 18px;
    border: 1px solid rgba(18, 159, 12, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 159, 12, 0.15);
    border-color: rgba(18, 159, 12, 0.3);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(18, 159, 12, 0.2);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.team-section {
    margin-top: 4rem;
    text-align: center;
}

.team-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.team-section > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(18, 159, 12, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(18, 159, 12, 0.15);
    border-color: rgba(18, 159, 12, 0.3);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
}

.team-member h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px; /* Thicker indicator */
    background: linear-gradient(135deg, var(--accent-yellow), #FFEB3B); /* Accent color for indicator */
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Tamanho dos ícones SVG nas bolinhas */
.features .feature-icon img {
    width: 2.2rem;
    height: 2.2rem;
    display: block;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}
.detailed-features .feature-icon img {
    width: 1.7rem;
    height: 1.7rem;
    display: block;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

