:root {
    --azul-escuro: #00264D;
    --dourado: #FFD700;
    --cinza-claro: #f8f8f8;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  header {
    background-color: var(--azul-escuro);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }
  
  header img {
    height: 70px;
  }
  
  .header-contact {
    color: white;
    text-align: right;
  }
  
  .hero {
    background: linear-gradient(rgba(0,38,77,0.8), rgba(0,38,77,0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
  
  .hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .cta-button {
    background-color: var(--dourado);
    color: var(--azul-escuro);
    font-weight: bold;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.6);
  }
  
  .section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    color: var(--azul-escuro);
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--dourado);
    margin: 15px auto 0;
  }
  
  .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .benefit {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .benefit:hover {
    transform: translateY(-10px);
  }
  
  .benefit h3 {
    color: var(--azul-escuro);
    font-size: 1.5rem;
    margin-top: 0;
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    color: var(--dourado);
    margin-bottom: 1rem;
  }
  
  .loss-gain {
    background-color: #fff8e1;
    padding: 1rem;
    border-left: 4px solid var(--dourado);
    margin: 1rem 0;
  }
  
  .loss {
    color: #d32f2f;
    font-weight: bold;
  }
  
  .gain {
    color: #388e3c;
    font-weight: bold;
  }
  
  .testimonials {
    background-color: var(--cinza-claro);
  }
  
  .testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    font-weight: bold;
    color: var(--azul-escuro);
  }
  
  .form-section {
    background-color: var(--azul-escuro);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .form-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .form-section h2 {
    margin-top: 0;
  }
  
  .form-section p {
    margin-bottom: 2rem;
  }
  
  .form-section input, .form-section button {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
  }
  
  .form-section button {
    background-color: var(--dourado);
    color: var(--azul-escuro);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .form-section button:hover {
    background-color: #ffc600;
  }
  
  .guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .guarantee-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--dourado);
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    text-decoration: none;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  footer {
    background-color: var(--azul-escuro);
    color: white;
    text-align: center;
    padding: 2rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: var(--dourado);
  }
  
  .credits {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .countdown {
    background-color: #d32f2f;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-weight: bold;
  }
  
  /* Popup de Saída */
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  .popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    color: #333;
  }
  
  .close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .popup h3 {
    color: var(--azul-escuro);
    margin-top: 0;
  }
  
  .popup input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .popup button {
    background-color: var(--dourado);
    color: var(--azul-escuro);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      text-align: center;
    }
    
    .header-contact {
      margin-top: 1rem;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .section {
      padding: 3rem 1rem;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }