/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #05070c;
  color: #eaeaea;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= CANVAS FUNDO ================= */
#internet-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, #0b1020, #02030a);
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 6px;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  background: linear-gradient(135deg, #5eead4, #38bdf8);
  color: #000;
  transition: all 0.3s ease;
}

.hero-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56,189,248,0.4);
}

.hero-buttons .outline {
  background: transparent;
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

/* ================= SECTIONS ================= */
section {
  padding: 6rem 8%;
}

section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* ================= SERVIÇOS ================= */
.services {
  position: relative;
}

.service-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(56,189,248,0.2);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(56,189,248,0.15);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-summary {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

/* ===== DETALHES ===== */
.service-details {
  display: none;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.service-details h4 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #38bdf8;
}

.service-details h5 {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #5eead4;
}

.service-details ul {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
}

.service-details ul li {
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* ===== BOTÃO ===== */
.toggle-btn {
  margin-top: 2rem;
  background: transparent;
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: #38bdf8;
  color: #02030a;
}

/* ===== AUTOMAÇÃO ===== */
.automation .automation-message {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(56,189,248,0.1);
  border-left: 3px solid #38bdf8;
  border-radius: 10px;
  font-style: italic;
}

/* ================= VÍDEOS ================= */
.videos {
  background: linear-gradient(180deg, rgba(2,3,10,0.7), rgba(15,23,42,0.8));
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.video-card {
  background: rgba(15,23,42,0.8);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(56,189,248,0.2);
}

.video-card h3 {
  margin-bottom: 1rem;
}

.video-card video {
  width: 50%;
  border-radius: 1px;
}

/* ================= PLANOS ================= */
.plans {
  background: radial-gradient(circle at top, #0b1020, #02030a);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.plan {
  background: rgba(15,23,42,0.75);
  border-radius: 20px;
  padding: 2.2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.plan.highlight {
  border: 2px solid #38bdf8;
  box-shadow: 0 0 40px rgba(56,189,248,0.25);
}

.plan h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.plan .desc {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.plan ul {
  list-style: none;
}

.plan ul li {
  margin-bottom: 0.6rem;
}


.note{
  text-align: center;
  padding: 2rem;
}

/* ================= CONTATO ================= */
.contact {
  text-align: center;
  padding: 4rem 2rem;
  background: #02030a;
}

.contact-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-links a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
  section {
    padding: 4rem 6%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
