/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #111;
  --bg-light: #1e1e1e;
  --surface: #f2f2f2;
  --accent: #00cc64;
  --text: #e5e5e5;
  --radius: 8px;
  --transition: .3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
header {
  background-color: #f1f1f1;
  padding: .75rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 104px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav li {
  /* border-right: 4px solid #444; */
  padding-right: 1.5rem;
}

nav li:last-child {
  /* border-right: none; */
  /* padding-right: 0; */
}

nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  display: inline-block;
  /* padding-left: 1.5rem; */
}


nav a:hover {
  color: var(--accent);
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #000000;
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 70vh;
  background: url('../img/fundo.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 600px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.section h2 { font-size: 1.6rem; }
.card h3 { font-size: 1.05rem; margin-bottom: .5rem; }

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* PRÓXIMO NÍVEL */
.nivel-header {
  text-align: center;
  margin-bottom: 3rem;
}

.nivel-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.nivel-subtitle {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
}

.nivel-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.nivel-box {
  background: linear-gradient(135deg, rgba(192, 0, 0, 0.1), rgb(0 8 192 / 5%));
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.nivel-box h3 {
  font-size: 1.5rem;
  color: #d5d5d5;
  margin-bottom: 0.5rem;
}

.nivel-label {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.nivel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  border: 1px solid rgba(192, 0, 0, 0.3);
}

.badge {
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}

.features-grid {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.features-title {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.feature {
  padding: 0.8rem;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  font-weight: 500;
}

/* SECTIONS */
.section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #c72222;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--surface);
  color: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}

/* LISTA */
.lista li {
  margin-bottom: .5rem;
}

/* CONTACT BOXES */
.contact-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-box {
  flex: 1 1 220px;
  background-color: var(--surface);
  color: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.contact-box:hover {
  transform: scale(1.03);
}

.contact-box h3 {
  margin-bottom: .5rem;
  color: var(--accent);
}

.contact-box a {
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
}

.contact-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.contact-whatsapp h3 {
  color: white;
}

.contact-whatsapp a {
  color: white;
  font-size: 1.1rem;
}

.contact-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-instagram {
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
  color: white;
  text-decoration: none;
}

.contact-instagram h3 {
  color: white;
}

.contact-instagram p {
  color: white;
  font-size: 1.1rem;
}

.contact-instagram:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

/* FOOTER */

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: .5rem 1rem;
  background: var(--surface);
  color: var(--bg);
  border-radius: 4px;
  margin: .5rem;
  z-index: 2000;
}

/* CTA */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

/* FAQ */
.faq-item { margin-bottom: 1rem; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: .3rem; }

/* small improvements for menu markup */
nav ul { gap: .5rem; }

footer {
  background-color: var(--bg);
  color: var(--text);
  text-align: center;
  padding: 1rem 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: none;
    background-color: #f1f1f1;
    position: absolute;
    top: 60px;
    right: 5%;
    padding: 1rem;
    border-radius: var(--radius);
  }

  nav ul.show {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }

#menu{
  height: 427px;
  background-color: #f1f1f1;
  width: 200px;
  margin-top: 39px;
  right: 0;
}


.item{
  /* border: 2px solid red; */
  margin: 5px;
  padding: 10px;
  background-color: #dbdbdb;
  border-radius: 5px;
  text-align: end;
  width: 160px;
}

}

.infos
{
  /* margin-top: 20px; */
  width: 100%;
}

#diferenciais{
  
width: 500;
  
margin-left: 50px;
}