:root {
    --primary-color: #ff6c2f;
    --secondary-color: #db6836;
    --dark-bg: #121214;
    --text-color: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }
  
  body {
     background: linear-gradient(to bottom right, var(--dark-bg), #272727);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  section {
    position: relative;
    padding: 4rem 0;
  }
  
  section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
  
  .top-banner {
    background-color: var(--primary-color);
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .support-button {
    background: #ffffff;
    color: var(--dark-bg);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: background-color 0.3s;
  }
  
  .support-button:hover {
    background: rgb(226, 226, 226);
  }
  
  .section-divider {
    width: 100%;
    height: 5px; 
    background: linear-gradient(to right, #FF6C2F, #d1480d); 
    margin: 0;
  }
  
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    min-height: calc(100vh - 56px);
    position: relative;
    flex-direction: column;
    text-align: center;
  }
  
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(18, 18, 20), rgba(18, 18, 20, 0.938));
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center; /* Centraliza o texto */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os botões e elementos */
    gap: 1.5rem;
  }
  
  .hero-image {
    position: relative;
    z-index: 2;
  }
  
  .logo {
    height: 120px;
    margin-bottom: 2rem;
    margin-left: -1rem;
    transition: transform 0.3s;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  
  .platform-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
  
  .dollar-sign {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  h1, h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .highlight {
    color: var(--secondary-color);
    display: block;
  }
  
  .logo-container img {
    max-width: 400px;
  }
  
  .hero-description {
    max-width: 600px;
    line-height: 1.6;
  }
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center; /* Centraliza os botões horizontalmente */
    flex-wrap: wrap;
  }
  
  .btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .companies {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .avatar-group {
    display: flex;
  }
  
  .avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    margin-left: -0.5rem;
    transition: transform 0.3s;
  }
  
  .avatar-group img:hover {
    transform: translateY(-2px);
  }
  
  .avatar-group img:first-child {
    margin-left: 0;
  }
  
  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .phone-mockup {
    max-width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-20deg);
    transition: transform 0.5s;
  }
  
  .phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) translateY(-10px);
  }
  
/* Main Nav */
.main-nav {
  background-color: transparent;
  padding: 0.5rem 0;
  position: fixed;
  width: calc(100% - 400px);
  top: 20px;
  z-index: 1000;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.main-nav.hidden {
  transform: translateX(-50%) translateY(-150%);
  opacity: 0;
}

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

.nav-logo img {
  height: 60px;
}

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

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  padding: 0.5rem 1rem;
  border-radius: 20px; /* Botões mais arredondados */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn.login {
  color: #fff;
  border: 1px solid var(--primary-color);
}

.nav-btn.cadastro {
  background-color: var(--primary-color); /* Mudando para laranja */
  color: #fff;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
}
  /* Features Section */
  .features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .features-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
  }
  
  .feature-cards {
    display: grid;
    gap: 2rem;
  }
  
  .feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1);
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  .features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.5s;
  }
  
  .features-image img:hover {
    transform: scale(1.02);
  }
  
  /* API Section */
  .api-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .api-content h2 {
    color: var(--dark-bg);
    font-size: 2.0rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  
  .api-content .highlight {
    color: var(--primary-color);
    font-size: 1.5rem;
  }
  
  .api-features {
    margin-top: 2rem;
  }
  
  .api-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .api-feature:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.02);
  }
  
  .api-feature p {
    color: #333;
    line-height: 1.6;
    font-weight: 500;
  }
  
  @media (max-width: 768px) {
    .api-section {
      display: none;
    }
  }
  
  .check-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .code-preview {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .code-preview:hover {
    transform: translateY(-4px);
  }
  
  .code-window {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .window-controls {
    background: #2d2d2d;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
  }
  
  .window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
  }
  
  .window-controls span:nth-child(2) {
    background: #ffbd2e;
  }
  
  .window-controls span:nth-child(3) {
    background: #27c93f;
  }
  
  .code-window pre {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
  }
  
  .code-window code {
    color: #fff;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .cta-section {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .igaming-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(255, 108, 47, 0.1));
    border-radius: 20px;
    overflow: hidden;
  }
  
  .igaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
  }
  
  .igaming-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .igaming-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .feature-list {
    display: grid;
    gap: 1rem;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
  }
  
  .feature-item .check {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .feature-item p {
    margin: 0;
    font-size: 0.95rem;
  }
  
  .specialist-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s;
  }
  
  .specialist-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  .why-choose-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
  }
  
  .why-choose-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .feature-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 108, 47, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 108, 47, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 108, 47, 0.3);
  }
  
  .feature-box:hover::before {
    opacity: 1;
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 108, 47, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .feature-box:hover .feature-icon {
    background: rgba(255, 108, 47, 0.2);
    transform: scale(1.1);
  }
  
  .feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
  }
  
  .feature-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
  }
  
  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .platform-label {
      justify-content: center;
    }
  
    .cta-buttons {
      justify-content: center;
    }
  
    .companies {
      justify-content: center;
    }
  
    h1, h2 {
      font-size: 2rem;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  
    .phone-mockup {
      transform: none;
      margin-top: 2rem;
    }
  
    .features, .api-section {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
  
    .features-content h2 {
      font-size: 2rem;
    }
  
    .feature-icon {
      margin: 0 auto 1rem auto;
    }
  
    .api-feature {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .code-window {
      font-size: 0.8rem;
    }
  
    .igaming-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .igaming-text h2 {
      font-size: 2rem;
    }
  
    .feature-item:hover {
      transform: none;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .why-choose-section h2 {
      font-size: 2rem;
    }
  
    .feature-box:hover {
      transform: translateY(-5px);
    }
  }
  
  /* FAQ Section */
  .faq-section {
    background: linear-gradient(to bottom, #1a1a1a, #232324);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L50 50 L100 0" stroke="rgba(255,255,255,0.05)" fill="none"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .faq-section h2 {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .plus-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .plus-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
  }
  
  .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  /* Scale Section */
  .scale-section {
    background: linear-gradient(135deg, #FF6C2F, #ab3605);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 1000px;
  }
  
  .scale-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .scale-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .scale-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .scale-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .scale-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .scale-btn.create-account {
    background: #fff;
    color: #000;
  }
  
  .scale-btn.login {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .scale-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .faq-section h2 {
      font-size: 2rem;
    }
    
    .scale-section {
      margin: 2rem;
    }
    
    .scale-buttons {
      flex-direction: column;
    }
    
    .scale-btn {
      width: 100%;
    }
  }
  
  /* Footer */
  .footer {
    background: #2b2b2c;
    padding: 4rem 2rem;
    color: #fff;
    margin-top: 4rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo {
    height: 50px;
    width: 110px;
    margin-left: -17px;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-link:hover {
    color: var(--primary-color);
  }
  
  .footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: var(--primary-color);
  }
  
  .footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #FF6C2F;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-brand {
      align-items: center;
    }
  
    .social-links {
      justify-content: center;
    }
  
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      bottom: 1rem;
      right: 1rem;
    }
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #29292B; 
  }
  
  ::-webkit-scrollbar-thumb {
    background: #FF6C2F; 
    border-radius: 5px; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #e65a20; 
  }
  
  /* Awards Section */
  .awards-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #1a1a1a, #232324);
    position: relative;
    overflow: hidden;
  }
  
  .awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 108, 47, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .awards-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .awards-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .awards-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .stars {
    color: var(--primary-color);
    letter-spacing: 4px;
  }
  
  .awards-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    padding: 1rem;
    justify-content: center;
  }
  
  .award-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 350px; 
    margin: 0 auto;
  }
  
  .award-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
  }
  
  .award-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .award-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .award-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .award-card:hover .award-image img {
    transform: scale(1.1);
  }
  
  .award-card h3 {
    color: #fff;
    font-size: 1.5rem; 
    margin-bottom: 1rem;
  }
  
  .award-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem; 
    line-height: 1.8;
  }
  
  .award-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 108, 47, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .award-card:hover .award-glow {
    opacity: 1;
  }
  
  .award-card.featured {
    transform: scale(1.05);
    background: rgba(255, 108, 47, 0.1);
    border-color: var(--primary-color);
  }
  
  .award-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  @media (max-width: 1200px) {
    .awards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .awards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .awards-header h2 {
      font-size: 2rem;
    }
    .awards-subtitle {
      font-size: 1rem;
    }
    .award-image {
      width: 150px;
      height: 150px;
    }
  }
  
  @media (max-width: 480px) {
    .awards-grid {
      grid-template-columns: 1fr;
    }
    .award-card.featured {
      transform: none;
    }
    .award-card.featured:hover {
      transform: translateY(-10px);
    }
    .award-image {
      width: 160px;
      height: 160px;
    }
  }
  