/* Estilo Geral */
body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
    color: #333;
  }
  
  /* Navbar */
  .navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    border-bottom: 2px solid #fff;
  }
  
  /* Hero Section */
  #gratis-hero {
    height: 50vh;
    background: linear-gradient(to right, #000001, #6322F6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 0;
  }
  
  #gratis-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out forwards;
  }
  
  #gratis-hero .highlight-box {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  #gratis-hero .lead {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  #gratis-hero .highlight-text {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  #gratis-hero .breadcrumb {
    margin-bottom: 0;
  }
  
  #gratis-hero .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
  }
  
  #gratis-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Seção de Texto Informativo */
  #gratis-info {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .section-header {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 39px;
    line-height: 51px;
    color: rgb(64, 84, 178);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  
  .section-subheader {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: rgb(58, 58, 58);
    margin-bottom: 2rem;
  }
  
  .informative-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
  }
  
  .informative-text p {
    margin-bottom: 1rem;
  }
  
  /* Seção de Promoções */
  #gratis-promocoes {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .card {
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background-color: #26458D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .card-icon i {
    color: #fff;
    font-size: 24px;
  }
  
  .card-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: rgb(58, 58, 58);
    margin-bottom: 1rem;
  }
  
  .card-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
  }
  
  /* Rodapé */
  footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 40px 0;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    #gratis-hero {
      height: auto;
      min-height: 60vh;
      padding: 80px 20px 40px;
    }
    
    #gratis-hero h1 {
      font-size: 1.8rem;
      line-height: 1.3;
      margin-bottom: 1rem;
    }
    
    .hero-badge {
      font-size: 0.8rem;
      padding: 4px 12px;
    }
    
    .highlight-box {
      padding: 1rem;
    }
    
    .lead {
      font-size: 1rem;
      line-height: 1.4;
    }
    
    .section-header {
      font-size: 2rem;
    }
    
    .section-subheader {
      font-size: 1rem;
    }
    
    .informative-text {
      font-size: 1rem;
    }
  }
  
  /* Benefits List */
  .benefits-list {
    margin: 2rem 0;
  }
  
  .benefits-list p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgb(58, 58, 58);
    margin-bottom: 1rem;
  }
  
  .benefits-list i {
    color: #26458D;
    margin-right: 10px;
  }
  
  /* Step Cards */
  .step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .step-card:hover {
    transform: translateY(-5px);
  }
  
  .step-card h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: rgb(58, 58, 58);
    margin: 1rem 0;
  }
  
  .step-card p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
  }
  
  /* Table Cards */
  .table-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .table-card:hover {
    transform: translateY(-5px);
  }
  
  .table-card h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgb(64, 84, 178);
  }
  
  .table-card .table {
    margin-bottom: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }
  
  .table-card th {
    background: #26458D;
    color: #fff;
    font-weight: 600;
    border: none;
  }
  
  .table-card td {
    vertical-align: middle;
    color: rgb(58, 58, 58);
    border-color: #e5e7eb;
  }
  
  /* Submit Video Section */
  #submit-video {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem 0;
  }
  
  #submit-video h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 700;
    color: rgb(64, 84, 178);
  }
  
  #submit-video .btn-primary {
    background: #26458D;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  #submit-video .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #1a3266;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .table-card {
      overflow-x: auto;
    }
    
    .table-card table {
      font-size: 0.9rem;
    }
  }
  
  /* Highlight Box */
  .highlight-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .highlight-box .lead {
    font-size: 1.25rem;
    color: #26458D;
    margin-bottom: 0.5rem;
  }
  
  .highlight-text {
    font-size: 1rem;
    color: rgb(58, 58, 58);
    margin-bottom: 0;
  }
  
  /* Benefits Grid */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
  }
  
  .benefit-item i {
    font-size: 1.25rem;
    color: #26458D;
  }
  
  /* Steps Container */
  .steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 2rem auto;
    gap: 1rem;
  }
  
  .step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0.5rem;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    background: #26458D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .step-connector {
    flex: 0.5;
    height: 2px;
    background: #26458D;
    position: relative;
    top: -30px;
  }
  
  /* Rewards Cards */
  .rewards-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    height: 100%;
  }
  
  .rewards-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .rewards-header i {
    font-size: 2rem;
    color: #26458D;
  }
  
  .rewards-header h3 {
    font-size: 1.25rem;
    margin: 0;
  }
  
  .rewards-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .reward-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
  }
  
  .reward-item.highlight {
    background: #26458D;
    color: #fff;
  }
  
  .btn-view-more {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: #f8f9fa;
    color: #26458D;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-view-more:hover {
    background: #26458D;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
      padding: 0 1rem;
    }
    
    .steps-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    
    .step-connector {
      width: 2px;
      height: 20px;
    }
    
    .rewards-card {
      margin-bottom: 1rem;
    }
    
    .reward-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
    
    .reward-value {
      font-size: 1.1rem;
      font-weight: bold;
    }
    
    .reward-req {
      font-size: 0.8rem;
    }
  }
  
  /* Ajustes para telas muito pequenas */
  @media (max-width: 375px) {
    .benefit-item {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
    }
    
    .benefit-item i {
      margin-bottom: 0.5rem;
    }
    
    .rewards-header {
      flex-direction: column;
      text-align: center;
    }
    
    .btn-view-more {
      padding: 0.5rem;
      font-size: 0.9rem;
    }
  }
  
  /* Ajustes para telas maiores */
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
    
    .steps-container {
      max-width: 800px;
    }
    
    .rewards-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Rewards Preview */
  .rewards-preview {
    margin-bottom: 1.5rem;
  }
  
  /* Table Styles */
  .table-responsive {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .table {
    margin-bottom: 0;
  }
  
  .table th {
    background: #26458D;
    color: #fff;
    font-weight: 600;
    padding: 12px;
  }
  
  .table td {
    padding: 12px;
    vertical-align: middle;
  }
  
  .table tr:nth-child(even) {
    background-color: #f8f9fa;
  }
  
  /* Collapse Button */
  .btn-view-more {
    width: 100%;
    padding: 10px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    color: #26458D;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-view-more:hover {
    background: #26458D;
    color: #fff;
  }
  
  /* Form Container */
  .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .form-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .rewards-card {
      margin-bottom: 2rem;
    }
    
    .table {
      font-size: 0.9rem;
    }
    
    .form-container iframe {
      min-height: 700px;
    }
  }
  
  /* Steps Section */
  #how-to-participate {
    background-color: #f8f9fa;
    padding: 60px 0;
  }
  
  .steps-container {
    max-width: 1000px;
    margin: 3rem auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .step-item {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .step-item:hover {
    transform: translateY(-5px);
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    background: #26458D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .step-icon i {
    color: #fff;
    font-size: 1.5rem;
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #1FC617;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .step-content h4 {
    color: #26458D;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .step-details {
    text-align: left;
  }
  
  .step-main {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .step-tips {
    font-size: 0.9rem;
  }
  
  .step-tips p {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .step-tips i {
    color: #1FC617;
    font-size: 0.8rem;
  }
  
  .step-connector {
    flex: 0.1;
    height: 2px;
    background: #26458D;
    position: relative;
    top: 100px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .steps-container {
      flex-direction: column;
      gap: 2rem;
    }
    
    .step-connector {
      width: 2px;
      height: 40px;
      margin: 0 auto;
    }
    
    .step-item {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 576px) {
    .step-item {
      padding: 1rem;
    }
    
    .step-icon {
      width: 40px;
      height: 40px;
    }
    
    .step-icon i {
      font-size: 1.2rem;
    }
    
    .step-content h4 {
      font-size: 1.1rem;
    }
    
    .step-main {
      font-size: 0.9rem;
    }
    
    .step-tips {
      font-size: 0.8rem;
    }
  }
  
  /* Page Navigation */
  #page-nav {
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    padding: 0.5rem;
  }
  
  .nav-btn {
    color: #26458D;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f2f5;
    min-width: 160px;
    justify-content: center;
  }
  
  .nav-btn i {
    font-size: 1rem;
  }
  
  .nav-btn:hover {
    background: #26458D;
    color: #fff;
    transform: translateY(-2px);
  }
  
  .btn-highlight {
    background: #1FC617;
    color: #fff;
  }
  
  .btn-highlight:hover {
    background: #1aa512;
  }
  
  /* Botão de Compra */
  .btn-buy {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: #fff;
    min-width: auto !important;
    padding: 0.75rem 1.25rem;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
  }
  
  .btn-buy:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: #fff;
    transform: translateY(-2px);
  }
  
  .btn-buy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
  
  .btn-buy-main {
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .btn-buy-sub {
    font-size: 0.8rem;
    opacity: 0.9;
  }
  
  .btn-buy i {
    font-size: 1.2rem;
    margin-left: 0.5rem;
  }
  
  /* Animação pulsante para o botão de compra */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .btn-buy {
    animation: pulse 2s infinite;
  }
  
  .btn-buy:hover {
    animation: none;
  }
  
  /* Ajustes responsivos */
  @media (min-width: 992px) {
    .nav-buttons {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .btn-buy {
      grid-column: auto;
    }
  }
  
  @media (max-width: 768px) {
    .btn-buy-main {
      font-size: 1rem;
    }
    
    .btn-buy-sub {
      font-size: 0.75rem;
    }
  }
  
  @media (max-width: 576px) {
    .nav-buttons {
      grid-template-columns: 1fr;
    }
    
    .nav-btn {
      width: 100%;
    }
  }
  
  /* Smooth Scroll */
  html {
    scroll-behavior: smooth;
  }
  
  /* Offset for fixed header */
  :target {
    scroll-margin-top: 80px;
  }
  
  /* CTA Card no meio do tutorial */
  .cta-card {
    background: linear-gradient(135deg, #26458D, #1a3266);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  .cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  .cta-features i {
    color: #1FC617;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1FC617;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: #1aa512;
    color: #fff;
    transform: translateY(-2px);
  }
  
  /* Floating Menu */
  .floating-menu {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
  }
  
  .floating-menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #26458D;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .floating-menu-toggle:hover {
    transform: scale(1.1);
  }
  
  .floating-menu-items {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .floating-menu.active .floating-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .menu-item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .floating-menu-item {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26458D;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .mobile-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    min-width: 120px;
    text-align: center;
  }
  
  /* Importante: Esta é a regra que faz os tooltips aparecerem quando o menu está ativo */
  .floating-menu.active .mobile-tooltip {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid rgba(0, 0, 0, 0.95);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  
  /* Estilo especial para o tooltip de compra */
  .buy-tooltip {
    background: rgba(255, 71, 87, 0.95);
  }
  
  .buy-tooltip::after {
    border-left-color: rgba(255, 71, 87, 0.95);
  }
  
  /* Ajustes mobile */
  @media (max-width: 576px) {
    .floating-menu {
      bottom: 1rem;
      right: 1rem;
    }
    
    .floating-menu-toggle {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
    
    .floating-menu-items {
      bottom: 65px;
    }
    
    .floating-menu-item {
      width: 35px;
      height: 35px;
    }
    
    .mobile-tooltip {
      font-size: 12px;
      padding: 6px 10px;
      right: calc(100% + 12px);
    }
  }
  
  /* Remover estados hover/active que possam interferir */
  .menu-item-wrapper:hover .mobile-tooltip,
  .menu-item-wrapper:active .mobile-tooltip,
  .menu-item-wrapper:focus .mobile-tooltip {
    opacity: 0;
    visibility: hidden;
  }
  
  /* Hero Badges */
  .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  .trust-badges i {
    color: #1FC617;
  }
  
  /* Social Proof */
  .social-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: -30px auto 0;
    max-width: 600px;
    text-align: center;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-item i {
    font-size: 1.8rem;
    color: #6322F6;
  }
  
  .stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000001;
    line-height: 1.2;
  }
  
  .stat-label {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
  }
  
  /* Ajuste responsivo */
  @media (max-width: 768px) {
    .social-stats {
      flex-direction: column;
      gap: 1.5rem;
      margin-top: -20px;
      padding: 1.25rem;
    }
    
    .stat-item {
      justify-content: center;
    }
  }
  
  /* Testimonials Section */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-rating {
    color: #FFD700;
    margin-bottom: 0.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: #6322F6;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .trust-badges {
      flex-direction: column;
      gap: 1rem;
    }
    
    .social-stats {
      flex-direction: column;
      gap: 2rem;
      margin-top: -30px;
      padding: 1.5rem;
    }
    
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Ajustes responsivos gerais */
  @media (max-width: 768px) {
    /* Hero Section */
    #gratis-hero {
      height: auto;
      min-height: 60vh;
      padding: 80px 20px 40px;
    }

    #gratis-hero h1 {
      font-size: 1.8rem;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .hero-badge {
      font-size: 0.8rem;
      padding: 4px 12px;
    }

    .highlight-box {
      padding: 1rem;
    }

    .lead {
      font-size: 1rem;
      line-height: 1.4;
    }

    /* Social Stats */
    .social-stats {
      margin: -20px 15px 0;
      padding: 1rem;
      gap: 2rem;
    }

    .stat-item {
      justify-content: center;
    }

    .stat-number {
      font-size: 1.5rem;
    }

    /* Navigation */
    .nav-buttons {
      padding: 0.5rem;
      gap: 0.5rem;
    }

    .nav-btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }

    .btn-buy {
      padding: 0.75rem 1rem;
    }

    .btn-buy-main {
      font-size: 1rem;
    }

    .btn-buy-sub {
      font-size: 0.7rem;
    }

    /* Steps Section */
    .steps-container {
      padding: 0 1rem;
    }

    .step-item {
      padding: 1.25rem;
    }

    .step-content h4 {
      font-size: 1.1rem;
    }

    .step-main {
      font-size: 0.9rem;
    }

    /* Rewards Section */
    .rewards-card {
      padding: 1rem;
    }

    .rewards-header h3 {
      font-size: 1.1rem;
    }

    .table {
      font-size: 0.85rem;
    }

    /* CTA Card */
    .cta-card {
      padding: 1.5rem 1rem;
      margin: 1rem;
    }

    .cta-card h3 {
      font-size: 1.4rem;
    }

    .cta-text {
      font-size: 0.9rem;
    }

    .cta-button {
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
    }
  }
  
  /* Ajustes específicos para telas muito pequenas */
  @media (max-width: 375px) {
    #gratis-hero h1 {
      font-size: 1.5rem;
    }

    .nav-btn {
      padding: 0.5rem;
      font-size: 0.8rem;
    }

    .stat-number {
      font-size: 1.3rem;
    }

    .stat-label {
      font-size: 0.75rem;
    }

    .step-icon {
      width: 35px;
      height: 35px;
    }

    .step-icon i {
      font-size: 1rem;
    }

    .rewards-preview {
      font-size: 0.8rem;
    }
  }
  
  /* Melhorar espaçamentos em telas médias */
  @media (min-width: 769px) and (max-width: 991px) {
    .container {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .social-stats {
      max-width: 80%;
    }

    .steps-container {
      gap: 2rem;
    }
  }
  
  /* Adicionar ao CSS existente */
  .floating-menu-item.floating-buy {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    animation: pulse 2s infinite;
  }
  
  .floating-menu-item.floating-buy:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    animation: none;
  }
  
  .buy-tooltip {
    background: rgba(255, 71, 87, 0.95);
    font-weight: 600;
  }
  
  .buy-tooltip::after {
    border-left-color: rgba(255, 71, 87, 0.95);
  }
  
  /* Ajustar posição dos itens */
  .floating-menu-items {
    gap: 1rem;
  }
  
  @media (max-width: 576px) {
    .floating-menu-items {
      bottom: 65px;
    }
    
    .floating-menu-item.floating-buy {
      width: 40px;
      height: 40px;
    }
  } 