/* ======= Estilo Geral ======= */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

/* ======= Cabeçalho ======= */
header {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.9);
}
header img {
  width: 130px;
}
nav {
  display: flex;
  align-items: center;
}
.menu {
  margin: 0 15px;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}
.menu:hover { color: #26ffff; }

.btn-cta {
  background: #26ffff;
  color: black;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn-cta:hover {
  background: #00c2c2;
}

/* ======= Hero ======= */
.hero {
  height: 100vh;
  background: url('../img/background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 10px;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 20px;
}
.hero h1 {
  font-size: 2.8rem;
  color: #26ffff;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #ddd;
}
.btn-primary {
  margin-top: 25px;
  background: #26ffff;
  color: black;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #00b8b8;
}

/* ======= Seções ======= */
.section {
  padding: 100px 10%;
  text-align: center;
}
.section h2 {
  color: #26ffff;
  font-size: 2rem;
  margin-bottom: 20px;
}
.section p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.img-center {
  width: 350px;
  border-radius: 20px;
  max-width: 90%;
}

/* ======= Planos ======= */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}
.plano-card {
  background: #111;
  border: 1px solid #26ffff33;
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
}
.plano-card:hover {
  transform: translateY(-8px);
  border-color: #26ffff;
}
.plano-card h3 {
  color: #26ffff;
  margin-bottom: 10px;
}
.plano-card p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.plano-card h4 {
  font-size: 1.6rem;
  color: #fff;
}
.btn-secondary {
  display: inline-block;
  margin-top: 15px;
  background: transparent;
  border: 1px solid #26ffff;
  color: #26ffff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: #26ffff;
  color: black;
}
.destaque {
  background: linear-gradient(180deg, #001a1a 0%, #000 100%);
  border: 2px solid #26ffff;
}

/* ======= CTA ======= */
.cta {
  background: linear-gradient(135deg, #000, #002626);
  padding: 100px 10%;
  text-align: center;
}
.cta h2 { color: #26ffff; font-size: 2rem; }
.cta p { color: #ccc; margin: 15px 0 30px; }
.btn-glow {
  background: #26ffff;
  color: black;
  padding: 12px 40px;
  border-radius: 35px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 20px #26ffff88;
  transition: 0.3s;
}
.btn-glow:hover {
  background: #00b8b8;
  box-shadow: 0 0 30px #26ffff;
}

/* ======= Rodapé ======= */
footer {
  background: #000;
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

/* ======= Rolagem suave ======= */
.section:target {
  animation: foco 1.5s ease;
}
@keyframes foco {
  0% { box-shadow: 0 0 0px #26ffff00; }
  50% { box-shadow: 0 0 30px #26ffff33; }
  100% { box-shadow: 0 0 0px #26ffff00; }
}

/* ======= Responsividade ======= */
@media (max-width: 1024px) {
  header {
    padding: 15px 25px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding: 20px 0;
  }
  nav.active {
    display: flex;
  }
  .menu {
    margin: 10px 0;
    font-size: 18px;
  }
  .btn-cta {
    margin-top: 10px;
  }
  header img {
    width: 110px;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section {
    padding: 70px 5%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .btn-primary, .btn-glow {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .img-center {
    width: 250px;
  }
}






/* ======= Botão de menu (mobile) ======= */
.menu-btn {
  display: none;
  font-size: 28px;
  color: #26ffff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
}




body, html {
  margin: 0;
  padding: 0;
}

.img-center {
  display: block;
  width: 100vw;     /* Garante 100% da largura da tela */
  max-width: 100vw; /* Impede recuo lateral */
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 0; /* Remove o arredondado que afastava das bordas */
}

.section .img-center {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
}


