/* ===== RESET VISUAL ===== */
body {
  font-family: "Sora", sans-serif;
  background: #0f0f0f;
  color: #343a40;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 0, 0, 0.9) !important;
  border-bottom: 2px solid #ff7a18;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #ff7a18 !important;
}

/* ===== HERO ===== */
.hero-artcolors {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 122, 24, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 153, 255, 0.25),
      transparent 40%
    ),
    #0b0b0b;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  z-index: 2;
}

.hero-logo {
  display: block;
  margin: 0 auto 30px auto; /* CENTRALIZA */
  max-width: 500px;
}

/* ===== AJUSTES MOBILE ===== */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-artcolors h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff7a18, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-artcolors h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 20px;
}

.hero-artcolors p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #ddd;
}

/* ===== SOCIAL ===== */
.social-links {
  margin-top: 35px;
}

.social-links a {
  color: #ccc;
  margin: 0 15px;
  font-size: 1.2rem;
  text-decoration: none;
}

.social-links a:hover {
  color: #00aaff;
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 0;
}

section h2 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ff7a18, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== CARDS ===== */
.card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card-title {
  color: #ff7a18;
}

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 2px solid #00aaff;
  color: #aaa;
}

.card-text {
  color: #f2f2f2;
  font-size: 1.05rem;
  line-height: 1.6;
}
/* ===== SPRAY CANVAS ===== */
#sprayCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-artcolors {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* brilho animado tipo pintura */
.hero-artcolors::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 122, 24, 0.15),
    rgba(0, 170, 255, 0.15),
    transparent 60%
  );
  animation: paintGlow 6s infinite linear;
  z-index: 0;
}

@keyframes paintGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* ===== CONTATOS CENTRALIZADOS ===== */
#contatos {
  text-align: center;
}

#contatos .row {
  justify-content: center;
}

#contatos iframe {
  display: block;
  margin: 15px auto;
}

#contatos img {
  display: block;
  margin: 15px auto;
}

#contatos h5 {
  margin-top: 20px;
}

/* ===== LOGO NAVBAR ===== */
.logo-navbar {
  height: 40px;
}

.navbar-brand span {
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
/* ===== CORREÇÃO OVERFLOW MOBILE ===== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}
#sprayCanvas {
  max-width: 100vw;
}

/* ===== NAVBAR LINKS COMO BOTÕES ===== */
.navbar-nav .nav-link {
  padding: 10px 18px;
  margin-left: 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  transition: 0.3s;
}

/* Hover */
.navbar-nav .nav-link:hover {
  background: linear-gradient(90deg, #ff7a18, #ff9a3c);
  color: #000 !important;
  box-shadow: 0 0 15px rgba(255, 122, 24, 0.6);
}

/* Link ativo */
.navbar-nav .nav-link.active {
  background: linear-gradient(90deg, #ff7a18, #ff9a3c);
  color: #000 !important;
}
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin: 8px 0;
    text-align: center;
  }
}

/* ===== AJUSTE H1 / H2 HERO ===== */
.hero-artcolors h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2; /* RESPIRA */
  margin-bottom: 12px; /* espaço abaixo */
  background: linear-gradient(90deg, #ff7a18, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-artcolors h2 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.4; /* RESPIRA */
  margin-bottom: 24px; /* separa do texto */
  color: #ccc;
}
@media (max-width: 768px) {
  .hero-artcolors h1 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero-artcolors h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}
/* ===== BOTÕES CAPSULA (SIMÉTRICOS E ELEGANTES) ===== */
.btn-pill {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* esquerda | texto | ícone */
  align-items: center;

  width: fit-content;
  max-width: 380px; /* menos comprido */
  margin: 0 auto;

  padding: 18px 28px; /* 🔥 menos altura */
  border-radius: 999px;

  font-size: 1.31rem; /* 🔥 fonte equilibrada */
  font-weight: 600;
  letter-spacing: 0.2px;

  text-decoration: none;
  color: #111;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-pill span {
  grid-column: 2;
  margin-right: 15px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-pill img {
  grid-column: 3;
  margin-left: 10px;
  justify-self: end;
  width: 24px; /* 🔥 proporcional à fonte */
  height: auto;
}
.btn-pill:hover {
  transform: translateY(-3px);
}

/* ===== BOTÃO ORÇAMENTO (LARANJA) ===== */
.btn-orcamento {
  background: linear-gradient(135deg, #ff7a18, #ff9a3c);
}

.btn-orcamento:hover {
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.8);
}

/* ===== BOTÃO WHATSAPP (VERDE) ===== */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #4fe58b);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

/* ===== CORES DOS BOTÕES ===== */

/* ORÇAMENTO */
.btn-orcamento {
  background: linear-gradient(135deg, #ff7a18, #ff9a3c);
}

.btn-orcamento:hover {
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.8);
}

/* WHATSAPP */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #4fe58b);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}
@media (max-width: 768px) {
  .btn-pill {
    max-width: 100%;
    font-size: 1.1rem;
    padding: 18px 24px;
  }

  .btn-pill img {
    width: 26px;
  }
}
