.highlight-image {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: block;
  width: 100%;
  height: auto;
}

.image-loader {
  width: 64px;
  height: 64px;
  border: 6px solid #ccc;
  border-top: 6px solid #fa9f08;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

 :root {
      --primary-color: #fa9f08;
      --primary-dark: #e8900a;
      --button-color: #2E7D32;
      --button-dark: #1B5E20;
      --text-dark: #2d3748;
      --text-light: #718096;
      --text-white: #ffffff;
      --bg-light: #f8f9fa;
      --bg-white: #ffffff;
      --bg-dark: #1a1a1a;
      --border-color: #e2e8f0;
      --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      --border-radius: 0.75rem;
      --border-radius-lg: 1rem;
      --border-radius-xl: 1.5rem;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* Header Superior */
    .header-section {
      background: #d4a017;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-content {
      display: flex;
      align-items: center;
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .header-logo {
      width: 60px;
      height: 60px;
      background: #000000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-logo img {
      width: 80%;
      height: auto;
      filter: brightness(0) saturate(100%) hue-rotate(60deg);
    }

    .header-text {
      font-family: 'Inter', sans-serif;
      font-size: 1.4rem;
      color: #000000;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Bloco de Destaque Principal (CTA Inicial) */
    .highlight-section {
      background: #000000;
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .highlight-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .highlight-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 6vw, 3rem);
      font-weight: 500;
      color: var(--primary-color);
      line-height: 1.4;
      text-transform: lowercase;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .cta-button {
      background: var(--button-color);
      color: #ffffff;
      border: none;
      padding: 1.2rem 2.5rem;
      font-size: 1.2rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 2rem;
      box-shadow: 0 6px 12px rgba(46, 125, 50, 0.4);
    }

    .cta-button:hover {
      background: var(--button-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(46, 125, 50, 0.6);
    }

    .delivery-note {
      display: block;
      margin-top: 1.5rem;
      font-size: 1rem;
      color: var(--primary-color);
      opacity: 0.9;
      font-weight: 500;
    }

    /* Bloco Intermediário (Convite à Ação) */
    .invite-section {
      background: #ffffff;
      min-height: 30vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }

    .invite-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .invite-title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 500;
      color: #ff6f91;
      line-height: 1.3;
      text-transform: lowercase;
    }

    /* Botão Verde (Chamada de Clique) */
    .button-section {
      background: #ffffff;
      padding: 3rem 0;
      display: flex;
      justify-content: center;
    }

    .action-button {
      background: #006400;
      color: #ffffff;
      border: none;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: lowercase;
      box-shadow: 0 4px 8px rgba(0, 100, 0, 0.3);
    }

    .action-button:hover {
      background: #004d00;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 100, 0, 0.4);
    }

    /* Rodapé de Ação Secundária */
    .secondary-action-section {
      background: #ff4500;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
    }

    .secondary-action-content {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .secondary-button {
      background: #ffffff;
      color: #ff4500;
      border: none;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: lowercase;
    }

    .secondary-button:hover {
      background: #f0f0f0;
      transform: translateY(-1px);
    }

    .timer-container {
      background: #ffffff;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .timer-text {
      font-family: 'Inter', monospace;
      font-size: 1rem;
      color: #ff4500;
      font-weight: 600;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .header-section {
        height: 60px;
        padding: 0 1rem;
      }
      .header-logo {
        width: 50px;
        height: 50px;
      }
      .header-text {
        font-size: 1.1rem;
      }
      .highlight-section {
        min-height: 50vh;
        padding: 1rem;
      }
      .highlight-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }
      .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
      }
      .invite-section {
        min-height: 40vh;
        padding: 1rem;
      }
      .action-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
      }
      .secondary-action-section {
        height: 80px;
        padding: 0 1rem;
      }
      .secondary-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
      .timer-container {
        padding: 0.25rem 0.75rem;
      }
      .timer-text {
        font-size: 0.9rem;
      }
    }

    /* Efeito de fundo no highlight para modernidade */
    .highlight-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(250, 159, 8, 0.1) 0%, transparent 70%);
      z-index: 1;
    }

    /* Form Section */
    .form-section {
      background: var(--bg-light);
      padding: 4rem 1rem;
    }

    .form-container {
      max-width: 600px;
      margin: 0 auto;
    }

    .form-card {
      background: var(--bg-white);
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-md);
      padding: 2.5rem;
      text-align: center;
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      color: var(--text-dark);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .form-subtitle {
      color: var(--text-light);
      margin-bottom: 2rem;
      font-size: 1rem;
    }

    .urgency-banner {
      background: #fff3cd;
      border: 1px solid #ffeaa7;
      color: #856404;
      padding: 1rem;
      border-radius: var(--border-radius);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-weight: 500;
    }

    .mini-faq {
      background: var(--bg-light);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      margin-bottom: 2rem;
      text-align: left;
    }

    .mini-faq h3 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
      font-size: 1.1rem;
    }

    .faq-item {
      margin-bottom: 1rem;
      padding-bottom: 1rem;
    }

    .faq-item:not(:last-child) {
      border-bottom: 1px solid var(--border-color);
    }

    .faq-item strong {
      color: var(--text-dark);
      display: block;
      margin-bottom: 0.25rem;
    }

    .faq-item span {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .modern-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .modern-input {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--border-color);
      border-radius: var(--border-radius);
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .modern-input:focus {
      outline: none;
      border-color: var(--primary-color);
    }

    .submit-button {
      background: var(--primary-color);
      color: var(--text-white);
      border: none;
      padding: 1rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: var(--border-radius);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-button:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    /* Section Styling */
    .section {
      padding: 4rem 1rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-light);
      font-size: 1.1rem;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Main Title Section */
    .main-title-section {
      background: var(--bg-dark);
      color: var(--text-white);
    }

    .main-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .highlight {
      color: var(--primary-color);
      font-weight: 600;
    }

    /* About Section */
    .about-section {
      background: var(--bg-white);
    }

    .about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .about-text {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-light);
      margin-bottom: 1.5rem;
    }

    /* Testimonials Section */
    .testimonials-section {
      background: var(--bg-light);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--bg-white);
      border-radius: var(--border-radius-lg);
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .testimonial-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin: 0 auto 1rem;
      object-fit: cover;
    }

    .testimonial-text {
      font-style: italic;
      color: var(--text-dark);
      margin-bottom: 1rem;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.25rem;
    }

    .testimonial-location {
      color: var(--text-light);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .testimonial-verified {
      color: #10b981;
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Benefits Section */
    .benefits-section {
      background: var(--bg-dark);
      color: var(--text-white);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .benefit-card {
      text-align: center;
      padding: 2rem 1rem;
      transition: transform 0.3s ease;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
    }

    .benefit-icon {
      width: 60px;
      height: 60px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      color: var(--text-white);
    }

    .benefit-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .benefit-subtitle {
      font-size: 0.9rem;
      opacity: 0.8;
    }

    /* Success Stories Section */
    .success-stories-section {
      background: var(--bg-white);
      text-align: center;
    }

    .success-quote {
      max-width: 700px;
      margin: 0 auto;
      background: var(--bg-light);
      padding: 2.5rem;
      border-radius: var(--border-radius-lg);
      font-size: clamp(1.1rem, 3vw, 1.3rem);
      font-style: italic;
      line-height: 1.6;
      color: var(--text-dark);
      position: relative;
    }

    .success-quote::before {
      content: '"';
      font-size: 3rem;
      position: absolute;
      top: 0.5rem;
      left: 1.5rem;
      opacity: 0.3;
      font-family: 'Playfair Display', serif;
      color: var(--primary-color);
    }

    /* How It Works Section */
    .how-it-works-section {
      background: var(--bg-light);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .step-card {
      background: var(--bg-white);
      border-radius: var(--border-radius-lg);
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .step-number {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      color: var(--text-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }

    .step-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .step-description {
      color: var(--text-light);
      line-height: 1.6;
    }

    /* FAQ Section */
    .faq-section {
      background: var(--bg-white);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item-main {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--border-radius);
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 1.5rem;
      background: var(--button-color);
      border: none;
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background-color 0.3s ease;
    }

    .faq-question:hover {
      background: var(--button-dark);
    }

    .faq-answer {
      padding: 0 1.5rem 1.5rem;
      color: var(--text-light);
      line-height: 1.6;
      display: none;
    }

    /* Final CTA Section */
    .final-cta-section {
      background: var(--bg-dark);
      color: var(--text-white);
      text-align: center;
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .countdown-display {
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      margin: 2rem 0;
      display: inline-block;
    }

    .countdown-text {
      font-size: 1rem;
      margin-bottom: 0.5rem;
      opacity: 0.9;
    }

    .countdown-timer {
      font-family: 'Inter', monospace;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
    }

    .modal.show {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .modal-content {
      background: var(--bg-white);
      border-radius: var(--border-radius-lg);
      max-width: 500px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .modal-header {
      background: var(--primary-color);
      color: var(--text-white);
      padding: 2rem 2rem 1rem;
      border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
      text-align: center;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--button-color);
      border: none;
      color: var(--text-white);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .modal-close:hover {
      background: var(--button-dark);
    }

    .progress-bar {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }

    .progress-step {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      color: var(--text-white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      transition: all 0.3s;
    }

    .progress-step.active {
      background: var(--text-white);
      color: var(--primary-color);
    }

    .modal-body {
      padding: 2rem;
    }

    .modal-step {
      display: none;
      text-align: center;
    }

    .modal-step.active {
      display: block;
    }

    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
    }

    .modal-input {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--border-color);
      border-radius: var(--border-radius);
      font-size: 1rem;
      margin-bottom: 1.5rem;
      transition: border-color 0.3s;
    }

    .modal-input:focus {
      outline: none;
      border-color: var(--primary-color);
    }

    .modal-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    .modal-button {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: var(--border-radius);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .modal-button.primary {
      background: var(--button-color);
      color: var(--text-white);
    }

    .modal-button.primary:hover {
      background: var(--button-dark);
    }

    .modal-button.secondary {
      background: var(--border-color);
      color: var(--text-dark);
    }

    .success-message {
      text-align: center;
      padding: 2rem;
    }

    .success-icon {
      width: 60px;
      height: 60px;
      background: #10b981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.5rem;
      color: var(--text-white);
    }

    /* Sticky CTA */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--button-color);
      color: var(--text-white);
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 600;
      cursor: pointer;
      z-index: 100;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .sticky-cta:hover {
      background: var(--button-dark);
    }

    .sticky-left {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .sticky-right {
      display: flex;
      align-items: center;
    }

    .sticky-countdown {
      background: rgba(255, 255, 255, 0.2);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-family: monospace;
      font-size: 0.9rem;
    }

    /* Footer */
    .footer {
      background: var(--bg-white);
      color: var(--text-dark);
      padding: 3rem 1rem;
      text-align: center;
    }

    .footer-content {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .footer-text {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-dark);
      opacity: 0.8;
      margin: 0;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    .footer-link {
      color: var(--primary-color);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }

    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--bg-light);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-dark);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .section {
        padding: 3rem 1rem;
      }
      .footer {
        padding: 2rem 1rem;
      }
      .form-card {
        padding: 2rem 1.5rem;
      }
      .testimonials-grid,
      .benefits-grid,
      .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .modal-buttons {
        flex-direction: column;
      }
      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }
    }

    @media (min-width: 1024px) {
      .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Loading Animation */
    .loading {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Skeleton Loading */
    .skeleton-card {
      position: relative;
    }

    .skeleton {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: loading 1.5s infinite;
      border-radius: var(--border-radius);
    }

    .skeleton-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      border-radius: 50%;
    }

    .skeleton-text {
      height: 16px;
      margin-bottom: 0.5rem;
    }

    .skeleton-text.short {
      width: 60%;
      margin: 0 auto;
    }

    @keyframes loading {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .skeleton-card .content {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .skeleton-card.loaded .skeleton {
      display: none;
    }

    .skeleton-card.loaded .content {
      opacity: 1;
    }

    .hero-logo {
      position: absolute;
      top: 2rem;
      left: 2rem;
      width: 180px;
      height: auto;
      z-index: 10;
      filter: none;
      opacity: 1;
      object-fit: contain;
    }

    /* Modal Styles */
    .modal-container {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .modal-icon {
      font-size: 3rem;
      color: #4CAF50;
      margin-bottom: 1rem;
    }

    .modal-title {
      color: #2d3748;
      margin-bottom: 0.5rem;
    }

    .modal-text {
      color: #718096;
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }

    .modal-close-button {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }

    .modal-close-button:hover {
      background: var(--primary-dark);
    }

    .highlight-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* Só aplica no PC (telas maiores que 768px) */
    @media (min-width: 768px) {
      .highlight-section {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }
      .highlight-image {
        max-width: 50%;
      }
    }