:root {
    --dark-navy: #203046;
    --light-bg: #f9fbfb;
    --primary-blue: #3C2CE7;
    --text-dark: #333;
    --text-muted: #6c757d;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  /* Navigation */
  .navbar {
    background: rgba(32, 48, 70, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  /* Navbar transparente apenas na página inicial (index.php) */
  body.index-page .navbar {
    background: rgba(32, 48, 70, 0.1);
  }
  
  /* Navbar opaco quando rolar na página inicial */
  body.index-page .navbar.scrolled {
    background: rgba(32, 48, 70, 0.95);
  }
  
  .navbar-brand {
    color: white !important;
    font-size: 1.5rem;
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  
  .nav-link:hover {
    color: white !important;
  }
  
  .btn-primary {
    background: var(--primary-blue);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #2c8dc7;
    transform: translateY(-2px);
  }
  
  /* Hero Section - ocupando 100% da largura */
  .hero-section {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
    left: 0;
    right: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    /* Fallback caso o vídeo não carregue */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%23203046"/></svg>');
    background-size: cover;
    background-position: center;
  }
  
  /* Vídeo de fundo - ocupando 100% da largura */
  .hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    z-index: 0;
    /* Garantir que o vídeo cubra toda a área */
    pointer-events: none;
  }
  
  /* Overlay escuro sobre o vídeo */
  .hero-video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  /* Conteúdo centralizado sobre o vídeo */
  .hero-overlay {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Garantir que o container centralize o conteúdo */
  .hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Responsive para vídeo */
  @media (max-width: 768px) {
    .hero-section {
      width: 100%;
      left: 0;
      right: 0;
    }
    
    .hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  
  .hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .search-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
    z-index: 1;
  }
  
  .search-box input {
    padding: 18px 20px 18px 55px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .search-box input:focus {
    outline: none;
    box-shadow: 0 4px 30px rgba(57, 168, 229, 0.3);
  }
  
  /* Promo Banner */
  .promo-banner {
    background: linear-gradient(135deg, #0f1726 0%, #1a3a8a 100%);
    padding: 40px 0;
    margin: 0;
  }
  
  .promo-text {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    padding: 20px 60px;
  }
  
  .promo-text .highlight {
    color: var(--primary-blue);
  }
  
  .promo-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
  }
  
  /* Categories Section */
  .categories-section {
    background: white;
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
  }
  
  .see-all-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .see-all-link:hover {
    color: #2c8dc7;
  }
  
  .category-card {
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    align-items: flex-end;
  }
  
  .category-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  /* Testimonial Section */
  .testimonial-section {
    background: var(--light-bg);
    padding: 0 !important;
  }
  
  .testimonial-box {
    background: white;
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .quote-icon {
    color: var(--primary-blue);
    font-size: 2.5rem;
  }
  
  .testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  
  .community-box {
    background: var(--primary-blue);
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .community-text {
    color: white;
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
  }
  
  .community-box .btn-light {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
  }
  
  .community-box .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* FAQ Section */
  .faq-section {
    background: white;
    padding: 60px 0;
  }
  
  .faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
  }
  
  .accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
  }
  
  .accordion-button {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px 0;
    box-shadow: none !important;
  }
  
  .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-blue);
  }
  
  .accordion-button::after {
    color: var(--text-dark);
  }
  
  .accordion-body {
    padding: 0 0 20px 0;
    color: var(--text-muted);
  }
  
  /* Footer */
  .footer {
    background: var(--light-bg);
    border-top: 1px solid #e0e0e0;
  }
  
  .footer h6 {
    color: var(--dark-navy);
  }
  
  .footer a {
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: var(--primary-blue) !important;
  }
  
  .footer .bi-camera-fill {
    color: var(--primary-blue);
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .promo-text {
      font-size: 1.5rem;
      text-align: center;
      padding: 20px;
    }
  
    .promo-image {
      display: none;
    }
  
    .testimonial-box,
    .community-box {
      padding: 40px 30px;
    }
  
    .category-card {
      height: 150px;
    }
  }
  
  @media (max-width: 767px) {
    .hero-title {
      font-size: 1.5rem;
    }
  
    .search-box input {
      padding: 15px 15px 15px 45px;
      font-size: 0.9rem;
    }
  
    .category-card {
      height: 120px;
    }
  
    .category-title {
      font-size: 0.9rem;
    }
  
    .faq-title {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
  }