* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(#000 100%);
  color: #fff;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* NAVBAR */
.header-bar {
  position: relative;
  width: 100%;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1001;
  gap: 100px;
  margin-left: 50px;
}

.logo {
  background-color: #ffe600;
  color: #000;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 70px;
  align-items: center;
  margin-left: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: #ffe600;
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(255, 230, 0, 5);
}

.top-contact {
  position: absolute;
  top: 20px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 14px;
  z-index: 999;
}

.top-contact i {
  font-size: 20px;
  color: #ffe600;
  transition: transform 0.2s ease;
}

.top-contact i:hover {
  transform: scale(1.2);
}

/* HERO */
.hero {
  margin-top: 40px;
  max-width: 700px;
  padding: 0 20px;
  margin-left: 50px;
  margin-right: auto;
}


.greeting {
  font-family: 'Share Tech Mono', monospace;
  font-style: italic;
  color: #ffe600;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 19px;
}

.hero h2 {
  font-family: 'IBM Plex Mono', monospace;
  font-style: italic;
  font-weight: 700;
  background-color: #ffe600;
  display: inline-block;
  color: black;
  padding: 6px 12px;
  letter-spacing: 1px;
  font-size: 18px;
  transform: scaleX(0.3);
  transform-origin: left;
  opacity: 0;
  animation: stretchIn 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  animation-delay: 0.4s;
  margin-bottom: 19px;
  margin-top: 20px;
  z-index: -1;
}

@keyframes stretchIn {
  0% { transform: scaleX(0.3); opacity: 0; }
  60% { transform: scaleX(1.1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1100px;
  margin-top: -420px;
  position: relative;
  z-index: 1
}


.description {
  max-width: 400px;
  margin-left: 0px;
  margin-top: 20px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-align: left;
  margin-bottom: 20px;
}

.hero-services {
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: disc;
  color: #ccc;
  font-size: 20px;
  line-height: 1.6;
}



/* PROdutcs */
.projects {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.projects-left {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-left: 40px;
  max-width: 500px;
}

.projects-cards {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 250px;
  padding: 0 20px;
  max-width: 1000px;
  align-items: stretch;
  width: 100%;
}

.products-description {
  max-width: 400px;
  margin-left: 0px;
  margin-top: 110px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-align: left;
}

.contact-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.contact-cta i {
  font-size: 22px;
  color: #ffe600;
  transition: transform 0.2s ease;
}

.contact-cta i:hover {
  transform: scale(1.2);
}




.project-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  min-height: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.project-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #eee;
  line-height: 1.6;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card.card-hover {
  position: relative;
  overflow: hidden;
}

.card-content {
  transition: filter 0.4s ease;
}

.card-hover:hover .card-content {
  filter: blur(4px) brightness(0.7);
}

.card-hover-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  transition: opacity 0.4s ease;
  text-align: center;
}

.card-hover:hover .card-hover-text {
  opacity: 1;
}

.dots-grid {
  width: 125px;
  height: 125px;
  background-image: radial-gradient(#ffe600 20%, transparent 20%);
  background-size: 22px 22px;
  background-repeat: repeat;
  opacity: 0;
  transform: translateY(30px);
  margin-left: auto;
  margin-right: 60px;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: 1s;
  z-index: 0;
  position: static; /* alterado de absolute para static */
  display: block;
  /* removido left e top */
}

.dots-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Formas animadas */
.shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1; /* aqui está o segredo! */
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.shape.visible {
  opacity: 0.8;
  transform: translateY(0);
}

.circle {
  width: 60px;
  height: 60px;
  background-color: #ffe600;
  border-radius: 50%;
  top: 21%;
  left: 10%;
}

.square {
  width: 50px;
  height: 50px;
  background-color: #ffe600;
  top: 19%;
  left: 70%;
  transform: rotate(45deg);
}

.triangle {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 50px solid #ffe600;
  top: 33%;
  left: 60%;
}

.projects-title {
  font-size: 36px;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-50px);
  animation-fill-mode: forwards;
}

.projects-bar {
  opacity: 0;
  transform: translateX(-50px);
  animation-fill-mode: forwards;
}

.projects-header {
  padding-left: 0; /* ou algo menor tipo 20px */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Título */
.projects-title {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 12px;
  white-space: nowrap; /* impede quebra de linha */
  text-align: left;
  margin-left: 0; /* garante colado à esquerda */
  margin-top: 170px;
}

/* Barrinha */
.projects-bar {
  background-color: #ffe600;
  height: 10px;
  width: 250px; /* deixa ela menor agora */
  margin-bottom: 40px;
}

.projects-title,
.projects-bar {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.projects-title.visible {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.projects-bar.visible {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}


.created-projects {
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: visible;
  max-width: 1400px;
  margin: 0 auto;
}

.animated-forms {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* SÍMBOLOS */
.animated-symbol {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.form-circle::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: #ffe600;
  border-radius: 50%;
}

.form-star::before {
  content: '*';
  font-size: 22px;
  color: #ffe600;
}

/* FRASES */
.animated-text {
  position: absolute;
  font-size: 16px;
  font-style: italic;
  font-family: 'Courier Prime', monospace;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* ANIMAÇÃO VISÍVEL */
.animated-symbol.visible,
.animated-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  background-color: #ffe600;
  color: #000;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 400px;
  margin-left: 0px;
  margin-top: 20px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-align: left;
  margin-bottom: 60px;
}

.created-cards.no-image {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
  padding: 0 20px;
}

.created-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.created-card-link:hover {
  transform: translateY(-8px);
}

.created-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px 25px;
  border-radius: 16px;
  width: 300px;
  min-height: 220px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.created-card:hover {
  background-color: rgba(255, 230, 0, 0.07);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: #ffe600;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.card-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.4;
}

.eclipse-glow {
  position: absolute;
  top: 26%;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%);
  box-shadow: 0 0 180px 90px rgba(255, 230, 0, 0.6);
  filter: blur(10px);
  opacity: 0.85;
  z-index: -1;
  animation: pulse-glow 6s ease-in-out infinite;
  pointer-events: none;
  
 
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}


.faq-section {
  padding: 100px 20px;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid #444;
  margin-bottom: 20px;
}

.faq-question {
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: white;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #ffe600;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #ccc;
}

.faq-answer.show {
  max-height: 500px;
}

.faq-answer a {
  color: white;
  font-weight: bold;
  text-decoration: underline; /* opcional, pode remover se quiser sem sublinhado */
}


.testimonials-section {
  padding: 120px 60px;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: 48px;
  font-weight: bold;
  margin-left: 0;
  margin-bottom: 12px;
  color: white;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}

.testimonials-title.visible {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.testimonials-bar {
  background-color: #ffe600;
  height: 10px;
  width: 500px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-bar.visible {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 0 20px;
  margin-top: 60px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 12px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 230, 0, 2);
}

.testimonial-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #ffe600;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}


.contact-section {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.contact-bar {
  width: 150px;
  height: 6px;
  background-color: #ffe600;
  margin: 10px auto 30px;
  border-radius: 4px;
}

.contact-subtitle {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #fff;
  gap: 12px;
}

.contact-item i {
  color: #ffe600;
  font-size: 22px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffe600;
}

/* Seção de Avaliação Google */
.review-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  text-align: center;
  position: relative;
}

.review-container {
  max-width: 800px;
  margin: 0 auto;
}

.review-content {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 230, 0, 0.2);
}

.review-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffe600;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 230, 0, 0.5);
}

.review-text {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'IBM Plex Mono', monospace;
}

.review-cta {
  margin: 30px 0;
}

.review-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ffe600, #ffd700);
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3);
}

.review-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 230, 0, 0.5);
  color: #000;
}

.review-button i {
  font-size: 20px;
}

.review-note {
  font-size: 16px;
  color: #ffe600;
  font-style: italic;
  margin-top: 20px;
  opacity: 0.9;
}




@media (max-width: 1200px) {
  .projects {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .projects-left {
    padding-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .projects-cards {
    justify-content: center;
    margin-top: 60px;
    padding: 0 20px;
    gap: 30px;
    max-width: 100%;
    width: 100%;
  }

  .products-description {
    margin: 30px auto 0;
    max-width: 600px;
  }

  .dots-grid {
    margin: 30px auto 0;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px;
  }

  .nav-links {
    gap: 40px;
  }

  .top-contact {
    right: 20px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .projects-title {
    font-size: 50px;
  }

  .projects-bar {
    width: 200px;
  }

  .projects-cards {
    justify-content: center;
    gap: 25px;
    padding: 0 20px;
  }

  .project-card {
    width: 260px;
    flex-shrink: 0;
  }

  .created-cards.no-image {
    gap: 20px;
  }

  .created-card {
    width: 280px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .nav-links {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-contact {
    position: static;
    margin-top: 15px;
    justify-content: center;
    right: auto;
  }

  .hero {
    margin-top: -3px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .hero h2 {
    font-size: 14px;
    margin-top: 5px;
  }

  .description, .hero-services {
    font-size: 16px;
  }

  .projects {
    padding: 0 15px;
  }

  .projects-left {
    padding-left: 0;
  }

  .projects-title {
    font-size: 36px;
  }

  .projects-bar {
    width: 150px;
    height: 6px;
  }

  .products-description {
    font-size: 16px;
    margin-top: 20px;
    text-align: left;
  }

  .projects-cards {
    margin-top: 40px;
    gap: 20px;
    justify-content: center;
    padding: 0 15px;
  }

  .project-card {
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
  }

  .dots-grid {
    display: none;
  }

  .created-projects {
    padding: 80px 15px;
  }

  .created-cards.no-image {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .created-card {
    width: 100%;
    max-width: 320px;
  }

  .faq-section {
    padding: 80px 15px;
  }

  .faq-title {
    font-size: 28px;
  }

  .testimonials {
    padding: 80px 15px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-bar {
    width: 200px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .contact-section {
    padding: 80px 15px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  
  .nav-links {
    gap: 15px;
    font-size: 14px;
  }
  


  .logo {
    font-size: 14px;
    padding: 4px 8px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h2 {
    font-size: 12px;
  }

  .description {
    font-size: 14px;
  }

  .hero-services {
    font-size: 14px;
    padding-left: 15px;
  }

  .projects-title {
    font-size: 36px;
  }

  .projects-bar {
    width: 120px;
    height: 5px;
  }

  .products-description {
    font-size: 14px;
    text-align: left;
  }

  .projects-cards {
    gap: 15px;
    padding: 0 10px;
  }

  .project-card {
    padding: 15px;
    min-height: 280px;
    width: 100%;
    flex-shrink: 0;
  }

  .project-card h3 {
    font-size: 16px;
  }

  .project-card p {
    font-size: 13px;
  }

  .created-card {
    padding: 20px 15px;
    min-height: 200px;
    width: 100%;
  }

  .card-icon {
    font-size: 28px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-text {
    font-size: 14px;
  }

  .faq-question {
    font-size: 16px;
    padding: 12px 0;
  }

  .faq-answer {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 20px;
    font-size: 14px;
  }

  .testimonial-card strong {
    font-size: 16px;
  }

  .contact-item {
    font-size: 14px;
  }

  .contact-item i {
    font-size: 18px;
  }

  /* Ajuste para contact-item em mobile médio */
  .contact-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .contact-item i {
    flex-shrink: 0;
  }

  .contact-item a {
    word-wrap: break-word;
    line-height: 1.4;
  }

  /* Desabilitar animações de texto em mobile para evitar bugs */
  .animated-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .animated-symbol {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  /* Garantir que a seção de avaliação mantenha os estilos em mobile */
  .review-section {
    padding: 60px 15px !important;
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
    text-align: center !important;
  }

  .review-content {
    padding: 30px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 230, 0, 0.2) !important;
  }

  .review-title {
    font-size: 24px !important;
    color: #ffe600 !important;
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.5) !important;
  }

  .review-button {
    background: linear-gradient(45deg, #ffe600, #ffd700) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3) !important;
  }
}

/* Menu hambúrguer para mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  /* Para dispositivos móveis, mostrar o título sempre */
  .projects-title,
  .projects-bar,
  .testimonials-title,
  .testimonials-bar {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .navbar {
    position: relative;
    justify-content: space-between;
    gap: 0;
    margin-left: 0;
  }

  .logo {
    display: none;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: -20px;
  }

  .menu-toggle:hover {
    color: #ffe600;
  }

  /* Ajuste para contact-item em mobile */
  .contact-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .contact-item i {
    flex-shrink: 0;
  }

  .contact-item a {
    word-wrap: break-word;
    line-height: 1.4;
  }

  /* Desabilitar animações de texto em mobile para evitar bugs */
  .animated-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .animated-symbol {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  /* Garantir que a seção de avaliação mantenha os estilos em mobile */
  .review-section {
    padding: 60px 15px !important;
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
    text-align: center !important;
  }

  .review-content {
    padding: 30px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 230, 0, 0.2) !important;
  }

  .review-title {
    font-size: 24px !important;
    color: #ffe600 !important;
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.5) !important;
  }

  .review-button {
    background: linear-gradient(45deg, #ffe600, #ffd700) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3) !important;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 360px) {
  .hero {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  
  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 11px;
  }

  .description {
    font-size: 13px;
  }

  .hero-services {
    font-size: 13px;
  }

  .projects-title {
    font-size: 24px;
  }

  .projects-bar {
    width: 100px;
  }

  .products-description {
    font-size: 13px;
    text-align: left;
  }

  .projects-cards {
    padding: 0 5px;
    gap: 10px;
  }
  


  .project-card {
    padding: 12px;
    min-height: 260px;
    width: 100%;
    flex-shrink: 0;
  }

  .project-card h3 {
    font-size: 15px;
  }

  .project-card p {
    font-size: 12px;
  }

  .created-card {
    padding: 15px 12px;
    min-height: 180px;
    width: 100%;
  }

  .card-icon {
    font-size: 24px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-text {
    font-size: 13px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 15px;
    font-size: 13px;
  }

  .testimonial-card strong {
    font-size: 15px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-item {
    font-size: 13px;
  }

  .contact-item i {
    font-size: 16px;
  }

  /* Ajuste para contact-item em mobile pequeno */
  .contact-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .contact-item i {
    flex-shrink: 0;
  }

  .contact-item a {
    word-wrap: break-word;
    line-height: 1.4;
  }

  /* Responsividade da seção de avaliação */
  .review-section {
    padding: 60px 15px;
  }

  .review-content {
    padding: 30px 20px;
  }

  .review-title {
    font-size: 24px;
  }

  .review-text {
    font-size: 16px;
  }

  .review-button {
    padding: 12px 25px;
    font-size: 16px;
  }

  /* Garantir que a seção de avaliação mantenha os estilos em mobile */
  .review-section {
    padding: 60px 15px !important;
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
    text-align: center !important;
  }

  .review-content {
    padding: 30px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 230, 0, 0.2) !important;
  }

  .review-title {
    font-size: 24px !important;
    color: #ffe600 !important;
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.5) !important;
  }

  .review-button {
    background: linear-gradient(45deg, #ffe600, #ffd700) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3) !important;
  }

  /* Desabilitar animações de texto em mobile para evitar bugs */
  .animated-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .animated-symbol {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}