/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #F0F0F0; /* Light gray for texts */
    background-color: #1a1a1a; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
}

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

/* Header Styles */
.header {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text on dark background */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8DC63F; /* Primary green for logo */
    display: flex;
    align-items: center;
}

.logo-image {
    height: auto;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #FFFFFF; /* White text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8DC63F; /* Primary green on hover */
}

.nav-links a.active {
    color: #8DC63F; /* Primary green for active state */
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #8DC63F;
    border-radius: 1px;
    animation: activeIndicator 0.3s ease-in-out;
}

@keyframes activeIndicator {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 20px;
        opacity: 1;
    }
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

/* Shimmer Animation */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8DC63F 0%, #587234 100%);
    color: #000000;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.4);
    font-size: 1.1em;
    padding: 16px 32px;
}

.btn-secondary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

/* Shimmer Animation for Secondary Buttons */
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
    animation: shimmer 3s infinite;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8DC63F 0%, #587234 100%);
    color: #000000;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.4);
    font-size: 1.1em;
    padding: 16px 32px;
}

/* Contract notice for main service buttons */
.btn-contract-notice {
    position: relative;
    margin-bottom: 2rem;
}

.btn-contract-notice::after {
    content: '*Contrato mínimo de 8 meses.';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
}

/* Adjust service pricing for buttons with contract notice */
.service-pricing .btn-contract-notice {
    margin-bottom: 2.5rem;
}

/* Adjust contract notice for featured cards */
.service-cta-bottom .btn-contract-notice {
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text */
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8); /* Reduced overlay opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Content above overlay */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Background Logo */
.hero-background-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 1; /* Increased opacity for better visibility */
    pointer-events: none; /* Prevents interaction with the background logo */
}

.hero-logo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Increased opacity for better visibility */
    transition: opacity 0.3s ease;
}

/* Responsive adjustments for the background logo */
@media (max-width: 768px) {
    .hero-logo-bg {
        opacity: 1; /* More visible on mobile */
    }
}

@media (max-width: 480px) {
    .hero-logo-bg {
        opacity: 1; /* More visible on small screens */
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    color: #F0F0F0; /* Light gray for better contrast */
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Gradient text for specific phrases */
.gradient-highlight {
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Gradient text for specific phrases */
.gradient-highlight-alt {
    background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF; /* White text for better contrast */
    opacity: 0.95;
}

.badge {
    background-color: #8DC63F; /* Primary green */
    color: #FFFFFF; /* White text */
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}



.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    color: #FFFFFF; /* White text */
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #CCCCCC; /* Light gray for body text */
    line-height: 1.8;
}

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






/* About Section */
.about {
    background-color: #FFFFFF; /* White background */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #8DC63F; /* Primary green border */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8DC63F; /* Primary green */
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #587234; /* Darker green */
    font-weight: 600;
}

/* Services Section */
.services {
    background-color: #0b0b0b; /* Darker background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
}

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

.service-card {
    background-color: #333333; /* Dark card background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 4px 4px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Thin white border for glass effect */
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(141, 198, 63, 0.2); /* Green shadow */
    border-color: #8DC63F; /* Primary green border on hover */
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF; /* White text */
    transition: all 0.3s ease;
}

.service-description {
    color: #CCCCCC; /* Light gray */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #CCCCCC; /* Light gray */
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    color: #8DC63F; /* Primary green checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    background-color: #1f1f1f; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
    color: #FFFFFF; /* White text */
    text-align: center;
}

.contact .section-title {
    color: #FFFFFF; /* White text */
}

.contact .section-text {
    color: #ADFF3B; /* Light green text */
}

/* Ensure body and html take full height for footer positioning */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Make main content area flex to push footer down */
body > *:not(.footer) {
    flex-shrink: 0;
}

/* Ensure sections don't overlap with footer */
section {
    position: relative;
    z-index: 1;
}

/* Ensure footer is always at the bottom */
.footer {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background-color: #587234; /* Darker green background */
    color: #FFFFFF; /* White text */
    text-align: center;
    padding: 2rem 0;
    width: 100vw;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
    flex-shrink: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block; /* Show mobile menu button */
    }
    
    /* Hide header CTA button on mobile */
    .nav .btn {
        display: none;
    }
    
    .nav-links {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000; /* Black background */
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        z-index: 1001;
    }
    
    .nav-links.show {
        display: flex; /* Show when toggled */
    }
    
    .nav-links li {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .nav-links a {
        padding: 0.5rem 1rem;
        display: block;
        border-radius: 50px;
        transition: background-color 0.3s ease;
    }
    
    /* Mobile pricing table adjustments */
    .pricing-table {
        display: block;
    }
    
    .pricing-table-row {
        display: block;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    .pricing-table-row.header {
        display: none; /* Hide header on mobile */
    }
    
    .service-column {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #FFFFFF;
        font-weight: 700;
    }
    
    /* Create a flex container for price and discount */
    .pricing-table-row {
        display: flex;
        flex-direction: column;
    }
    
    .pricing-mobile-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .market-price-column {
        display: none; /* Hide market prices on mobile */
    }
    
    .promo-price-column {
        text-align: center;
        flex: 1;
        min-width: 120px;
        order: 1;
    }
    
    .promo-price {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .discount-column {
        text-align: center;
        flex: 1;
        min-width: 100px;
        order: 2;
    }
    
    .discount-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
        max-width: 100%;
        overflow: visible;
    }
    
    /* Medium mobile screens - allow wrapping */
    @media (max-width: 600px) {
        .pricing-mobile-row {
            flex-wrap: wrap;
            justify-content: space-around;
        }
        
        .promo-price-column {
            min-width: 140px;
        }
        
        .discount-column {
            min-width: 120px;
        }
    }
    
    /* Small mobile screens - stack vertically */
    @media (max-width: 480px) {
        .pricing-mobile-row {
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .promo-price-column,
        .discount-column {
            flex: none;
            min-width: auto;
            width: 100%;
        }
        
        .promo-price {
            font-size: 1.3rem;
        }
        
        .discount-badge {
            font-size: 0.85rem;
            padding: 0.3rem 0.6rem;
        }
    }
    
    /* Add mobile-specific labels */
    .promo-price-column::before {
        content: "Preço Promocional";
        display: block;
        color: #FF6B35;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .discount-column::before {
        content: "Desconto";
        display: block;
        color: #8DC63F;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
/* Estilos para HOVER (passar o mouse) */
/* Hover State */
.nav-links a:hover {
    background-color: #8DC63F;
    color: #FFFFFF;
    box-shadow: 0 0 12px rgb(142, 198, 63);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

/* Active State */
.nav-links a.active {
    background-color: #c7c7c7;
    color: #000000; /* Changed to black for better readability */
    box-shadow: 0 0 12px rgba(141, 198, 63, 0.8);
    text-shadow: none; /* Removed white text shadow since text is now black */
    font-weight: 600;
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Hover Effects and Animations */
.service-card:hover .service-title {
    color: #8DC63F; /* Primary green on hover */
    text-shadow: 0 0 10px rgba(141, 198, 63, 0.6), 0 0 20px rgba(141, 198, 63, 0.4); /* Green glow effect */
}

.btn:hover {
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.3); /* Green shadow */
}

/* Focus States for Accessibility */
.btn:focus,
.nav-links a:focus {
    outline: 2px solid #8DC63F; /* Primary green outline */
    outline-offset: 2px;
}



/* Page Hero Section (for About, Services, Contact pages) */
.page-hero {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text */
    padding: 140px 0 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay for better text readability on page hero sections */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Reduced overlay opacity */
    z-index: 1;
}

/* Page Hero Background Logo */
.page-hero-background-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 1; /* Full opacity since we have overlay */
    pointer-events: none;
}

.page-hero-logo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Full opacity since we have overlay */
    transition: opacity 0.3s ease;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: #FFFFFF; /* White text */
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ffffff; /* Light green for subtitle */
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Pricing Overview Section */
.pricing-overview {
    padding: 80px 0;
    background-color: #0b0b0b; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
}

.pricing-table-card {
    background-color: #333333; /* Dark card background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 4px 4px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.pricing-table-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-table-header h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-table-header p {
    color: #CCCCCC;
    font-size: 1rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.pricing-table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.pricing-table-row.header {
    background-color: rgba(141, 198, 63, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #8DC63F;
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.service-column {
    color: #FFFFFF;
    font-weight: 600;
}

.market-price-column {
    text-align: center;
}

.market-price {
    color: #CCCCCC;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.promo-price-column {
    text-align: center;
}

.promo-price {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.discount-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.pricing-table-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Services Page Specific Styles */
.services-detailed {
    padding: 80px 0;
    background-color: #0b0b0b; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    padding: 0 20px;
}

/* Featured cards take more space */
.service-detail-card.featured {
    grid-column: span 1;
}

/* Responsive adjustments for service cards */
@media (max-width: 1400px) {
    .service-detail-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
    }
    
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .service-features-detailed ul {
        min-height: auto;
    }
    
    /* Mobile pricing adjustments */
    .service-pricing-top {
        padding: 1rem !important;
        margin: 1rem 0 !important;
        border-radius: 12px !important;
        overflow: visible !important; /* Ensure content is not cut off */
    }
    
    .discount-tag {
        font-size: 0.8rem !important;
        padding: 6px 10px !important;
        top: -8px !important;
        right: -8px !important;
    }
    
    .price-old {
        font-size: 1rem !important;
    }
    
    .price-new {
        font-size: 1.6rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .price-new .price-unit {
        font-size: 0.45em !important;
        white-space: nowrap !important;
        display: inline-block !important;
    }
    
    .asterisk-note {
        font-size: 0.7em !important;
        margin-left: 1px !important;
    }
    
    .promotion-details {
        margin-top: 0.8rem !important;
    }
    
    .promotion-details p {
        font-size: 0.8rem !important;
        margin: 0.2rem 0 !important;
        line-height: 1.3 !important;
    }
    
    .promotion-note {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
        margin-top: 0.4rem !important;
    }
    
    .service-detail-title {
        font-size: 1.5rem;
    }
    
    .service-detail-subtitle {
        font-size: 1rem;
    }
    
    .service-features-detailed h3 {
        font-size: 1rem;
    }
    
    .service-features-detailed li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .inline-logo {
        height: 15px;
        margin-left: 3px;
        margin-right: 1px;
    }
    
    /* Mobile package services adjustments */
    .package-service-item {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        padding: 0.8rem;
    }
    
    .service-name {
        font-size: 0.9rem;
        color: #FFFFFF;
        font-weight: 600;
        line-height: 1.3;
        text-align: center;
    }
    
    .service-price {
        font-size: 1rem;
        color: #FF6B35;
        font-weight: 700;
        margin-top: 0.2rem;
        text-align: center;
    }
    
    .package-total-label {
        font-size: 0.75rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .service-detail-grid {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .service-detail-card {
        padding: 1rem;
        margin: 0 5px;
    }
    
    .service-pricing-top {
        padding: 0.8rem !important;
        margin: 0.8rem 0 !important;
        border-radius: 8px !important;
        overflow: visible !important; /* Ensure content is not cut off */
    }
    
    .discount-tag {
        font-size: 0.7rem !important;
        padding: 5px 8px !important;
        top: -6px !important;
        right: -6px !important;
    }
    
    .price-old {
        font-size: 0.9rem !important;
    }
    
    .price-new {
        font-size: 1.4rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
    }
    
    .price-new .price-unit {
        font-size: 0.4em !important;
        white-space: nowrap !important;
        display: inline-block !important;
    }
    
    .asterisk-note {
        font-size: 0.6em !important;
        margin-left: 1px !important;
    }
    
    .promotion-details {
        margin-top: 0.6rem !important;
    }
    
    .promotion-details p {
        font-size: 0.75rem !important;
        margin: 0.15rem 0 !important;
        line-height: 1.2 !important;
    }
    
    .promotion-note {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
        margin-top: 0.3rem !important;
    }
    
    .service-detail-title {
        font-size: 1.3rem;
    }
    
    .service-detail-subtitle {
        font-size: 0.9rem;
    }
    
    .service-features-detailed h3 {
        font-size: 0.9rem;
    }
    
    .service-features-detailed li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .platform-logo {
        height: 30px;
    }
    
    .inline-logo {
        height: 16px; /* Increased from 12px for better visibility */
        margin-left: 3px;
        margin-right: 6px; /* Increased margin to prevent cutoff */
    }
    
    /* Extra small mobile package services adjustments */
    .package-service-item {
        padding: 0.6rem;
        gap: 0.3rem;
    }
    
    .service-name {
        font-size: 0.8rem;
        color: #FFFFFF;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
    }
    
    .service-price {
        font-size: 0.9rem;
        color: #FF6B35;
        font-weight: 700;
        margin-top: 0.2rem;
        text-align: center;
    }
    
    .package-total-label {
        font-size: 0.65rem;
    }
}

.service-detail-card {
    background-color: #333333; /* Dark card background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 4px 4px;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Glass effect border */
    transition: all 0.3s ease;
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: visible; /* Ensure content is not cut off */
}

.service-detail-card:hover {
    border-color: #8DC63F; /* Primary green border */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(141, 198, 63, 0.15);
}

.service-detail-card:hover .service-detail-title {
    color: #8DC63F; /* Primary green on hover */
    text-shadow: 0 0 10px rgba(141, 198, 63, 0.6), 0 0 20px rgba(141, 198, 63, 0.4); /* Green glow effect */
}

/* Featured cards styling - Only VIP card gets green border and DESTAQUE tag */
.service-detail-card.featured:not(.vip-package) {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

/* VIP package keeps green border and DESTAQUE tag */
.vip-package {
    border: 3px solid #8DC63F;
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.vip-package::before {
    content: '⭐ DESTAQUE';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #8DC63F;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.service-detail-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(141, 198, 63, 0.25);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

/* Platform logos in service icons */
.platform-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

/* Special styling for Meta logo - make text white while keeping infinity symbol blue */
.meta-logo-white {
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1))
        brightness(0) 
        invert(1) 
        hue-rotate(180deg) 
        saturate(1.5) 
        brightness(1.2);
}

.platform-logo:hover {
    transform: scale(1.1);
}

/* Inline logos in service descriptions */
.inline-logo {
    height: 18px; /* Further reduced to ensure fit */
    width: auto;
    vertical-align: baseline;
    margin-left: 4px;
    margin-right: 4px; /* Reduced margin to save space */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease;
    display: inline-block;
    flex-shrink: 0; /* Prevent logo from shrinking */
    overflow: visible; /* Ensure logo is not cut off */
    margin-bottom: 2px; /* Space when logo wraps to new line */
}

.inline-logo:hover {
    transform: scale(1.1);
}



.service-detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: #FFFFFF; /* White text */
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.service-detail-description {
    color: #587234; /* Darker green */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-subtitle {
    color: #CCCCCC; /* Light gray for better readability */
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.service-features-detailed h3 {
    color: #FFFFFF; /* White text */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-features-detailed ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    min-height: 200px;
    padding-right: 1rem; /* Add right padding to prevent cutoff */
}

.service-features-detailed li {
    padding: 0.8rem 0; /* Increased padding for better separation */
    color: #CCCCCC; /* Light gray */
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separator between items */
    line-height: 1.6; /* Better line spacing for descriptions */
}

.service-features-detailed li:last-child {
    border-bottom: none; /* Remove border from last item */
}

.service-features-detailed li::before {
    content: "✓";
    color: #8DC63F; /* Primary green checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-features-detailed li strong {
    color: #FFFFFF; /* White for emphasis */
    font-weight: 700;
    display: block; /* Make title a block element */
    margin-bottom: 0.5rem; /* Space between title and description */
    align-items: baseline;
    line-height: 1.3; /* Better line spacing for titles */
}



.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8DC63F; /* Primary green */
}

/* New pricing layout for featured cards */
.service-pricing-top {
    text-align: center;
    margin: 1.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #444444 0%, #3a3a3a 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Discount Tag - Store Price Tag Style */
.discount-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF0000;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    z-index: 10;
    transform: rotate(5deg);
}

.discount-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #FF0000;
    transform: translateY(-50%);
}

/* Smaller padding for non-featured cards */
.service-detail-card:not(.featured) .service-pricing-top {
    padding: 1.5rem;
    margin: 1rem 0;
    background: linear-gradient(135deg, #444444 0%, #3a3a3a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Featured cards get the top line - REMOVED */
/* .service-detail-card.featured .service-pricing-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
} */

.price-old {
    font-size: 1.2rem;
    font-weight: 500;
    color: #CCCCCC; /* Light gray for better visibility */
    text-decoration: line-through;
    margin-bottom: 0.2em;
    opacity: 0.8;
    position: relative;
}

.price-old::after {
    content: '';
    position: sticky;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #888888 20%, #888888 80%, transparent 100%);
    transform: translateY(-50%);
}

.price-new {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #FF6B35; /* Orange color like buttons */
    text-shadow: 
        0 4px 8px rgba(255, 107, 53, 0.4), /* Orange shadow for depth */
        0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle black shadow */
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Small text for price units like "mês", "pacote", "projeto" */
.price-new .price-unit {
    font-size: 0.5em;
    font-weight: 500;
    vertical-align: baseline;
    color: #FF6B35; /* Keep orange color */
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 2px 4px rgba(255, 107, 53, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap; /* Prevent text wrapping */
    display: inline-block; /* Ensure proper spacing */
}

/* Price continuation - for values after promotional period */
.price-continuation {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF6B35; /* Orange color */
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 2px 4px rgba(255, 107, 53, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    text-align: center;
    position: relative;
}

/* Asterisk note styling */
.asterisk-note {
    color: #FF6B35;
    font-size: 0.8em;
    font-weight: 700;
    margin-left: 2px;
    vertical-align: super;
    text-shadow: 0 1px 2px rgba(255, 107, 53, 0.3);
}

/* Promotion details styling */
.promotion-details {
    margin-top: 1rem;
    text-align: center;
}

.promotion-details p {
    color: #CCCCCC;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.3rem 0;
    line-height: 1.4;
}

.promotion-details .asterisk-note {
    color: #FF6B35;
    font-weight: 700;
    margin-right: 3px;
}

/* Promotion note styling for individual cards */
.promotion-note {
    color: #FF6B35;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: inline-block;
    white-space: nowrap;
}

/* Smaller price size for non-featured cards */
.service-detail-card:not(.featured) .price-new {
    font-size: 2rem;
}

/* Fallback for browsers that don't support background-clip */
.price-new::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: #FF6B35;
    text-shadow: 
        0 4px 8px rgba(255, 107, 53, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

/* CTA button at bottom for featured cards */
.service-cta-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

/* Package Services List Styles */
.package-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.package-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.package-service-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #8DC63F;
    transform: translateX(5px);
}

.service-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    text-align: center;
}

.service-price {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 0.3rem;
}

.package-total-label {
    color: #CCCCCC;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gift-icon {
    font-size: 3rem;
    display: block;
    text-align: center;
}

.content-icon {
    font-size: 3rem;
    display: block;
    text-align: center;
}

.identity-icon {
    font-size: 3rem;
    display: block;
    text-align: center;
}

.vip-icon {
    font-size: 3rem;
    display: block;
    text-align: center;
}


.vip-pricing {
    background: linear-gradient(135deg, #444444 0%, #3a3a3a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.promotional-badge {
    background: linear-gradient(135deg, #8DC63F 0%, #587234 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.4);
    position: relative;
}

.promotional-badge::before {
    content: '🎉';
    margin-right: 8px;
    font-size: 1.1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.price-old {
    color: #CCCCCC;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.price-new {
    color: #FF6B35;
    font-size: 2.2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promotional-note {
    color: #FF6B35;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #FF6B35;
}

.contract-notice {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.contract-notice p {
    color: #FFD700;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* No Commitment Badge Styles */
.no-commitment-notice {
    margin: 1.5rem 0;
    text-align: center;
}

.no-commitment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2C2C2C;
    color: #CCCCCC;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #404040;
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}


/* Responsive adjustments for badges */
@media (max-width: 768px) {
    .no-commitment-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}

/* Gift Notice Styles */
.gift-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #2C2C2C;
    color: #8DC63F;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #404040;
}

.gift-icon {
    font-size: 1.2rem;
}

.gift-text {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}


/* Gift Price in Service List */
.gift-price {
    background: linear-gradient(135deg, #8DC63F, #6BA83A) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    animation: shimmer-gift 2s infinite !important;
}

@keyframes shimmer-gift {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive adjustments for gift notice */
@media (max-width: 768px) {
    .gift-notice {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .gift-text {
        font-size: 0.75rem;
    }
}

/* Platform Investment Notice Styles */
.platform-investment-notice {
    margin: 1.5rem 0;
    text-align: center;
}

.investment-notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2C2C2C;
    color: #CCCCCC;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #404040;
}

.notice-icon {
    font-size: 1rem;
}

.notice-text {
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}


/* Responsive adjustments for investment notice */
@media (max-width: 768px) {
    .investment-notice-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .notice-text {
        font-size: 0.7rem;
    }
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF; /* White background */
    border-radius: 12px;
    border: 2px solid #8DC63F; /* Primary green border */
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8DC63F; /* Primary green */
    color: #FFFFFF; /* White text */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #000000; /* Black text */
    margin-bottom: 1rem;
}

.process-step p {
    color: #587234; /* Darker green */
    line-height: 1.6;
}

/* About Page Specific Styles */
.company-story {
    padding: 80px 0;
    background-color: #0b0b0b; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-highlight {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #8DC63F; /* Primary green border */
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: #8DC63F; /* Primary green */
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.1rem;
    color: #587234; /* Darker green */
    font-weight: 600;
}

/* Values Section */
.values-section {
    background-color: #0b0b0b; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
    padding: 80px 0;
}

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

.value-card {
    background-color: #333333; /* Dark card background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 4px 4px;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Glass effect border */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    border-color: #8DC63F; /* Primary green border */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(141, 198, 63, 0.15);
}

.value-card:hover h3 {
    color: #8DC63F; /* Primary green on hover */
    text-shadow: 0 0 10px rgba(141, 198, 63, 0.6), 0 0 20px rgba(141, 198, 63, 0.4); /* Green glow effect */
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #FFFFFF; /* White text */
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card p {
    color: #CCCCCC; /* Light gray */
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #1f1f1f; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* White background */
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #8DC63F; /* Primary green border */
    transform: translateY(-5px);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background-color: #8DC63F; /* Primary green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
}

.member-name {
    color: #000000; /* Black text */
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #8DC63F; /* Primary green */
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #587234; /* Darker green */
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Awards Section */
.awards-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.award-item {
    background-color: #FFFFFF; /* White background */
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #8DC63F; /* Primary green border */
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h3 {
    color: #000000; /* Black text */
    margin-bottom: 1rem;
}

.award-item p {
    color: #587234; /* Darker green */
    line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact-info {
    padding: 80px 0;
    background-color: #0b0b0b; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
}

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

.contact-card {
    background-color: #333333; /* Dark card background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 4px 4px;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Glass effect border */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(141, 198, 63, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.contact-card h3 {
    color: #FFFFFF; /* White text */
    margin-bottom: 1rem;
}

.contact-card p {
    color: #CCCCCC; /* Light gray */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #1f1f1f; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 4px 4px;
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #333333; /* Dark background */
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 4px 4px;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #000000; /* Black text */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8DC63F; /* Primary green border */
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #587234; /* Darker green */
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Form Feedback Styles */
.form-feedback {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.form-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading State for Submit Button */
.btn-loading {
    display: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* White background */
}

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

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #8DC63F; /* Primary green border */
}

.faq-question {
    color: #000000; /* Black text */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: #587234; /* Darker green */
    line-height: 1.6;
}

/* Office Section */
.office-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.office-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.office-details h3 {
    color: #000000; /* Black text */
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.office-details p {
    color: #587234; /* Darker green */
    line-height: 1.8;
    margin-bottom: 1rem;
}

.office-map {
    background-color: #FFFFFF; /* White background */
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #8DC63F; /* Primary green border */
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #587234; /* Darker green */
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* CTA Section with Multiple Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem;
    z-index: 1001;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #8DC63F;
    color: white;
}

.cookie-accept:hover {
    background: #7AB832;
}

.cookie-decline {
    background: transparent;
    color: #CCCCCC;
    border: 1px solid #CCCCCC;
}

.cookie-decline:hover {
    background: #CCCCCC;
    color: black;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-widget a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-widget svg {
        width: 28px;
        height: 28px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide navigation on mobile */
    }
    
    .hero-title,
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .story-content,
    .office-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats,
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .service-detail-grid,
    .process-grid,
    .values-grid,
    .team-grid,
    .awards-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}