/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #0b0c2a, #16051a);
  color: white;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 20px 40px;
  background: linear-gradient(to right, #0b0c2a, #1e003b);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  width: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #ff7edb;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 40px;
  background: linear-gradient(to bottom, #0b0c2a, #16051a);
  flex-wrap: wrap;
  gap: 40px;
}

.hero-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}

.hero-content .destaque {
  color: #ff4d89; /* rosa vibrante */
}

.hero-content p {
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.hero-content .botao {
  display: inline-block;
  background-color: #ff4d89;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-content .botao:hover {
  background-color: #ff3370;
}

.hero-animation {
  flex: 1 1 300px;
  max-width: 400px;
}

dotlottie-player {
  width: 100%;
  height: auto;
}

@keyframes flutuar {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-animation dotlottie-wc {
  width: 100%;
  max-width: 400px; 
  height: auto;
  animation: flutuar 3s ease-in-out infinite;
}

.servicos {
  background: linear-gradient(to bottom, #0c0c22, #16051a);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.servicos h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.servicos .subtitulo {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 3rem auto 0 auto;
  padding: 0 1rem;
}

.card {
  background: #1b1b2e;
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 0, 144, 0.05);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 144, 0.3);
}

.card svg {
  width: 40px;
  height: 40px;
  color: #f472b6;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: #bbb;
  font-size: 0.95rem;
}

.sobre {
  background: linear-gradient(to bottom, #0b0c2a, #140419);
  padding: 5rem 1rem;
  color: white;
}

.sobre-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .sobre-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.sobre-texto p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

.sobre-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-imagem img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.destaque {
  color: #ff4fa1;
  font-weight: 600;
}

.secao-planos {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #10002b, #1c0a2d);
  color: #fff;
  text-align: center;
}

.container-planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 50px auto 0;
}

.card-plano {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(255, 79, 161, 0.2);
  transition: transform 0.3s ease;
}

.card-plano:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 79, 161, 0.4);
}

.card-plano h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-plano .preco {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ff4fa1;
  margin-bottom: 20px;
}

.card-plano ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.card-plano ul li {
  margin-bottom: 10px;
}

.btn-cta {
  background-color: transparent;
  border: 2px solid #ff4fa1;
  padding: 10px 20px;
  color: #ff4fa1;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background-color: #ff4fa1;
  color: #0f0f1e;
}

.recomendado {
  border: 2px solid #ff4fa1;
}

.destaque-botao {
  background-color: #ff4fa1;
  color: #0f0f1e;
  border: none;
}

.secao-blog {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0b0c2a, #16051a);
  color: #fff;
  text-align: center;
}

.container-blog {
  max-width: 1200px;
  margin: 0 auto;
}

.descricao-blog {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
}

.posts-blog {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
}

.card-post {
  background-color: #1b1b2e;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 0 12px rgba(255, 79, 161, 0.1);
  transition: transform 0.3s;
}

.card-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 16px rgba(255, 79, 161, 0.3);
}

.card-post img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-post h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.card-post p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

.btn-post {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff4fa1;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-post:hover {
  background-color: #ff76b6;
}

.secao-contato {
  padding: 100px 20px;
  background: linear-gradient(180deg, #16051a, #0b0c2a);
  color: #fff;
  text-align: center;
}

.container-contato {
  max-width: 600px;
  margin: 0 auto;
}

.descricao-contato {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.formulario-contato {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.campo {
  display: flex;
  flex-direction: column;
}

.campo label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #ff4fa1;
}

.campo input,
.campo textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background-color: #1b1b2e;
  color: #fff;
  font-size: 1rem;
}

.campo input::placeholder,
.campo textarea::placeholder {
  color: #888;
}

.btn-enviar {
  background-color: #ff4fa1;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-enviar:hover {
  background-color: #ff76b6;
}

.secao-area-cliente {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0b0c2a, #10002b);
  color: #fff;
  text-align: center;
}

.container-cliente {
  max-width: 500px;
  margin: 0 auto;
}

.descricao-area {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.formulario-login {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.campo-login {
  display: flex;
  flex-direction: column;
}

.campo-login label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #ff4fa1;
}

.campo-login input {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background-color: #1b1b2e;
  color: #fff;
  font-size: 1rem;
}

.btn-login {
  background-color: #ff4fa1;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-login:hover {
  background-color: #ff76b6;
}

.recuperar {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

.recuperar a {
  color: #ff4fa1;
  text-decoration: underline;
}

.rodape {
  background: #0a0a1a;
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.container-rodape {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.coluna h3 {
  color: #ff4fa1;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.coluna ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coluna ul li {
  margin-bottom: 8px;
}

.coluna ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.coluna ul li a:hover {
  color: #ff4fa1;
}

.logo-footer {
  width: 140px;
  margin-bottom: 12px;
}

.descricao-footer {
  font-size: 0.9rem;
  color: #aaa;
  max-width: 250px;
}

.copy {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  margin-top: 40px;
  color: #888;
}

/* Botões e CTAs */
.botao,
.btn-cta,
.btn-enviar,
.btn-login {
  background: linear-gradient(135deg, #ff4ec4, #5c45ff);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(92, 69, 255, 0.3);
}

.botao:hover,
.btn-cta:hover,
.btn-enviar:hover,
.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(92, 69, 255, 0.4);
  background: linear-gradient(135deg, #ff73d4, #7865ff);
}

/* Elementos animáveis */
.animar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animado {
  opacity: 1;
  transform: translateY(0);
}

/* === MENU HAMBURGUER === */
.hamburguer {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-nav {
  display: flex;
}

@media (max-width: 768px) {
  .hamburguer {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  .menu-nav {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(11, 12, 42, 0.9); /* tom azul escuro com transparência */
  backdrop-filter: blur(6px); /* efeito de desfoque no fundo */
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}


  .menu-nav.ativo {
    transform: translateX(0);
  }

  .menu {
    flex-direction: column;
    gap: 2rem;
    font-size: 1.5rem;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

