
    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes glow {
      0%, 100% {
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.4), 0 10px 30px rgba(76, 175, 80, 0.2);
      }
      50% {
        box-shadow: 0 0 45px rgba(76, 175, 80, 0.8), 0 15px 50px rgba(76, 175, 80, 0.3);
      }
    }

    @keyframes shimmer {
      0% {
        left: -100%;
      }
      100% {
        left: 100%;
      }
    }

    @keyframes pulseGreen {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.7;
        transform: scale(1.1);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes countDown {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    :root {
      --bg-main: #0A0E14;
      --bg-card: #1a1f2e;
      --green: #1F3D2B;
      --green-light: #2ECC71;
      --text: #F0F2F5;
      --text-secondary: #B8BCC4;
      --accent: #4CAF50;
      --accent-light: #66BB6A;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(135deg, #0A0E14 0%, #1a1f2e 50%, #0f1318 100%);
      color: var(--text);
      line-height: 1.6;
      position: relative;
      overflow-x: hidden;
      animation: fadeIn 0.8s ease-out;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        linear-gradient(0deg, transparent 24%, rgba(76, 175, 80, 0.03) 25%, rgba(76, 175, 80, 0.03) 26%, transparent 27%, transparent 74%, rgba(76, 175, 80, 0.03) 75%, rgba(76, 175, 80, 0.03) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(76, 175, 80, 0.03) 25%, rgba(76, 175, 80, 0.03) 26%, transparent 27%, transparent 74%, rgba(76, 175, 80, 0.03) 75%, rgba(76, 175, 80, 0.03) 76%, transparent 77%, transparent);
      background-size: 80px 80px;
      pointer-events: none;
      z-index: 1;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 2rem;
      position: relative;
      z-index: 2;
    }

    header {
      text-align: center;
      padding: 5rem 1rem 3rem;
      position: relative;
      animation: slideInUp 0.8s ease-out;
      background: radial-gradient(ellipse at center, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
      border-bottom: 2px solid rgba(76, 175, 80, 0.2);
    }

    header img {
      animation: float 3s ease-in-out infinite, slideInUp 0.8s ease-out 0.1s both;
      filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.6)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    }

    header h1 {
      font-family: 'Anton', sans-serif;
      font-size: 3.5rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 50%, #4CAF50 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
      animation: slideInUp 0.8s ease-out 0.2s both;
      font-weight: 900;
    }

    header p {
      margin-top: 1rem;
      font-size: 1.2rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      animation: slideInUp 0.8s ease-out 0.3s both;
    }

    .info-box {
      margin-top: 2rem;
      padding: 2rem;
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
      border: 2px solid rgba(76, 175, 80, 0.4);
      border-left: 4px solid var(--accent);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      animation: slideInUp 0.8s ease-out 0.4s both;
      border-radius: 8px;
      transition: all 0.4s ease;
      box-shadow: 0 8px 32px rgba(76, 175, 80, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .info-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .info-box:hover {
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.08) 100%);
      box-shadow: 0 12px 40px rgba(76, 175, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }

    .info-box:hover::before {
      left: 100%;
    }

    .info-box p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--text);
      position: relative;
      z-index: 1;
    }

    .btn {
      display: inline-block;
      margin-top: 2rem;
      padding: 1.2rem 3rem;
      background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 50%, #4CAF50 100%);
      color: #000;
      text-decoration: none;
      font-weight: 800;
      border-radius: 8px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: none;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 0.95rem;
      box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4), 0 0 20px rgba(76, 175, 80, 0.2);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
      z-index: 1;
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .btn:hover {
      box-shadow: 0 15px 40px rgba(76, 175, 80, 0.7), 0 0 30px rgba(76, 175, 80, 0.4);
      transform: translateY(-3px);
      animation: glow 1.5s ease-in-out infinite;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn:hover::after {
      opacity: 1;
    }

    .btn:active {
      transform: translateY(-1px);
    }

    section {
      margin: 5rem 0;
      animation: slideInUp 0.8s ease-out;
    }

    section h2 {
      font-size: 2.2rem;
      margin-bottom: 3rem;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      padding-bottom: 1.5rem;
      border-bottom: 3px solid rgba(76, 175, 80, 0.3);
      position: relative;
      transition: all 0.4s ease;
      font-weight: 800;
      color: var(--text);
    }

    section h2::before {
      content: '⬡ ';
      color: var(--accent);
      animation: pulseGreen 2s ease-in-out infinite;
      margin-right: 10px;
    }

    section h2:hover {
      border-bottom-color: var(--accent);
      text-shadow: 0 0 25px rgba(76, 175, 80, 0.4);
      color: var(--accent-light);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background: linear-gradient(135deg, #1a1f2e 0%, #232836 100%);
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid rgba(76, 175, 80, 0.15);
      border-left: 4px solid var(--accent);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      animation: slideInUp 0.8s ease-out;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(76, 175, 80, 0.1);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.15), transparent);
      transition: left 0.6s ease;
      z-index: 0;
    }

    .card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    .card:nth-child(1) { animation-delay: 0.1s; }
    .card:nth-child(2) { animation-delay: 0.2s; }
    .card:nth-child(3) { animation-delay: 0.3s; }
    .card:nth-child(4) { animation-delay: 0.4s; }
    .card:nth-child(5) { animation-delay: 0.5s; }
    .card:nth-child(6) { animation-delay: 0.6s; }
    .card:nth-child(7) { animation-delay: 0.7s; }
    .card:nth-child(8) { animation-delay: 0.8s; }
    .card:nth-child(9) { animation-delay: 0.9s; }

    .card:hover {
      border-left: 4px solid var(--accent-light);
      box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3), 0 5px 15px rgba(76, 175, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transform: translateY(-8px);
      background: linear-gradient(135deg, #1f2533 0%, #282f3f 100%);
    }

    .card:hover::before {
      left: 100%;
    }

    .card:hover::after {
      opacity: 1;
    }

    .card h3 {
      margin-bottom: 1rem;
      color: var(--accent-light);
      font-weight: 800;
      text-transform: uppercase;
      font-size: 1.1rem;
      letter-spacing: 1.5px;
      position: relative;
      z-index: 1;
      transition: all 0.4s ease;
    }

    .card:hover h3 {
      text-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
      color: #2ECC71;
    }

    .card p {
      position: relative;
      z-index: 1;
      opacity: 0.95;
      transition: opacity 0.4s ease;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    .card:hover p {
      opacity: 1;
    }

    .price {
      text-align: center;
      background: linear-gradient(135deg, #1F3D2B 0%, #2a5f42 50%, #1F3D2B 100%);
      padding: 4rem 2rem;
      border-radius: 12px;
      border: 2px solid rgba(76, 175, 80, 0.5);
      box-shadow: 0 15px 50px rgba(76, 175, 80, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      animation: slideInUp 0.8s ease-out;
    }

    .price::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .price::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .price:hover {
      box-shadow: 0 20px 60px rgba(76, 175, 80, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }

    .price p {
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 1;
    }

    .price del {
      opacity: 0.6;
      font-size: 1.3rem;
      text-decoration-color: var(--accent);
    }

    .price h2 {
      font-size: 3.5rem;
      margin: 1.5rem 0;
      font-family: 'Anton', sans-serif;
      background: linear-gradient(135deg, #66BB6A 0%, #2ECC71 50%, #66BB6A 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 2px;
      position: relative;
      z-index: 1;
      font-weight: 900;
    }

    .faq-container {
      max-width: 800px;
      margin: auto;
    }

    .faq-item {
      background: linear-gradient(135deg, #1a1f2e 0%, #232836 100%);
      padding: 2rem;
      border: 1px solid rgba(76, 175, 80, 0.15);
      border-left: 4px solid var(--accent);
      margin-bottom: 1.8rem;
      border-radius: 10px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: slideInUp 0.8s ease-out;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    }

    .faq-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
      transition: left 0.6s ease;
      z-index: 0;
    }

    .faq-item:hover {
      box-shadow: 0 12px 40px rgba(76, 175, 80, 0.2);
      transform: translateY(-5px);
      border-left: 4px solid var(--accent-light);
    }

    .faq-item:hover::before {
      left: 100%;
    }

    .faq-item h4 {
      color: var(--accent-light);
      font-weight: 800;
      font-size: 1.05rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.4s ease;
      letter-spacing: 1px;
      position: relative;
      z-index: 1;
    }

    .faq-item h4:hover {
      text-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
      color: #2ECC71;
    }

    .faq-item p {
      opacity: 0.95;
      line-height: 1.9;
      position: relative;
      z-index: 1;
      font-size: 0.95rem;
    }

    footer {
      text-align: center;
      padding: 3rem 2rem;
      opacity: 1;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      border-top: 2px solid var(--accent);
      margin-top: 3rem;
      background: linear-gradient(135deg, rgba(11, 13, 16, 0.98) 0%, rgba(26, 31, 46, 0.95) 100%);
      color: var(--accent);
      text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
      font-weight: 700;
      animation: slideInUp 0.8s ease-out;
      transition: all 0.4s ease;
      box-shadow: 0 -5px 20px rgba(76, 175, 80, 0.1);
    }

    footer:hover {
      background: linear-gradient(135deg, rgba(11, 13, 16, 0.99) 0%, rgba(26, 31, 46, 0.98) 100%);
      box-shadow: 0 -8px 30px rgba(76, 175, 80, 0.2);
      text-shadow: 0 0 20px rgba(76, 175, 80, 0.7);
    }

    footer p.footer-extra {
      text-align: center;
      margin: 0;
      font-size: 0.5rem;
      line-height: 1.4;
      opacity: 1;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    /* Progress Bar */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background: linear-gradient(90deg, #4CAF50, #66BB6A, #4CAF50);
      background-size: 200% 100%;
      animation: gradientShift 3s ease infinite;
      z-index: 9998;
      box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
    }

    /* Badges de Confiança */
    .badges {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 2rem 0;
      flex-wrap: wrap;
      animation: slideInUp 0.8s ease-out 0.6s both;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.2rem;
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
      border: 1px solid rgba(76, 175, 80, 0.3);
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent-light);
      transition: all 0.4s ease;
    }

    .badge:hover {
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(76, 175, 80, 0.1) 100%);
      box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
      transform: translateY(-2px);
    }

    .badge::before {
      content: '✓';
      font-weight: 900;
      font-size: 1rem;
    }

    .timer-section {
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
      border: 2px solid rgba(76, 175, 80, 0.4);
      border-radius: 12px;
      padding: 1.2rem;
      margin: -2.5rem auto 0;
      max-width: 600px;
      text-align: center;
      animation: slideInUp 0.8s ease-out;
      position: relative;
      z-index: 10;
    }

    .timer-section h3 {
      font-size: 0.9rem;
      color: var(--accent-light);
      margin-bottom: 0.5rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .timer {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin: 0.5rem 0;
      flex-wrap: wrap;
    }

    .timer-item {
      background: linear-gradient(135deg, #1a1f2e 0%, #232836 100%);
      padding: 0.6rem 0.8rem;
      border-radius: 6px;
      min-width: 60px;
      border: 1px solid rgba(76, 175, 80, 0.3);
      animation: countDown 2s ease-in-out infinite;
    }

    .timer-number {
      font-size: 1.2rem;
      font-weight: 900;
      color: var(--green-light);
      font-family: 'Anton', sans-serif;
    }

    .timer-label {
      font-size: 0.65rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      font-weight: 700;
      margin-top: 0.2rem;
      letter-spacing: 0.5px;
    }

    /* Section Divider */
    .section-divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.5), transparent);
      margin: 3rem 0;
      position: relative;
    }

    .section-divider::after {
      content: '◆';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: linear-gradient(135deg, #0A0E14 0%, #1a1f2e 50%, #0f1318 100%);
      padding: 0 1rem;
      color: var(--accent);
      font-size: 1.2rem;
      animation: pulseGreen 2s ease-in-out infinite;
    }

    /* Benefícios com Ícones */
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
      border-left: 3px solid var(--accent);
      border-radius: 8px;
      transition: all 0.4s ease;
      animation: slideInUp 0.8s ease-out;
    }

    .benefit-item:hover {
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.08) 100%);
      transform: translateX(5px);
      box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
    }

    .benefit-icon {
      font-size: 2rem;
      min-width: 2.5rem;
      text-align: center;
      animation: float 3s ease-in-out infinite;
    }

    .benefit-text {
      flex: 1;
    }

    .benefit-text h4 {
      color: var(--accent-light);
      font-weight: 700;
      margin-bottom: 0.3rem;
      font-size: 0.95rem;
    }

    .benefit-text p {
      color: var(--text-secondary);
      font-size: 0.85rem;
      line-height: 1.5;
    }

    /* Floating WhatsApp Button */
    .floating-whatsapp {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 9997;
      animation: slideInUp 0.8s ease-out 0.8s both, bounce 2s ease-in-out 2.8s infinite;
      text-decoration: none;
    }

    .floating-whatsapp:hover {
      transform: scale(1.15);
      box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
    }

    .floating-whatsapp:active {
      transform: scale(0.95);
    }

    .floating-whatsapp::before {
      content: '💬';
      font-size: 1.8rem;
    }

    @media (max-width: 600px) {
      header {
        padding: 3rem 1rem 2rem;
      }

      header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
      }

      header p {
        font-size: 1rem;
      }

      section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
      }

      .price h2 {
        font-size: 2.5rem;
      }

      .price {
        padding: 2.5rem 1.5rem;
      }

      .grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.2rem;
      }

      .card {
        padding: 1.5rem;
      }

      .card h3 {
        font-size: 0.9rem;
      }

      .card p {
        font-size: 0.8rem;
      }

      .btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
      }

      .info-box {
        padding: 1.5rem;
      }

      .info-box p {
        font-size: 0.95rem;
      }

      .faq-item {
        padding: 1.5rem;
      }

      .faq-item h4 {
        font-size: 0.95rem;
      }

      .faq-item p {
        font-size: 0.85rem;
      }

      .footer {
        font-size: 0.8rem;
        padding: 1rem 0.2rem;
      }

      .footer h2.footer-extra {
        padding: 1rem 0.2rem;
        font-size: 0.3rem;
      }
    }