body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
      min-height: 100vh;
    }

    * {
      box-sizing: border-box;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* === Botão Home (Ícone de Casa) === */
.home-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
}

.home-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
  font-size: 20px;
}

.home-icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
}

@media (max-width: 768px) {
  .home-button {
    top: 12px;
    left: 12px;
  }
  
  .home-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }
}

    header {
      background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
      color: white;
      padding: 60px 20px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    h1#page-title {
      font-size: 42px;
      margin: 20px 0 24px 0;
      font-weight: bold;
      line-height: 1.2;
    }

    .subtitle {
      font-size: 18px;
      opacity: 0.9;
      margin: 0 0 32px 0;
      font-weight: 500;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 60px 0;
    }

    .service-card {
      background: white;
      border-radius: 16px;
      padding: 40px 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(220, 38, 38, 0.15);
      border-color: #dc2626;
    }

    .service-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
    }

    .service-title {
      font-size: 28px;
      color: #dc2626;
      margin: 20px 0 15px 0;
      font-weight: 600;
    }

    .service-description {
      font-size: 16px;
      color: #4b5563;
      line-height: 1.6;
      margin: 0;
    }

    .features-list {
      list-style: none;
      padding: 0;
      margin: 25px 0 0 0;
      text-align: left;
    }

    .features-list li {
      padding: 10px 0;
      color: #374151;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
    }

    .features-list li::before {
      content: "✓";
      color: #dc2626;
      font-weight: bold;
      font-size: 18px;
    }

    .cta-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
      border-radius: 20px;
      margin: 40px 0;
      color: white;
    }

    .cta-title {
      font-size: 36px;
      margin: 0 0 20px 0;
      font-weight: 600;
    }

    .cta-button {
      background: white;
      color: #dc2626;
      border: none;
      padding: 18px 50px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .footer {
    background-color: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-desc {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

    @media (max-width: 768px) {
      h1 {
        font-size: 36px;
      }

      .subtitle {
        font-size: 18px;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .service-card {
        padding: 30px 20px;
      }

      .cta-title {
        font-size: 28px;
      }
    }
