body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #232323;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .navbar {
    background: transparent;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  
  .landing-logo {
    position: absolute;
    top: 25px;
    left: 25px;
    height: 80px;
    z-index: 2;
  }
  
  .landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  
  .hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/fastlimp-Img-top-banner-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .hero-content h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: #007bff;
    font-weight: bold;
  }
  
  .cta-button {
    display: inline-block;
    padding: 18px 36px;
    margin-top: 20px;
    background: #0056b3;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, box-shadow 0.3s;
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #003366;
  }
  
  .cta-button:hover, .cta-button:focus {
    background-color: #003366;
    color: #fff;
    outline: 3px solid #ffeb3b;
    outline-offset: 2px;
  }
  
  .services-section {
    padding: 40px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    background: #fff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
  }
  
  .service-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 600px;
    width: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover img {
    transform: scale(1.05);
  }
  
  .service-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    color: #333;
  }
  
  .footer-logo {
    height: 50px;
    margin: 20px 0;
  }
  
  .landing-footer {
    background: #232323;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
  }
  
  .footer-links a {
    color: #0056b3;
    margin: 0 10px;
    text-decoration: underline;
    font-weight: 500;
  }
  
  .footer-links a:hover, .footer-links a:focus {
    color: #003366;
    outline: 2px solid #ffeb3b;
  }
  
  .contact-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #25d366;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
  }
  
  .whatsapp-button:hover {
    background: #128c7e;
  }
  
  .about-section,
  .testimonials-section,
  .faq-section {
    padding: 80px 20px;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .about-section {
    background: #f8f9fa;
  }
  
  .testimonials-section {
    background: #fff;
  }
  
  .faq-section {
    background: #f8f9fa;
  }
  
  /* Media Queries para Responsividade */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding: 15px;
    }
  }

  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      padding: 15px;
    }

    .service-card {
      height: 540px;
    }

    .landing-container {
      padding: 10px;
    }

    .hero-logo {
      height: 50px;
      top: 15px;
      left: 15px;
    }

    .hero-content {
      max-width: 500px;
    }

    .hero-content h1 {
      font-size: 1.8rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .cta-button {
      padding: 14px 24px;
      font-size: 1.1em;
    }

    .footer-logo {
      height: 40px;
    }

    .landing-footer {
      padding: 20px 10px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      margin: 5px 0;
    }

    .about-section,
    .testimonials-section,
    .faq-section {
      padding: 60px 15px;
    }

    .article-title {
      font-size: 2em;
    }

    h2 {
      font-size: 1.4em;
    }

    p, li {
      font-size: 1.05em;
    }
  }

  @media (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .service-card {
      height: 480px;
      border-radius: 0;
      box-shadow: none;
      width: 100%;
      margin: 0;
    }

    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .service-card h3 {
      font-size: 1.4rem;
      padding: 30px;
      background: rgba(255, 255, 255, 0.95);
    }

    .navbar {
      padding: 10px;
    }

    .landing-logo {
      height: 40px;
      top: 10px;
      left: 10px;
    }

    .about-section,
    .testimonials-section,
    .faq-section {
      padding: 50px 10px;
    }
  }
  
  .article-header {
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
  }
  
  .article-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  
  .article-meta {
    color: #444;
    font-size: 1em;
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin: 20px 0;
    border-radius: 4px;
  }
  
  .article-section {
    margin: 30px 0;
  }
  
  h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2em;
    color: #1a237e;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  
  h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    color: #263238;
    margin-top: 30px;
    line-height: 1.3;
  }
  
  p, .article-meta, li {
    color: #232323;
    font-size: 1.2em;
    line-height: 1.8;
  }
  
  .highlight-box {
    background-color: #f1f3f6;
    border-left: 5px solid #0056b3;
    padding: 28px;
    margin: 30px 0;
    border-radius: 0 6px 6px 0;
  }
  
  .highlight-box p {
    margin-bottom: 0;
    font-weight: 400;
  }
  
  .cta-section {
    background-color: #f8f9fa;
    padding: 35px;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
  }
  
  .cta-button:hover {
    background-color: #218838;
  }
  
  /* Footer Styles */
  .landing-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
  }
  
  .footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    color: #0056b3;
    text-decoration: underline;
    font-weight: 500;
  }
  
  .footer-links a:hover, .footer-links a:focus {
    color: #003366;
    outline: 2px solid #ffeb3b;
  }
  
  /* List Styles */
  ul, ol {
    margin-bottom: 20px;
    padding-left: 25px;
  }
  
  li {
    margin-bottom: 12px;
    font-size: 1.1em;
    line-height: 1.6;
  }
  
  /* Strong text emphasis */
  strong {
    font-weight: 700;
    color: #111827;
  }
  
  /* Additional readability improvements */
  @media (max-width: 768px) {
    body {
      padding: 15px;
    }

    .article-title {
      font-size: 2em;
    }

    h2 {
      font-size: 1.4em;
    }

    p, li {
      font-size: 1.05em;
    }
  }
  