@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/inter/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/inter/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  
  src: url(../fonts/inter/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/inter/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/inter/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/inter/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/inter/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
:root {
    /* Cores baseadas no site de referência - Design profissional azul/laranja */
    --primary-blue: #1e40af;      /* Azul principal profissional */
    --primary-blue-dark: #1e3a8a; /* Azul escuro */
    --primary-blue-light: #3b82f6; /* Azul claro */
    --secondary-orange: #ea580c;   /* Laranja secundário */
    --secondary-orange-light: #fb923c; /* Laranja claro */
    --accent-orange: #f97316;      /* Laranja de destaque */
    
    /* Tons neutros profissionais */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Cores do sistema */
    --white: #ffffff;
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    
    /* Gradientes profissionais */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-orange) 0%, var(--accent-orange) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Bordas */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Ensure no horizontal scrollbar */
    zoom: 0.9; /* Aplica zoom de 90% para uma visualização mais elegante */
}

body {
    min-height: 100vh; /* Ensure body takes at least full viewport height */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allow body to grow and fill available space */
}

body.fonts-loading {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

body.fonts-loaded {
    opacity: 1;
    visibility: visible;
}

.page-content-wrapper {
    /* Removed transform and width adjustments as they were causing layout issues */
    position: relative;
    z-index: 1; /* Ensure it's above the header's fixed position if needed */
    flex-grow: 1; /* Allow it to grow and fill available space */
}

/* New wrapper for main content on pages that don't use scaling */
.main-content-wrapper {
    /* Removed transform and width adjustments as they were causing layout issues */
    flex-grow: 1; /* Allow it to grow and fill available space */
}

/* Layout Utilities */
.container {
    max-width: 1280px; /* Adjusted max-width to match hero-main for consistent safe area */
    margin: 0 auto;
    padding: 0 2rem; /* Consistent padding for safe area */
    width: 100%;
}

.container-sm {
    max-width: 1820px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 800;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-white {
    color: var(--white);
}

.text-blue {
    color: var(--primary-blue);
}

.text-orange {
    color: var(--secondary-orange);
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative; /* For glow effect */
    overflow: hidden; /* For glow effect */
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-md {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02); /* More pronounced lift and slight scale */
    box-shadow: var(--shadow-xl); /* Stronger shadow */
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    color: var(--white); /* Default for white text on dark background */
    border: 2px solid var(--white); /* Default for white border on dark background */
    padding: 1rem 2rem; /* Adjusted padding to match btn-lg more closely */
}

.btn-outline:hover {
    background: var(--white);
    color: white;
    transform: translateY(-2px);
}
.btn-outline2 {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--accent-orange) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-outline2:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Card Components */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav.container {
    display: flex;
    justify-content: space-between;
    height: 74px; /* Reduced height by approximately 7% more */
    padding: 0 5rem;
    width: 100%;
    max-width: none;
    transition: height 0.3s ease-in-out;
   
}

.nav.container.is-expanded {
    height: auto; /* Allow height to expand based on content */
    align-items: flex-start; /* Align items to the start when expanded */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    font-size: 1.75rem; /* Slightly reduced font size */
    color: var(--primary-blue);
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 60px; /* Reduced logo height */
    width: auto;
}

.nav-menu {
    display: flex; /* Revert to original */
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem; /* Slightly reduced font size */
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-button-group {
    display: flex; /* Revert to original */
    gap: 2rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none; /* Revert to original */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    color: white;
}

/* New Main Hero Section */
.hero-main {
    padding: 110px 0 100px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #c2410c 100%); /* Gradiente âmbar/laranja */
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: background-color 0.5s ease;
}

.hero-main::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 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        rgba(255, 255, 255, 0.15) 60%,
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0.7;
    animation: moveGradient 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes moveGradient {
    0% {
        transform: translateX(-100%); /* Start further left */
    }
    100% {
        transform: translateX(100%); /* End further right */
    }
}

.hero-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 15px
    );
    animation: pulseLines 6s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes pulseLines {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.01);
    }
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
}

.hero-main .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative; /* Set to relative to establish new stacking context */
    z-index: 3; /* Ensure content is above the overlay and pattern */
}

.hero-main .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-main-text {
    flex: none; /* Remove flex property */
    max-width: 900px; /* Increased max-width for expanded content */
    min-width: 0; /* Allow it to shrink below its content size */
}

.hero-main-title {
    font-size: 3.25rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Aumentado o espaçamento entre as colunas */
    justify-items: center;
    align-items: stretch; /* Alinha os itens para que tenham a mesma altura */
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.cta-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Maior espaçamento entre elementos */
    text-align: center;
    width: 100%; /* Ensure it takes full width */
    max-width: 100%; /* Allow it to be full width */
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    justify-content: space-between; /* Distribute space to push summary-card to bottom */
    height: 100%; /* Make sure it takes full height of the grid cell */
}

.text-summary-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Removed margin-bottom to standardize spacing with parent's gap */
    background: rgba(255, 255, 255, 0.1); /* Very subtle transparent white background */
    border-radius: var(--radius-xl); /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Lighter shadow */
    border: 1px solid rgba(255, 255, 255, 0.2); /* More subtle border */
    padding: 0.85rem; /* Padding inside the card */
    backdrop-filter: blur(5px); /* Slightly less blur effect */
    transition: none; /* Remove all transitions */
    flex-grow: 1; /* Allow it to grow and fill available space */
    height: 100%; /* Ensure it takes full height of its container */
    align-self: stretch; /* Ensure it stretches to the full height provided by its container */
}

.text-summary-group:hover {
    transform: none; /* Remove hover transform */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Keep same subtle shadow on hover */
}

.text-summary-group h4 {
    font-size: 1.25rem; /* Slightly larger */
    font-weight: 800; /* Bolder */
    margin-bottom: 0.75rem; /* More space below */
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em; /* Add some letter spacing */
}

.text-summary-group p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.95); /* Revert to light white for contrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Keep text shadow */
}

.text-summary-group .main-phrase {
    font-size: 1.1rem; /* Larger */
    font-weight: 600; /* Bolder */
    margin-bottom: 0.75rem; /* Adjusted margin */
    line-height: 1.4;
    font-style: italic;
    max-width: 90%; /* Constrain width for readability */
}

.text-summary-group .slogan-complementar {
    font-size: 0.95rem; /* Slightly smaller */
    font-weight: 400; /* Lighter */
    margin-bottom: 0; /* No margin after the last element */
    line-height: 1.4;
    font-style: normal; /* Remove italic */
    max-width: 90%; /* Constrain width for readability */
}

.text-summary-group .slogan-complementar {
    margin-bottom: 0; /* No margin after the last element */
}

/* Adjust button-lg padding for these specific buttons to fit better */
.cta-button-group .btn-lg {
    padding: 1rem 2rem; /* Reverted to original padding */
    font-size: 1.125rem; /* Reverted to original font size */
}

/* No specific responsive adjustments needed for cta-button-group as it's now column by default */
/* The hero-main-cta already handles its responsive stacking */

.info-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin-top: 1rem; /* Space between button and info list */
    display: flex; /* Use flexbox for the list container */
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center; /* Center the list items horizontally */
    gap: 0.5rem 1rem; /* Gap between rows and columns */
    max-width: 280px; /* Slightly increase max-width to accommodate wrapping */
    margin-left: auto; /* Center the list itself within its parent */
    margin-right: auto;
}

.info-list li {
    font-size: 0.95rem;
    color: var(--gray-900); /* Dark gray color for info items */
    display: flex; /* Use flexbox for each list item */
    align-items: center; /* Align bullet and text vertically */
    white-space: nowrap; /* Keep bullet and text on one line */
}

.info-list li::before {
    content: '●'; /* Solid circle bullet point */
    color: var(--gray-900); /* Dark gray color for bullet */
    font-size: 1em; /* Adjust bullet size relative to font-size of li */
    line-height: 1;
    margin-right: 0.4em; /* Space between bullet and text */
}

/* Specific styling for the blue bullet point (assuming it's the second item) */
.info-list li:nth-child(2) {
    color: var(--primary-blue); /* Blue color for INFO 2 */
}

.info-list li:nth-child(2)::before {
    color: var(--primary-blue); /* Blue color for INFO 2 bullet */
}

/* New styles for summary-card */
.summary-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    margin-top: auto; /* Re-add margin-top: auto to push the card to the bottom */
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Espaçamento reduzido entre itens */
    text-align: left;
    width: 100%; /* Ensure it takes full width */
    height: auto; /* Allow height to adjust dynamically */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.summary-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.summary-card p {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
    background: rgba(248, 250, 252, 0.8);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.summary-card p:hover {
    background: rgba(241, 245, 249, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.summary-card i {
    font-size: 1rem;
}

.icon-blue {
    color: var(--primary-blue-light); /* Retorna para o azul para melhor identificação */
}

.icon-orange {
    color: var(--secondary-orange); /* Retorna para o laranja para melhor identificação */
}

/* Removed hero-main-visual and icon-pulse animation as the image is removed */

@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 3rem;
    }
    .hero-main-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .hero-main-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-main-text {
        max-width: 100%; /* Ensure it takes full width on small screens */
        width: auto;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-main-subtitle {
        font-size: 1.125rem;
    }

    .hero-main-cta {
        justify-content: center;
    }

    .hero-main-visual i {
        font-size: 10rem;
    }
}

@media (max-width: 480px) {
    .hero-main {
        padding: 100px 0 60px;
    }

    .hero-main-title {
        font-size: 2rem;
    }
}

/* Adicionar id específico para cada hero */
#inicio {
    padding-bottom: 60px;
}

.hero + .hero {
    padding-top: 60px;
}

.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 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary-black-light);
    line-height: 1.2;
    word-break: break-word;
    hyphens: auto;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.2;
}

.hero-visual {
    position: relative;
    display: flex; /* Use flexbox to center content */
    justify-content: center;
    align-items: center;
    min-height: 600px; /* Ensure enough space for the images and text */
}

.hero-image {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 1rem;
    backdrop-filter: blur(10px);
    text-align: center;
    flex-direction: column; /* Ensure content is stacked */
    justify-content: center;
    align-items: center;
    position: absolute; /* Keep absolute for stacking */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Start invisible for transition */
    z-index: 0; /* Behind active image */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for appearance */
}

.hero-image.image-active {
    opacity: 1; /* Fully visible when active */
    z-index: 1; /* Bring to front when active */
    display: flex; /* Ensure it's a flex container when active */
}

.animated-satellite {
    width: 400px; /* Significantly larger size */
    height: auto;
    margin-bottom: 0rem;
    animation: satellite-move 4s infinite ease-in-out;
}

@keyframes satellite-move {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* Moves up */
    }
    100% {
        transform: translateY(0); /* Returns to original position */
    }
}

.animated-usina {
    width: 600px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 0rem;
    animation: usina-move 4s infinite ease-in-out;
}

@keyframes usina-move {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* Moves up */
    }
    100% {
        transform: translateY(0); /* Returns to original position */
    }
}

.animated-onu {
    width: 400px; /* Revert to original size for more impact */
    height: auto;
    margin-bottom: 0rem;
    animation: satellite-move 4s infinite ease-in-out; /* Keep existing animation */
}

/* New ODS ONU Section Styling */
.ods-onu-section {
    padding: 100px 0; /* Consistent padding */
    background: var(--gray-100); /* Light gray background to differentiate the section */
}

.ods-onu-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    grid-template-areas: "text-area image-area"; /* Default order: text on left, image on right */
}

.ods-onu-text-content {
    grid-area: text-area;
}

.ods-onu-image-visual {
    grid-area: image-area;
}

/* Specific styling for cem.htm to reverse order */
.cem-page .ods-onu-content-wrapper {
    grid-template-areas: "image-area text-area"; /* Reversed order for cem.htm: image on left, text on right */
}

.ods-onu-objectives h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue-dark);
}

.ods-onu-objectives p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.ods-onu-image-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Ensure enough space for the image */
}

.ods-onu-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem; /* Consistent padding */
    background: var(--white); /* White background as per user feedback (not black) */
    border-radius: 0; /* Removed rounded corners */
    box-shadow: var(--shadow-md); /* Subtle shadow */
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative; /* For pseudo-element background */
    overflow: hidden; /* To contain pseudo-element */
    z-index: 0; /* Ensure content is above background */
}

.ods-onu-image-container::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 1000 1000"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="var(--gray-300)" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.8; /* Increased opacity for better visibility on lighter background */
    z-index: -1; /* Place behind content */
}

.ods-onu-image-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    position: relative; /* Ensure image is above pseudo-element */
    z-index: 1;
}

.ods-onu-image-caption {
    font-size: 1.125rem;
    color: var(--text-secondary); /* Changed to secondary text color for contrast on white background */
    line-height: 1.6;
    position: relative; /* Ensure caption is above pseudo-element */
    z-index: 1;
}

/* Responsive adjustments for ODS ONU section */
@media (max-width: 768px) {
    .ods-onu-content-wrapper {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        text-align: center;
        grid-template-areas:
            "text-area"
            "image-area"; /* Stacked order for mobile, text first */
    }

    .cem-page .ods-onu-content-wrapper {
        grid-template-areas:
            "text-area"
            "image-area"; /* For mobile, always text then image, even on cem.htm */
    }
}

/* Removed animated-localizator and localizator-pulse animation as the image is removed */


.hero-image i {
    font-size: 6rem;
    color: var(--secondary-orange-light);
    margin-bottom: 1rem;
}

.hero-image-text {
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-image-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:nth-child(even)::before {
    background: var(--gradient-secondary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:nth-child(even) .feature-icon {
    background: var(--gradient-secondary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feature-list li i {
    color: var(--secondary-orange);
    font-size: 0.875rem;
    width: 16px;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.result-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.result-card.featured {
    border: 2px solid var(--secondary-orange);
}

.result-card.featured::before {
    content: '⭐ Destaque';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--secondary-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.result-header {
    margin-bottom: 1.5rem;
}

.result-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.result-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.result-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.result-metrics-list {
    list-style: none;
    display: flex; /* Use flexbox for horizontal layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 0.75rem; /* Space between items */
    margin-top: 1rem; /* Add some top margin to separate from description */
    padding: 0; /* Remove default ul padding */
}

.result-metrics-list li {
    background: var(--gray-100); /* Light gray background for the tag */
    border: 1px solid var(--gray-200); /* Subtle border */
    border-radius: var(--radius-md); /* Rounded corners */
    padding: 0.5rem 1rem; /* Padding inside the tag */
    font-size: 0.875rem; /* Smaller font size */
    font-weight: 500; /* Medium font weight */
    color: var(--text-secondary); /* Text color */
    white-space: nowrap; /* Prevent text from wrapping within the tag */
    transition: all 0.2s ease;
}

.result-metrics-list li:hover {
    background: var(--gray-200); /* Slightly darker background on hover */
    border-color: var(--gray-300);
}

.result-metrics-list .metric-label {
    font-size: 0.875rem; /* Ensure consistent font size */
    text-transform: none; /* Remove uppercase transformation */
    letter-spacing: normal; /* Reset letter spacing */
    font-weight: 500; /* Reset font weight */
    color: var(--text-secondary); /* Ensure consistent color */
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::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 1000 1000"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-guarantee {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-guarantee i {
    color: #10b981;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 63px;
    width: auto;
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.footer-contact i {
    color: var(--secondary-orange);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: between;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px; /* Width of the drawer */
    height: 100%;
    background: white;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.mobile-menu-drawer.is-open {
    transform: translateX(0); /* Slide in */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.mobile-menu-header .logo {
    font-size: 1.25rem;
    gap: 0.5rem;
}

.mobile-menu-header .logo img {
    height: 63px;
}

.close-mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.mobile-nav-menu li {
    margin-bottom: 0.75rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primary-blue);
}

.mobile-nav-button-group {
    margin-top: auto; /* Push to the bottom */
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-nav-button-group .btn {
    width: 100%;
    justify-content: center;
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .animated-satellite,
    .animated-usina,
    .animated-onu {
        width: 350px; /* Increased size for medium screens */
    }
}

@media (max-width: 768px) {
    .animated-satellite,
    .animated-usina,
    .animated-onu {
        width: 300px; /* Increased size for small screens */
    }

    .nav-menu,
    .nav-button-group {
        display: none; /* Hide desktop nav on mobile */
        flex-direction: column; /* Stack items vertically */
        width: 100%; /* Take full width */
        text-align: center;
        padding-top: 1rem;
    }

    .nav-menu li {
        margin-bottom: 0.75rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-button-group .btn {
        width: 100%;
        max-width: 280px; /* Constrain button width */
        margin-bottom: 0.75rem;
    }

    .nav.container.is-expanded .nav-menu,
    .nav.container.is-expanded .nav-button-group {
        display: flex; /* Show when expanded */
    }

    .mobile-menu-btn {
        display: block; /* Show mobile menu button */
    }
    
    .logo span {
        display: none; /* Hide text on smaller screens */
    }

    .logo {
        font-size: 1rem; /* Further reduce logo font size on smaller screens */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .result-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-guarantee {
        font-size: 0.8rem;
        text-align: center;
        margin-top: 1.5rem;
    }
}

/* Responsive visibility for hero-main-content versions */
.hero-main-content.desktop-only {
    display: flex; /* Default to flex for desktop */
}

.hero-main-content.mobile-only {
    display: none; /* Default to hidden for desktop */
}

@media (max-width: 768px) {
    .hero-main-content.desktop-only {
        display: none; /* Hide desktop version on mobile */
    }

    .hero-main-content.mobile-only {
        display: flex; /* Show mobile version on mobile */
        flex-direction: column; /* Ensure content stacks vertically */
        text-align: center; /* Center text */
        gap: 2rem; /* Add gap between elements */
    }

    /* Adjust the text and visual within the mobile-only section */
    .hero-main-content.mobile-only .hero-main-text {
        max-width: 100%;
        width: auto;
    }

    .hero-main-content.mobile-only .hero-main-cta {
        grid-template-columns: 1fr; /* Stack items vertically on mobile */
        gap: 2rem; /* Maintain gap */
        width: 100%; /* Ensure it takes full width */
        max-width: 100%; /* Allow it to be full width */
    }
}
.supporter-banner {
    background-color: #f0f0f0; /* Light gray background */
    padding: 2rem 0;
    overflow: hidden; /* Hide overflowing logos for animation */
    position: relative;
}

.supporter-banner::before,
.supporter-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 1;
}

.supporter-banner::before {
    left: 0;
    background: linear-gradient(to right, #f0f0f0, rgba(240, 240, 240, 0));
}

.supporter-banner::after {
    right: 0;
    background: linear-gradient(to left, #f0f0f0, rgba(240, 240, 240, 0));
}

.supporter-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    white-space: nowrap;
    animation: scrollLogos 20s linear infinite;
    width: fit-content; /* Ensure the container is wide enough for all logos */
}

.supporter-logos img {
    height: 60px; /* Adjust as needed */
    margin: 0 20px;
    filter: grayscale(100%) brightness(1.5); /* Desaturate and lighten logos */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.supporter-logos img:hover {
    filter: grayscale(0%) brightness(1); /* Full color on hover */
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } /* Changed to -50% to account for duplicated content */
}
