/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0f172a; /* azul bem escuro */
    color: #ffffff;
  }
  
  /* Títulos principais */
  h1, h2, h3, h4, .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  

  /* HERO */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 10%;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .hero-content {
    flex: 1;
    min-width: 300px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
  }
  
  .btn {
    background-color: #3b82f6;
    color: white;
    padding: 0.9rem 1.6rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transition: background 0.3s ease;
  }
  .btn:hover {
    background-color: #2563eb;
  }
  
  .hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    min-width: 280px;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 80px 10px rgba(59, 130, 246, 0.5); /* brilho azul */
  }

  .hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  .subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
  }
  

  /* SEÇÃO: Meus serviços */
.services {
    padding: 5rem 10%;
    text-align: center;
    background-color: #0f172a;
    color: white;
  }
  
  .services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
  }
  
  .services-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
  }
  
  .services-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .services-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 80px 10px rgba(59, 130, 246, 0.5); /* brilho azul */
  }
  
  .services-list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    font-size: 1.1rem;
    line-height: 2.2rem;
  }
  
  .services-list li {
    position: relative;
    padding-left: 2.5rem;
    color: #ffffff;
    font-weight: 500;
  }
  
  .services-list li::after {
    content: "✔️";
    color: #22c55e;
    font-size: 1.4rem;
    position: absolute;
    left: -2rem;
    top: 0;
    padding: 0 30px;
  }

  /* SEÇÃO: Quem sou eu */
.about {
    padding: 5rem 10%;
    background-color: #0f172a;
    color: #ffffff;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
  }
  
  .about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .about-image img {
    max-width: 60%;
    border-radius: 1rem;
  }
  
  /* SEÇÃO: Resultados com inteligência */
.cta {
    padding: 5rem 10%;
    background-color: #0f172a;
    color: #ffffff;
  }
  
  .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .cta-text {
    flex: 1;
    min-width: 300px;
  }
  
  .cta-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .cta-text p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.8rem;
  }
  
  .cta-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    position: relative;
  }
  
  .cta-image img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 50px 15px rgba(59, 130, 246, 0.4); /* brilho azul */
  }

  /* Footer */
.footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 4rem 10%;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .logo img {
    width: 100px;
    height: 100px;
  }
  
  .logo span {
    font-size: 1.3rem;
    font-weight: bold;
  }
  
  .footer-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-right p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6rem;
  }
  
  .footer-right a {
    color: #94a3b8;
    text-decoration: none;
  }
  
  .social-icons a {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffffff;
  }
  
  .btn-primary {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: bold;
    border-radius: 2rem;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #2563eb;
  }
  