:root {
  --brand-orange: #ff7a1a;
  --brand-orange-soft: #ffa15b;
  --brand-black: #080808;
  --brand-dark: #111111;
  --brand-gray: #bdbdbd;
}

* {
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--brand-black);
  color: #fff;
  scroll-behavior: smooth;
}

.navbar {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-text {
  color: #fff;
  font-weight: 700;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-orange-soft);
}

.hero {
  min-height: 92vh;
  background: radial-gradient(
    circle at 10% 10%,
    #2a2a2a 0%,
    var(--brand-black) 55%
  );
}

.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(255, 122, 26, 0.35),
    transparent 70%
  );
  pointer-events: none;
}

.floating {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}

.floating-1 {
  width: 90px;
  height: 90px;
  background: rgba(255, 122, 26, 0.6);
  top: 20%;
  left: 6%;
}

.floating-2 {
  width: 120px;
  height: 120px;
  background: rgba(255, 122, 26, 0.3);
  bottom: 10%;
  right: 12%;
  animation-delay: 2s;
}

.floating-3 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  top: 35%;
  right: 30%;
  animation-delay: 4s;
}

.badge-custom {
  display: inline-block;
  background-color: rgba(255, 122, 26, 0.15);
  border: 1px solid rgba(255, 122, 26, 0.45);
  color: var(--brand-orange-soft);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(45deg, #fff, #ffd1ac, #ff7a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-cta,
.btn-whatsapp {
  background: var(--brand-orange);
  color: #000;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.25);
}

.btn-cta:hover,
.btn-whatsapp:hover {
  background: #ff8e3f;
  color: #000;
  transform: translateY(-2px);
}

.pulse {
  animation: pulse 2.6s infinite;
}

.glass {
  backdrop-filter: blur(14px);
}

.hero-card {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 26, 0.18),
    rgba(255, 122, 26, 0.05)
  );
  border: 1px solid rgba(255, 122, 26, 0.25);
  border-radius: 1rem;
}

.stats-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 122, 26, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stats-card strong {
  color: var(--brand-orange);
  font-size: 1.8rem;
  line-height: 1;
}

.stats-card span {
  color: #d6d6d6;
  font-size: 0.9rem;
}

.section {
  background-color: var(--brand-black);
}

.section-title {
  font-weight: 800;
  color: var(--brand-orange);
}

.section-subtitle {
  color: var(--brand-gray);
}

.service-card,
.feedback-card {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 1.5rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.shine::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -120%;
  width: 70%;
  height: 220%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  transform: rotate(20deg);
  transition: all 0.6s ease;
}

.shine:hover::after {
  top: -20%;
  left: 130%;
}

.service-card:hover,
.feedback-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
}

.service-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-card p,
.feedback-card p {
  color: #cbcbcb;
  margin: 0;
}

.feedbacks {
  background: linear-gradient(180deg, var(--brand-black), #0f0f0f);
  p {
    margin-top: 0.5rem;
  }
}

.feedback-client {
  color: var(--brand-orange-soft);
  font-weight: 700;
  margin-top: 1rem;
}

.cta-section {
  background: linear-gradient(180deg, #101010, #080808);
}

.cta-box {
  border: 1px solid rgba(255, 122, 26, 0.35);
  border-radius: 1.2rem;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 122, 26, 0.08);
}

.btn-instagram {
  background: linear-gradient(45deg, #fd1d1d, #fcb045);
  color: #000;
  border: none;
  font-weight: 700;
}

.btn-instagram:hover {
  color: #000;
  transform: translateY(-2px);
}

.instagram-section {
  background: linear-gradient(180deg, #0c0c0c, #090909);
}

.instagram-card-real {
  background: #131313;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.instagram-card-real:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;
  border-bottom: 1px solid #212121;
}

.ig-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fd1d1d, #fcb045);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
}

.ig-header p {
  margin: 0;
  color: #ababab;
  font-size: 0.8rem;
}

.ig-media {
  min-height: 260px;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 122, 26, 0.45),
    rgba(7, 7, 7, 0.95)
  );
  display: flex;
  align-items: flex-end;
  padding: 0.9rem;
}

.ig-chip {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
}

.ig-body {
  padding: 0.9rem;
}

.ig-body p {
  color: #cfcfcf;
  margin-bottom: 0.65rem;
}

.instagram-open {
  color: var(--brand-orange-soft);
  text-decoration: none;
  font-weight: 700;
}

.instagram-open:hover {
  color: var(--brand-orange);
}

footer {
  border-top: 1px solid #1f1f1f;
  color: #9b9b9b;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(255, 122, 26, 0.25);
  }
  50% {
    box-shadow: 0 12px 30px rgba(255, 122, 26, 0.45);
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
    background: #111;
    border-radius: 0.75rem;
    padding: 1rem;
  }

  .floating {
    display: none;
  }
}

.nav-link.active {
  color: var(--brand-orange);
}

.team-card {
  background: #131313;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  padding: 1.3rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
}

.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(255, 122, 26, 0.5);
  object-fit: cover;
}

.team-role {
  color: var(--brand-orange-soft);
  font-weight: 700;
}

.service-more {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 122, 26, 0.7);
  color: var(--brand-orange-soft);
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.service-card:hover .service-more {
  opacity: 1;
  transform: translateY(0);
}

.service-more:hover {
  background: var(--brand-orange);
  color: #000;
}

.service-hero-image {
  width: 130px;
  height: 130px;
  border-radius: 1rem;
  border: 2px solid rgba(255, 122, 26, 0.35);
}

.service-detail-section {
  background: #111;
  border: 1px solid #282828;
  border-radius: 1rem;
  padding: 1.4rem;
}

.service-topic-card {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 0.9rem;
  padding: 1rem;
}

.service-topic-card h3 {
  font-size: 1.05rem;
  color: var(--brand-orange-soft);
  margin-bottom: 0.45rem;
}

.service-topic-card p,
.service-detail-section p {
  margin: 0;
  color: #d0d0d0;
}

.service-detail-section p + p {
  margin-top: 0.75rem;
}

.service-list {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.color-secondary {
  color: #d0d0d0;
}

@media (max-width: 991px) {
  .service-more {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-page .section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  text-wrap: balance;
}

.service-page .section-subtitle {
  max-width: 760px;
  line-height: 1.6;
}

.service-page .service-detail-section {
  padding: 1.6rem;
}

.service-page .service-detail-section h2 {
  color: #f3f3f3;
  font-weight: 700;
  line-height: 1.3;
}

.service-page .service-detail-section p,
.service-page .service-list li,
.service-page .service-topic-card p {
  line-height: 1.65;
}

.service-page .service-list li + li {
  margin-top: 0.25rem;
}

@media (max-width: 991px) {
  .service-page .service-detail-section {
    padding: 1.25rem;
  }
}

.footer-top {
  background: linear-gradient(180deg, #0f0f0f, #070707);
  border-top: 1px solid #1f1f1f;
  padding: 1rem;
}

.footer-title {
  font-size: 1rem;
  color: var(--brand-orange-soft);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.footer-text {
  color: #b9b9b9;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-links span {
  color: #b9b9b9;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-orange-soft);
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  color: #9b9b9b;
}

@media (max-width: 768px) {
  .footer-top .col-6 {
    width: 38%;
  }
}

/* ===== Ajustes das Tasks ===== */

/* Clarear menu hamburguer mobile */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
  filter: brightness(5);
}

/* Melhorar leitura do texto da hero */
.hero .lead {
  color: #e5e5e5;
}

/* Espaçamento feedbacks */
.feedback-card p:first-child {
  margin-bottom: 1.4rem;
}

.feedback-client {
  margin-top: 1.4rem;
}

/* Corrigir quebra de email no footer */
.footer-links a {
  word-break: break-word;
}

.footer-text {
  word-break: break-word;
}

/* Reduzir espaçamento footer mobile */
@media (max-width: 768px) {
  .footer-links {
    gap: 0.3rem;
  }

  .footer-top .col-6 {
    width: 48%;
  }

  .footer-links a,
  .footer-links span {
    font-size: 0.9rem;
  }
}
