@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins;
}

body {
  background: #f6f8fc;
  color: #333;
  cursor: url("../web/imgs/cursor.png"), auto;
}

:root {
  --azul: #1a73e8;
  --azul-escuro: #0f4fa8;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 70, 180, 0.45), rgba(0, 120, 255, 0.35));

  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  text-align: center;
  padding: 200px 20px;

  background-image: url("../web/imgs/rotuloCromove.png");
  background-size: cover;
  background-position: center;

  color: white;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero p {
  font-size: 18px;
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
}

.hero button {
  padding: 18px 40px;
  border-radius: 12px;
  border: none;

  background: white;
  color: var(--azul);

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.hero button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.features {
  padding: 80px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 18px;
  width: 280px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

a:hover,
button:hover,
.plano:hover,
.card:hover {
  background: #e8f3ff;
  color: #0b63ce;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  transform: translateY(-2px);
}

.planos {
  padding: 80px 20px;
  text-align: center;
}

.planos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.plano {
  background: white;
  padding: 40px;
  border-radius: 18px;

  width: 300px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.plano h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.plano ul {
  margin-top: 20px;
  margin-bottom: 25px;
}

.destaque {
  border: 2px solid #2b7cff;
}

.preco {
  font-size: 28px;
  margin: 15px 0;
}

.plano ul {
  list-style: none;
  margin-bottom: 20px;
}

.plano li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plano li::before {
  content: "✔";
  color: #2b7cff;
  font-weight: bold;
}

.plano button {
  padding: 12px 25px;
  border: none;
  background: #2b7cff;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.contato {
  padding: 80px 20px;
  text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  height: 120px;
}

form button {
  padding: 15px;
  border: none;
  background: #2b7cff;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: white;
  margin-top: 50px;
}

.como-funciona {
  padding: 80px 20px;
  text-align: center;
  background: #f0f4ff;
}

.como-funciona .card {
  width: 420px;
  text-align: left;
}

.lista {
  list-style: none;
  margin-top: 15px;
}

.lista li {
  margin: 10px 0;
  display: flex;
  gap: 10px;
}

.lista li::before {
  content: "📍";
}

.funciona-card {
  width: 420px;
  text-align: left;
}

.funciona-card h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--azul);
}

.lista {
  list-style: none;
  padding: 0;
}

.lista li {
  margin: 8px 0;
  position: relative;
  padding-left: 22px;
}

.lista li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--azul);
  font-weight: bold;
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 120px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }

  .plano {
    width: 100%;
    max-width: 350px;
  }

  .funciona-card {
    width: 100%;
    max-width: 350px;
  }
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 999;
}

.popup-box {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  max-width: 350px;
}

.popup-box h3 {
  margin-bottom: 10px;
}

.popup-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #2b7cff;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}
