:root {
  --gradiente: linear-gradient(90deg, #D92564, #FA4D56);
  --cor-principal: #1e1e1e;
  --cor-clara: #f9f8f6;
  --cor-texto: #333;
}

a{
    text-decoration: none;
    color: #f9f8f6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: var(--cor-clara);
  color: var(--cor-texto);
}

.imgtop {
  max-width: 200px;
  height: auto;
  padding: 10px;
}



nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--cor-texto);
  font-weight: 700;
  margin-right: 15px;
}

.menu-toggle {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 4.1rem;
  font-weight: 700;
  color: var(--cor-texto);
}

.hero h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradiente);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}

.hero p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #666;
}

.btn {
  margin-top: 30px;
  background: #FA4D56;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #D92564;
}

section {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.title::after {
  content: '';
  width: 50px;
  height: 4px;
  background: var(--gradiente);
  display: block;
  margin: 10px auto 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card ul {
  padding-left: 20px;
}

.card input,
.card textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1rem;
}

.grad-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradiente);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 10px;
}

footer {
  background-color: #111;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}


html, body {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .imgtop {
    max-width: 160px;
    height: auto;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: white;
    padding-top: 10px;
  }

  nav.active {
    display: flex;
  }

  .hero h2 {
    font-size: 2.7rem;
  }

  .hero h3 {
    font-size: 1.7rem;
  }

  .cards {
    grid-template-columns: 1fr !important;
  }

  #pacotes div {
    width: 90% !important;
    max-width: 300px;
  }  
}