body {
  margin: 0;
  background: #0a0a0a;
  color: white;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 140px;
  background: #0d0d0d;
  border-bottom: 2px solid #0077b6;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 60px;
  z-index: 1000;
}

/* LOGO GRANDE E ALINHADO */
header img {
  height: 160px;
  width: auto;
}
header {
  min-height: 170px;
}

/* MENU */
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #0077b6;
}

/* HERO */
.hero {
  width: 100%;
  min-height: 500px;

  background: url('images/server.jpg') center center no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 25px;
}

/* BOTÃO AZUL ESCURO */
.hero button {
  background: #0077b6;  
  border: none;
  padding: 12px 25px;
  color: white;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
  transition: 0.3s;
}

.hero button:hover {
  background: #005f8a;
}

/* SERVIÇOS */
.servicos {
  text-align: center;
  padding: 60px 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  background: #1a1a1a;
  padding: 25px;
  width: 220px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
  background: #222;
}

/* CONTATO */
.contato {
  text-align: center;
  padding: 60px 120px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  margin-top: 40px;
}

/* CENTRALIZA */
section {
  max-width: 1200px;
  margin: auto;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
  }

  nav {
    margin-top: 10px;
  }

  header img {
    height: 90px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .card {
    width: 80%;
  }
}
/* ÁREA DO LOGO + NOME */
.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area h1 {
  font-size: 28px;
  color: #0077b6;
  margin: 0;
}
.logo-area h1 {
  font-size: 32px;
  font-weight: bold;
  color: #00aaff;
}
/* HEADER FIXO */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 140px;
  background: #0d0d0d;
  border-bottom: 2px solid #0077b6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;

  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* LOGO */
.logo-area img {
  height: 120px;
}

/* NOME CENTRALIZADO */
.nome-empresa {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  font-weight: bold;
  color: #00aaff;
}

/* MENU */
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #0077b6;
}
body {
  margin: 0;
  padding-top: 140px;
}
/* ANIMAÇÃO */
.fade-in {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.aparecer {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: url('images/server.jpg') center/cover no-repeat;
}

/* caixa central */
.hero-box {
  position: relative;
  display: inline-block;
  padding: 40px;
  border-radius: 20px;
  z-index: 2;
}

/* AURORA EM VOLTA */
.hero-box::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 25px;
  background: linear-gradient(45deg, #0077b6, #00aaff, #0077b6);
  filter: blur(25px);
  opacity: 0.7;
  animation: auroraBorda 6s linear infinite;
  z-index: -1;
}

/* FUNDO ESCURO DA CAIXA */
.hero-box {
  background: rgba(0, 0, 0, 0.6);
}

/* ANIMAÇÃO */
@keyframes auroraBorda {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* TÍTULO PRINCIPAL (PC Soluções) */
.servicos h2 {
  font-size: 32px;
  font-weight: bold;
}

/* TEXTO ABAIXO */
.servicos p {
  font-size: 18 px;
}

/* BOTÕES (Servidores, Redes, Segurança) */
.card {
  font-size: 18px;
  padding: 20px 40px;
  border-radius: 10px;
}

/* CONTATO */
.contato h2 {
  font-size: 30px;
}

.contato p {
  font-size: 18px;
}
.servicos h2 {
  font-size: 36px;
  color: #00aaff;
}
.servicos h2 {
  font-size: 42px !important;
}

.servicos p {
  font-size: 30px !important;
}

.card {
  font-size: 22px !important;
  padding: 25px 50px !important;
}

.contato h2 {
  font-size: 36px !important;
}

.contato p {
  font-size: 22px !important;
}
/* ===== TÍTULO DA SEÇÃO ===== */
.servicos h2 {
  font-size: 56px !important;
  font-weight: bold;
  color: #00aaff;
}

/* TEXTO ABAIXO */
.servicos p {
  font-size: 30   px !important;
  margin-bottom: 40px;
}

/* BOTÕES (CARDS) */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  font-size: 24px !important;
  padding: 30px 60px !important;
  border-radius: 12px;
  background: #1a1a1a;
  transition: 0.3s;
  cursor: pointer;
}

/* HOVER (fica profissional) */
.card:hover {
  transform: scale(1.05);
  background: #0077b6;
}

/* CONTATO */
.contato h2 {
  font-size: 48px !important;
}

.contato p {
  font-size: 24px !important;
}
nav {
  z-index: 2;
}
.logo-area img {
  height: 170px !important;
}
.nome-empresa {
  font-size: 42px !important;
  font-weight: bold;
  color: #00aaff;
}
nav {
  display: flex !important;
  gap: 30px;
  margin-left: auto;
}

nav a {
  font-size: 30px !important;
  white-space: nowrap;
}
nav {
  display: flex;
  gap: 25px;
  margin-right: 80px; /* empurra o menu para esquerda */
}
/* SOBRE */
.sobre {
  text-align: center;
  padding: 80px 20px;
}

.sobre h2 {
  font-size: 42px;
  color: #00aaff;
}

.sobre p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 22px;
  line-height: 1.6;
}

/* DIFERENCIAIS */
.diferenciais {
  text-align: center;
  padding: 80px 20px;
}

.diferenciais h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #0077b6, #00aaff);
}

.cta h2 {
  font-size: 42px;
}

.cta p {
  font-size: 22px;
}

.cta button {
  background: #005f8a;
  padding: 15px 35px;
  border: none;
  color: white;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  transform: scale(1.05);
}
.destaque-servico {
  font-size: 25px;
  color: #00aaff;
  font-weight: bold;
  margin-bottom: 5px; /* diminui o espaço */
}
.destaque-servico {
  margin-bottom: 0px;
}
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00aaff;
  color: white;
  font-size: 30px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0,170,255,0.7);
  z-index: 999;
}
.btn-site {
  background: #00aaff;
  border: none;
  padding: 15px 30px;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-site:hover {
  transform: scale(1.05);
}
header {
  backdrop-filter: blur(8px);
}
section {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fade-in {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.9s ease;
}

.fade-in.aparecer {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.hero button {
  position: relative;
  overflow: hidden;
}

.hero button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.hero button:hover::before {
  left: 100%;
}
body::before {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,170,255,0.2), transparent);
  top: -100px;
  left: -100px;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,119,182,0.2), transparent);
  bottom: -100px;
  right: -100px;
  z-index: -1;
}
.nome-empresa {
  text-shadow: 0 0 10px rgba(0,170,255,0.7),
               0 0 20px rgba(0,170,255,0.5);
}
.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,170,255,0.2);
}
nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00aaff;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}
.robo-footer {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 90px;
  z-index: 10;

  animation: dancar 1.5s infinite ease-in-out;
}

/* deixa o footer preparado */
footer {
  position: relative;
}

/* DANÇA MAIS REAL */
@keyframes dancar {
  0%   { transform: rotate(0deg) translateY(0); }
  20%  { transform: rotate(10deg) translateY(-8px); }
  40%  { transform: rotate(-10deg) translateY(0); }
  60%  { transform: rotate(8deg) translateY(-6px); }
  80%  { transform: rotate(-8deg) translateY(0); }
  100% { transform: rotate(0deg) translateY(0); }
}

.robo-footer {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 90px;

  animation: dancar 2s infinite ease-in-out;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background: #111;
  font-size: 14px;
}

footer a {
  color: #00aaff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin: 8px 0;
}
footer {
  text-align: center;
  padding: 25px;
  background: #111;
  font-size: 20px;
  color: #ccc;
}

footer p {
  margin: 5px 0;
}
/* BASE DO SITE (AQUI ESTÁ O SEGREDO) */
body {
  font-size: 20px;
  line-height: 1.6;
}

/* TÍTULO PRINCIPAL */
h1 {
  font-size: 50px !important;
}

/* TÍTULOS */
h2 {
  font-size: 50px !important;
}

h3 {
  font-size: 30px !important;
}

/* TEXTO NORMAL */
p {
  font-size: 20 px !important;
}

/* LINKS */
a {
  font-size: 18 px;
}

/* CARDS */
.card {
  font-size: 30px !important;
}

/* CONTATO */
.contato p {
  font-size: 25px !important;
}
.nome-empresa {
  font-size: 70px !important;
  letter-spacing: 2px;
}
html {
  font-size: 130% !important;
}
.hero {
  max-width: 100% !important;
}
