 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* BASE */
html {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  color: #000;
  overflow-x: visible;
  position: static;
}



    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        overflow-x: hidden;
        scroll-behavior: smooth;
        color: #000;
    }
    .logo {
        position: fixed;
        top: 20px;
        left: 40px;
        z-index: 1000;
        transition: color 0.3s ease;
    }
    .logo-img {
        height: 50px;
        transition: filter 0.3s ease, height 0.3s ease;
    }

    .contact-button {
        position: fixed;
          text-decoration: none;
        top: 20px;
        right: 40px;
        background-color: #930ee5;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        font-size: 18px;
        cursor: pointer;
        z-index: 1001
            
    }

.contact-button {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.contact-button.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

    .hero {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(90%) blur(2px);
    }

    .glossy-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(6px) saturate(180%);
        z-index: -1;
    }
.hero video,
.glossy-overlay {
    pointer-events: none;
}

    
    
to { transform: rotate(360deg); }
.hero h1 {
        font-size: 4vw;
        font-weight: 600;
        margin: 20;
        letter-spacing: -0.25vw;
        line-height: 1.2;
    }

.hero p {
        font-size: 1.3vw;
    }


.hero-cta-button {
  margin-top: 40px;
  display: inline-block;
  background: linear-gradient(135deg, #930ee5, #5a189A);
  color: white;
  padding: 14px 32px;
  border-radius: 14px; /* mais quadrado */
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(147, 14, 229, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(147, 14, 229, 0.5);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



.services {

  background-color: #0a0a0a; /* preto levemente suavizado */
  color: white;
  padding: 100px 20px;

}

.services-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5vw; /* responsivo: 5% da largura da viewport */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.service-box {
  width: 100%;
  box-sizing: border-box;
      background: linear-gradient(135deg, #222222, #181818); 
  padding: 40px;
    text-decoration: none;
  border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-link{
    text-decoration: none;
}

.service-box:hover {
  transform: translateY(-4px);
box-shadow: 0 0 0 1px rgba(240, 240, 240, 0.25) inset,
            0 8px 16px rgba(255, 255, 255, 0.12);

}

.service-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  filter: brightness(1.5);
}



.services-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
}
    .services h2 {
        font-size: 50px;
        margin-bottom: 40px;
        letter-spacing: -2px;
    }
    .service-item {
        margin: 30px;
        font-size: 28px;
        text-transform: capitalize;
    }
    .highlighted {
        color: #930ee5;
        font-style: italic;
          opacity: 1;
  transition: opacity 0.6s ease-in-out;
    }
.highlighted.fade {
  opacity: 0;
}

    .content-section {
        padding: 60px;
        text-align: center;
    }
    .content-section h2 {
        font-size: 40px;
        margin: 20px 0;
    }
    .content-section p {
        font-size: 20px;
        margin: 10px 0;
    }


.process-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #FAF7FE;
  user-select: none;
}

.process-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #000;
}

.process-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 6px solid #930ee5;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 16px rgba(147,14,229,0.3);
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #930ee5;
}

.process-step p {
  font-size: 16px;
  color: #444;
}


.trusted-by {
  padding: 80px 20px;
  text-align: center;
  background-color: #fAF7FE;
}

.trusted-by h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.logo-grid img {
  height: 100px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.1);
  opacity: 1;
}




        
    .subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.subtitle .service-title {
  color: white;
    font-size: 30px;
}

.subtitle .highlighted-text {
  color: #930ee5;
    
}

.pill-container {
  display: flex;
  flex-wrap: wrap;
    
  gap: 20px;
}

.pill {
  background-color: #2b103a;
  color: white;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
    border: 1px solid rgba(147, 14, 229, 0.15);

}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
  text-transform: lowercase;
}

input,
select,
textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #930ee5;
  box-shadow: 0 0 0 2px rgba(147, 14, 229, 0.2);
}

.form-submit {
  background-color: #5a189A;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #7e0cc3;
}



.site-footer {
  background-color: #5a189A;
  color: white;
  padding: 60px 40px 30px;
  font-family: 'Poppins', sans-serif;
    user-select: none; /* <- impede seleção de texto */
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-column a:hover {
color: #b76aff; /* Substitua pela cor desejada para o hover */
  text-decoration: none; /* Remove o sublinhado */
}

.social-icons a {
  margin-right: 12px;
  display: inline-block;
}

.social-icons img {
  height: 20px;
  filter: invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  padding-top: 20px;
}

.footer-heart {
  color: #ff5e99;
  font-weight: bold;
  transition: text-shadow 0.3s ease;
  cursor: default;
}

.footer-heart:hover {
  text-shadow: 0 0 8px #ffb3cc, 0 0 12px #ff5e99;
}

.desktop-only {
  display: block;
}

#mobile-logo {
    
  display: none;
}
#mobile-logo img {
  height: 40px;
  width: auto;
  max-width: 90vw;
  display: block;
}

.mobile-only {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(70%) blur(2px);
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #5a189A;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 500;
  border: 2px solid white; /* <- AQUI ESTÁ A BORDA */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2000;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
}




/* efeito de luz animada na borda - apenas desktop */
@media (min-width: 769px) {
    
  .contact-button {
    position: fixed;
    top: 20px;
    right: 40px;
    background-color: #5a189A;
    color: white;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(147, 14, 229, 0.4);
  }
}





/* MOBILE */
@media (max-width: 1000px) {

  #mobile-logo {
    display: block;
    position: fixed !imporant;
    top: 20px;
    left: 20px;
    pointer-events: auto;
  }
#mobile-logo img {
    margin-top: 20px;
    margin-left: 20px;
  }

  .logo.desktop-only {
    display: none;
  }
    
    .content-section,
.services,
.process-section,
.trusted-by,
#contato {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: center;
}
    
        .hero, .services, .service-box, .content-section, .footer-top, .footer-column, .trusted-by {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

  .contact-button {
    right: 20px; /* Reduzindo de 40px para 20px para evitar overflow */
    padding: 10px 20px; /* Menor padding para encaixar melhor */
    font-size: 16px; /* Reduzindo o tamanho da fonte */
  }

  .logo {
    display: none;
  }


  .service-box {
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .services-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

    .hero h1 {
        font-size: 6vw;
    }
    
    .hero p {
        font-size: 2.2vw;
    }
    
    
    
  .subtitle {
    font-size: 16px;
    line-height: 1.4;
  }

  .pill-container {
    gap: 12px;
  }

  .pill {
    font-size: 13px;
    padding: 10px 16px;
  }
      .desktop-only {
    display: none;
  }


  .mobile-only {
    display: block;
    position: fixed;
    top: 20px;
    left: 40px;
    z-index: 1001;
  }
    
    
    
}
  