@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #0f172a;
  background-color: #fefefe;
}

/* Largura da barra de rolagem */
::-webkit-scrollbar {
  width: 10px;
}

/* Fundo da barra (trilho) */
::-webkit-scrollbar-track {
  background: #ffffff; /* branco */
}

/* Indicador da barra (scroll) */
::-webkit-scrollbar-thumb {
  background-color: #8b8b8b; /* vermelho */
  border-radius: 6px;
  border: 3px solid #ffffff; /* borda branca para suavizar */
}

/* Opcional: efeito ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background-color: #cc0000;
}


/* Header */
.header {
  background: #fefefe;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 150px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff0000;
  border-bottom: solid 2px #ff0000;
}

.phone-button a {
  background: #b60d0d;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.phone-button a:hover {
  background: #059669;
  color: #ffffff;
}

/* Hero Section */
.hero {
  display: flex;
  padding: 50px 80px;
  position: relative;
  background-image: url(images/banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Floating Icons Animation */
@keyframes floatAnimation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.avatar img {
  animation: floatAnimation 2.5s ease-in-out infinite;
}

.hero-content {
  max-width: 800px;
  margin: 0 3rem;
}

.highlight-text {
  color: #ff0000;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero h1 {
  color: #333333;
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 800;
}

.description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
  font-weight: bold;
}

.cta-button {
  background: #e63946;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #059669;
}

.subtext {
  margin-top: 30px;
  font-size: 14px;
  color: #5c0606;
  letter-spacing: 1px;
}

.avatar {
  width: 300px;
  height: auto;
}

.avatar img {
  width: 100%;
  height: auto;
}

/* Icons and Decorations */
.hero-icons, .hero-decorations {
  position: absolute;
}

.planet-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
}

.astronaut-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 80px;
}

/* Hamburguer Icon */
.menu-icon {
  color: #333333;
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: #fefefe;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 9999;
  overflow-y: auto;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.close-menu {
  font-size: 28px;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
  padding: 0;
}

.mobile-links li {
  margin-bottom: 20px;
}

.mobile-links a {
  text-decoration: none;
  font-size: 18px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-links img {
  width: 24px;
  height: 24px;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

/* SECTION 2 */

.carousel-section {
  padding: 40px 0;
  background-color: #fefefe;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto; /* isso centraliza */
  overflow: hidden;
  padding: 0 40px;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 60px;
  scroll-behavior: smooth;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
}


.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  height: 60px;
  flex-shrink: 0;
  pointer-events: none;
}

.carousel-track img:hover {
  filter: grayscale(0%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  background: none;
  border: none;
  color: #00bfa6;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.carousel-btn:hover {
  color: #e63946;
}

.carousel-btn.left {
  left: 0;
}

.carousel-btn.right {
  right: 0;
}

/* SECTION 3 */

.como-funciona {
  background: linear-gradient(to bottom, #ffffff 50%, #e7e7e7 100%);
  padding: 80px 20px;
  text-align: center;
}

.como-funciona .container {
  max-width: 1200px;
  margin: auto;
}

.como-funciona .subtitulo {
  color: #e63946;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.como-funciona h2 {
  font-size: 32px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.199);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.iconp{
  display: flex;
  justify-content: center;
}

.card .icon {
  background: #000000;
  color: #00f7ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #555678;
  line-height: 1.5;
}

/* SECTION 4 -----------------------------------------*/

.ktec-edicao {
  background-image: url(images/banner-red.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  overflow: visible;
  max-width: 100%;
  color: #ffffff;
}

.ktec-edicao .info {
  max-width: 400px;
  z-index: 2;
}

.ktec-edicao h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.avatar-wrapper {
  position: relative;
  margin-top: -70px; /* Este valor faz o avatar subir */
}

.avatar-wrapper img {
  max-height: 300px;
  transform: scale(1.1);
}

.ktec-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  color: #ffffff;
  background-color: #e63946;
  box-shadow: 0 8px 8px rgba(88, 88, 88, 0.199);
  border-radius: 25px;
  text-decoration: none;
  transition: color 0.4s ease;
}

.ktec-btn span {
  position: relative;
  z-index: 2; /* Garante que o texto fique acima da animação */
}

/* Animação vertical de fundo */
.ktec-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: top 0.4s ease;
  z-index: 1;
}

/* Brilho atravessando */
.ktec-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.514), transparent 60%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.ktec-btn:hover::before {
  top: 0;
}

.ktec-btn:hover::after {
  opacity: 1;
  animation: shine 0.8s ease-in-out forwards;
}

.ktec-btn:hover {
  color: #00f7ff;
  border: 2px solid #00f7ff;
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.199);
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

/* SECTION 5 -----------------------------------------*/

.projetos-reais {
  background-image: url(images/banner-red.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 80px 120px;
  text-align: center;
}

.projetos-reais .titulo {
  font-size: 36px;
  font-weight: 800;
  color: #101235;
  margin-bottom: 10px;
}

.projetos-reais .subtitulo {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.grid-projetos {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.projeto-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.projeto-card:hover {
  transform: translateY(-10px);
}

.projeto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.projeto-info {
  padding: 20px;
  text-align: left;
}

.projeto-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #101235;
  margin-bottom: 8px;
}

.projeto-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.ver-site {
  display: inline-block;
  color: #00bfa6;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.ver-site:hover {
  border-color: #00bfa6;
}



@media (max-width: 768px) {
  .carousel-container {
      padding: 0 20px;
  }

  .carousel-track {
      gap: 30px;
  }

  .carousel-track img {
      height: 50px;
  }

  
.avatar-wrapper img {
  max-height: 225px;
}

.ktec-edicao {
  flex-direction: column-reverse;
  text-align: center;
}
.projetos-reais {
  padding: 20px;
}
}

.ver-mais-projetos {
  margin-top: 50px;
  text-align: center;
}



/* SECTION 6 -----------------------------------------*/

.funcionalidades-section {
  background-color: #fff;
  padding: 80px 20px;
  color: #101235;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.funcionalidades-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.funcionalidade-left {
  flex: 1;
  text-align: center;
}

.funcionalidade-left .mascote {
  max-height: 280px;
  margin-bottom: 20px;
}

.mascote {
  animation: floatAnimation 2.5s ease-in-out infinite;
}

.funcionalidade-left h3 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333333;
}

.btn-orcamento {
  display: inline-block;
  padding: 14px 28px;
  background-color: #00bfa6;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-orcamento:hover {
  background-color: #019f8d;
}

.funcionalidade-right {
  flex: 1;
}

.subtitulo {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.funcionalidade-right h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.func-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.icone {
  font-size: 24px;
  background-color: #f4f4f4;
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conteudo h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.conteudo p {
  font-size: 14px;
  color: #444;
}

/* SECTION 7 -----------------------------------------*/

.planos-modernos {
  padding: 80px 20px;
  background-image: url(images/banner-2.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  text-align: center;
}

.container-planos-modernos {
  max-width: 1200px;
  margin: auto;
}

.titulo {
  font-size: 32px;
  font-weight: 800;
  color: #101235;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.cards-planos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.plano {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
  border: 2px solid #e63946;
}

.plano ul li{
  text-align: left;
}

.nome-plano {
  font-size: 20px;
  font-weight: bold;
  color: #101235;
  margin-bottom: 10px;
}

.descricao-plano {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.preco {
  font-size: 30px;
  font-weight: bold;
  color: #e63946;
  margin-bottom: 20px;
}

.beneficios {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.beneficios li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.beneficios li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e63946;
  font-weight: bold;
}

.btn-plano {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background-color: #e63946;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-plano:hover {
  background-color: #a82631;
}

/* Destaque visual no plano personalizado */
.destaque {
  border: 2px solid #101235;
}

.destaque-btn {
  background-color: #101235;
  color: white;
}

.destaque-btn:hover {
  background-color: #333;
}

/* SECTION 8 -----------------------------------------*/

.duvidas-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.container-duvidas {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.duvidas-info {
  flex: 1;
  text-align: center;
}

.avatar-duvidas {
  max-width: 180px;
  margin-bottom: 20px;
}

.duvidas-info h2 {
  font-size: 28px;
  color: #101235;
  margin-bottom: 10px;
}

.duvidas-info p {
  font-size: 16px;
  color: #555;
}

.duvidas-form {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

#whatsappForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#whatsappForm input,
#whatsappForm textarea {
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
  font-family: 'Poppins', sans-serif;
}

#whatsappForm button {
  padding: 12px;
  border: none;
  border-radius: 30px;
  background-color: #e63946;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#whatsappForm button:hover {
  background-color: #019f09;
}

/* SECTION 9 -----------------------------------------*/

.seguranca-digital {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.container-seguranca {
  max-width: 1200px;
  margin: auto;
}

.seguranca-digital h2 {
  font-size: 32px;
  font-weight: 800;
  color: #101235;
  margin-bottom: 10px;
}

.seguranca-digital .descricao {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.grid-seguranca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.item-seguranca {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.item-seguranca:hover {
  transform: translateY(-5px);
}

.item-seguranca i {
  font-size: 30px;
  color: #cc0000;
  margin-bottom: 15px;
}

.item-seguranca h3 {
  font-size: 18px;
  color: #101235;
  font-weight: bold;
  margin-bottom: 10px;
}

.item-seguranca p {
  font-size: 14px;
  color: #555;
}

/* SECTION 10 -----------------------------------------*/

.depoimentos-section {
  background-color: #f1f1f1;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.container-depoimentos {
  max-width: 800px;
  margin: auto;
}

.depoimentos-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #101235;
  margin-bottom: 40px;
}

.depoimentos-carousel {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.depoimento {
  display: none;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: left;
  transition: opacity 0.4s ease;
}

.depoimento.active {
  display: block;
}

.header-depoimento {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.header-depoimento img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.header-depoimento h4 {
  margin: 0;
  font-size: 16px;
  color: #101235;
  font-weight: bold;
}

.avaliacao-google {
  display: flex;
  align-items: center;
  gap: 6px;
}

.avaliacao-google img {
  width: 20px;
  height: 20px;
}

.logo-google {
  width: 18px;
  height: 18px;
}

.estrelas {
  color: #fbbc04; /* amarelo Google */
  font-size: 14px;
  letter-spacing: 1px;
}


.depoimento p {
  color: #1f1f1f;
  font-size: 15px;
  line-height: 1.6;
}

.carousel-controles {
  margin-top: 20px;
}

.carousel-controles button {
  background: #e63946;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 0 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-controles button:hover {
  background: #9f0101;
}

/* SECTION 10 -----------------------------------------*/

.segmentos-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.segmentos-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #101235;
  margin-bottom: 30px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segmentos-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.segmentos-carousel::-webkit-scrollbar {
  display: none;
}

.segmento {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 200px;
  min-width: 200px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.segmento:hover {
  transform: translateY(-5px);
}

.segmento .icone {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segmento .icone i {
  font-size: 24px;
  color: #101235;
}

.segmento p {
  font-size: 15px;
  color: #2c2c3a;
  font-weight: 600;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #bf0000;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  color: #e63946;
}

.carousel-btn.left {
  margin-right: 10px;
}

.carousel-btn.right {
  margin-left: 10px;
}

/* SECTION 10 -----------------------------------------*/

.section-excelencia {
  background-color: #b11226; /* vermelho rubro */
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.container-excelencia {
  max-width: 900px;
  margin: 0 auto;
}

.section-excelencia h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-excelencia p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fffdfd;
}

.section-excelencia {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
  color: #ffffff;
}

.destaque-2 {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #6b0000;
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
  color: #ffffff;
}


/* ----------------------------------------------------- */

.footer {
  background-color: #111827;
  color: #ffffff;
  padding: 40px 20px;
  font-size: 16px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-direction: row;
}

.footer-container img{
  width: 80%;
  height: auto;
}

.footer-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: rgb(255, 102, 0);
}

.footer-contato h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: rgb(255, 102, 0);
}

.footer p {
  margin: 4px 0;
  line-height: 1.6;
  color: #ccc;
}

.footer-credito {
  background-color: #0e111a;
  color: #aaa;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  border-top: 1px solid #222;
}

.footer-credito a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
}

.footer-credito a:hover {
  text-decoration: underline;
}

/* Mobile Behavior */
@media (max-width: 768px) {
  .nav-menu,
  .phone-button {
      display: none;
  }

  .menu-icon {
      display: block;
  }
  .subtitulo {
    text-align: center;
  }
  
  .funcionalidade-right h2 {
    font-size: 25px;
    text-align: center;
}
}


/* Responsividade */
@media (max-width: 768px) {
  .container {
      gap: 15px;
  }

  .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 15px;
  }

  .hero h1 {
      font-size: 32px;
  }

  .description {
      font-size: 16px;
  }

  .cta-button {
      font-size: 16px;
      padding: 12px 24px;
  }

  .planet-icon, .astronaut-icon {
      display: none;
  }
}
