/* ===== GERAL ===== */
body {
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  background: #0e0e0e;
  color: #fff;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.main-header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* 🔹 totalmente transparente no início */
  transition: background 0.6s ease, border-color 0.6s ease;
  overflow: visible;
  
}

/* ===== Remove imagem de fundo ===== */
.main-header::before {
  display: none; /* 🔹 sem fundo de imagem */
}

/* ===== Divisor animado entre header e menu ===== */
.main-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(150, 150, 150, 0.45),
    transparent
  );
  opacity: 0;
  transform: scaleX(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.6s ease;
  pointer-events: none;
}

/* ===== Header preto quando rolar ===== */
.main-header.scrolled {
  background: #0e0e0e; /* 🔹 preto sólido ao rolar */
}
.main-header.scrolled::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ===== Quando o menu abre ===== */
.main-header.menu-open {
  background: #0e0e0e; /* 🔹 preto sólido ao abrir o menu */
}
.main-header.menu-open::after {
  opacity: 1;
  transform: scaleX(1);
  background: linear-gradient(
    to right,
    transparent,
    rgba(150, 150, 150, 0.5),
    transparent
  );
}

/* ===== CONTEÚDO DO HEADER ===== */
.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* 🔹 pequeno espaço entre logo e texto */
}

.logo-text span {
  color: #adff2f; /* 🔹 cor verde para DR */
}

/* ===== IMAGEM DO LOGO ===== */
.logo-icon {
  width: 19px;   /* 🔹 mesmo tamanho da altura do texto */
  height: 19px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px; /* 🔹 leve ajuste para alinhar perfeitamente ao texto */
}


/* ===== HEADER ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* ===== BOTÃO LET'S TALK (correção da cor do texto no hover) ===== */
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent !important; /* 🔹 sem fundo */
  border: 1.8px solid #fff;
  color: #fff !important;             /* 🔹 texto sempre branco no estado normal */
  border-radius: 50px;
  height: 46px;
  padding: 0 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.btn-contact i {
  transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover — muda apenas borda e texto para verde, nunca preto */
.btn-contact:hover {
  border-color: #adff2f;
  color: #adff2f !important;          /* ✅ força o texto verde */
  background: transparent !important; /* sem preenchimento */
}

/* Active e Focus — mantém verde */
.btn-contact:active,
.btn-contact:focus {
  border-color: #adff2f;
  color: #adff2f !important;
  background: transparent !important;
  outline: none;
  box-shadow: none;
}

/* Ícone também verde no hover */
.btn-contact:hover i,
.btn-contact:active i,
.btn-contact:focus i {
  color: #adff2f !important;
  transform: translateX(4px);
}



/* ===== HAMBURGER ICON ===== */
.hamburger {
  width: 56px;
  height: 46px;
  border: 1.8px solid #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.4s ease, background 0.4s ease;
  background: transparent !important; /* 🔹 sem preenchimento */
}

/* Linhas internas do ícone */
.hamburger span {
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* ===== POSIÇÕES ===== */
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }

/* ===== ANIMAÇÃO PARA X ===== */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}

/* ===== HOVER ===== */
.hamburger:hover {
  border-color: #adff2f;
  background: transparent !important;
}
.hamburger:hover span {
  background: #adff2f;
}

/* ===== ATIVO (MENU ABERTO) ===== */
.hamburger.active {
  border-color: #adff2f;
  background: transparent !important;
}
.hamburger.active span {
  background: #adff2f;
}

/* ===== VOLTA AO NORMAL ===== */
.hamburger:not(.active) {
  border-color: #fff;
  background: transparent !important;
}
.hamburger:not(.active) span {
  background: #fff;
}


/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 90%;
  background: #0e0e0e;
  transition: top 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.menu-overlay.active {
  top: 0;
}

/* ===== CONTEÚDO INTERNO ===== */
.menu-content {
  width: 100%;
  max-width: 1100px;
  padding: 140px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* ===== LINKS MENU ===== */
.menu-links {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px; /* espaçamento entre os links */
}

.menu-links li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LINKS PRINCIPAIS ===== */
.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  width: 100%;
  transition: color 0.4s ease;
}

.menu-links a:hover {
  color: #adff2f;
}

/* ===== ESQUERDA: TEXTO + NÚMERO ===== */
.menu-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-left span {
  font-size: 18px;
  color: #888;
  font-weight: 500;
  position: relative;
  top: -2px;
}

.menu-links a .menu-left {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ===== ÍCONES PADRONIZADOS (SETAS) ===== */
.menu-links a i {
  width: 52px;               /* igual ao botão do header */
  height: 44px;              /* mesma altura */
  border: 1.8px solid #fff;  /* mesma espessura */
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;           /* seta proporcional menor */
  color: #fff;
  background: transparent;   /* sem preenchimento */
  transition: all 0.35s ease;
}

/* ===== HOVER ===== */
.menu-links a:hover i {
  border-color: #adff2f;     /* muda só a borda */
  color: #adff2f;            /* e a cor da seta */
  background: transparent;   /* sem preenchimento */
  transform: translateX(5px);
}


/* ===== RODAPÉ MENU ===== */
.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 12px;
  margin-top: 80px; /* 🔹 desceu mais o rodapé */
  transform: translateY(-25px); /* 🔹 menor movimento pra equilibrar */
}

/* ===== DIVISOR SUPERIOR (fade nas pontas) ===== */
.menu-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(150, 150, 150, 0.45),
    transparent
  );
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 0.6s ease;
}

/* ===== TÍTULOS (“Siga-nos”, “Fique atento”) ===== */
.menu-social p,
.menu-email p {
  font-size: 22px;
  color: #b3b3b3;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* ===== LINKS SOCIAIS ===== */
.social-links a {
  color: #fff;
  margin-right: 22px;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #adff2f;
}

/* ===== BLOCO DE E-MAIL ===== */
.menu-email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.menu-email input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  color: #fff;
  padding: 10px 30px 10px 0;
  width: 280px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.menu-email input:focus {
  border-color: #adff2f;
}

.menu-email i {
  position: absolute;
  right: 0;
  bottom: 14px;
  color: #adff2f;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu-email i:hover {
  color: #fff;
  transform: translateX(4px);
}

/* ========================================================= */
/* ===== HEADER BUTTONS (SEM PREENCHIMENTO HOVER) ===== */
/* ========================================================= */

/* Botão "Let's Talk" */
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent; /* sem preenchimento */
  border: 1.8px solid #fff;
  color: #fff;
  border-radius: 50px;
  height: 46px;
  padding: 0 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.btn-contact:hover {
  background: transparent; /* ✅ sem preenchimento */
  border-color: #adff2f;   /* só muda a borda */
  color: #adff2f;          /* e o texto */
}

.btn-contact:hover i {
  color: #adff2f;
  transform: translateX(4px);
}

/* Ícone do menu (hambúrguer) */
.hamburger {
  width: 56px;
  height: 46px;
  border: 1.8px solid #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.35s ease;
  background: transparent; /* ✅ sem preenchimento */
}

.hamburger span {
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}
.hamburger.active {
  border-color: #adff2f;
}
.hamburger.active span {
  background: #adff2f;
}

.hamburger:hover {
  border-color: #adff2f;
  background: transparent; /* ✅ sem preenchimento */
}
.hamburger:hover span {
  background: #adff2f;
}





/* ===== SLIDE HERO (CENTRALIZAÇÃO CORRIGIDA) ===== */
.hero-slide {
  position: relative;
  width: 100%; /* não usar 100vw para evitar duplo deslocamento */
  height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* 🔹 Centraliza a imagem sem deslocar o container */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/slide.png") center center / cover no-repeat;
  opacity: 0;
  animation: fadeInBg 1.5s ease forwards;
}

/* 🔹 Mantém o fade sem mover horizontalmente */
@keyframes fadeInBg {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Conteúdo central do slide */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  color: #fff;
  animation: fadeInText 1.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Título slide */
.hero-content h1 {
  font-size: 95px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 50px;
}

.hero-content h1 span {
  color: #adff2f;
}

/* ===== BOTÕES DO SLIDE ===== */
.hero-buttons {
  display: flex;
  gap: 45px;
  justify-content: center;
  margin-top: 60px;
}

/* Botão da esquerda */
.hero-buttons a:first-child {
  background: #fff;
  color: #0e0e0e;
  border: 2px solid #fff;
  padding: 26px 70px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* Hover botão da esquerda */
.hero-buttons a:first-child:hover {
  background: #adff2f;
  border-color: #adff2f;
  color: #0e0e0e;
  transform: translateY(-3px);
}

/* Botão da direita */
.hero-buttons a:last-child {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 26px 70px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* Hover botão da direita */
.hero-buttons a:last-child:hover {
  border-color: #adff2f;
  color: #adff2f;
  background: transparent;
  transform: translateY(-3px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 25px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 22px 0;
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  width: 100%;
  background: #fff;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* 🔹 evita scroll extra durante animação */
}

.features-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-top: 0;
  box-sizing: border-box;

  /* 🔹 animação de entrada */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.2s;
}

/* 🔹 Título e subtítulo com leve atraso */
.features-subtitle,
.features-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.features-subtitle {
  animation-delay: 0.3s;
}

.features-title {
  animation-delay: 0.5s;
}

/* 🔹 Cards entram em sequência */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.9s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.7s; }
.feature-card:nth-child(2) { animation-delay: 0.9s; }
.feature-card:nth-child(3) { animation-delay: 1.1s; }
.feature-card:nth-child(4) { animation-delay: 1.3s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

/* ===== CARDS E ÍCONES (mantidos) ===== */
.feature-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.feature-card:hover {
  border-color: #888;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.feature-card .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background 0.3s ease;
}
.feature-card:hover .icon {
  background: #888;
}
.feature-card .icon i {
  font-size: 24px;
  color: #111;
  transition: color 0.3s ease;
}
.feature-card:hover .icon i {
  color: #fff;
}

/* ===== TEXTOS ===== */
.features-subtitle {
  color: #888;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.features-title {
  font-size: 58px;
  font-weight: 800;
  color: #111;
  margin-top: 4px;
  margin-bottom: 55px;
  line-height: 1.15;
}

.feature-card h3 {
  color: #111;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .features-title {
    font-size: 38px;
    margin-bottom: 40px;
  }
  .features-subtitle {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  .feature-card {
    text-align: center;
    padding: 35px 25px;
  }
  .feature-card .icon {
    margin: 0 auto 20px;
  }
}

/* ===== PORTFÓLIO SECTION ===== */
.portfolio-section {
  width: 100%;
  background: #0e0e0e;
  padding: 100px 20px 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden; /* 🔹 evita scroll ao animar */
}

.portfolio-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;

  /* 🔹 animação suave de entrada */
  opacity: 0;
  transform: translateY(60px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.2s;
}

/* ===== TÍTULOS ===== */
.portfolio-subtitle {
  color: #888;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-align: center;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.portfolio-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
  margin-bottom: 60px;
  line-height: 1.1;
  text-align: center;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* ===== CATEGORIA ===== */
.category-title {
  color: #adadad;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 40px;
  letter-spacing: 1px;
  position: relative;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.category-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 60px;
  height: 3px;
  background: #adadad;
  border-radius: 2px;
}

/* ===== GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-bottom: 100px;
}

/* ===== ITEM ===== */
.portfolio-item {
  display: flex;
  flex-direction: column;
  background: transparent;

  /* 🔹 animação de entrada sequencial */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 1s; }
.portfolio-item:nth-child(2) { animation-delay: 1.1s; }
.portfolio-item:nth-child(3) { animation-delay: 1.2s; }
.portfolio-item:nth-child(4) { animation-delay: 1.3s; }
.portfolio-item:nth-child(5) { animation-delay: 1.4s; }
.portfolio-item:nth-child(6) { animation-delay: 1.5s; }

/* ===== IMAGEM ===== */
.portfolio-image {
  width: 100%;
  height: 450px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: #000;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* ===== BLOCO TÍTULO + BOTÃO ===== */
.portfolio-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 22px;
  position: relative;
  text-align: left;
}

/* ===== TEXTO INTERNO ===== */
.portfolio-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

/* ===== CATEGORIA PEQUENA ===== */
.portfolio-type {
  color: #b3b3b3;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ===== TÍTULO ===== */
.portfolio-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  word-wrap: break-word;
  flex: 1;
  margin-right: 15px;
}

/* ===== BOTÃO DO CARD ===== */
.portfolio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.8px solid #fff;
  color: #fff;
  border-radius: 50px;
  width: 56px;
  height: 46px;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.35s ease, color 0.35s ease, transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 8px;
}

.portfolio-btn:hover {
  border-color: #adff2f;
  color: #adff2f;
  background: transparent;
}

/* ===== CABEÇALHO DA CATEGORIA ===== */
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* ===== BOTÕES NEXT / PREV ===== */
.slider-controls {
  display: flex;
  gap: 10px;
}

/* ===== BOTÕES NEXT / PREV ===== */
.slider-btn {
  width: 56px;
  height: 46px;
  border: 1.8px solid #fff;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.35s ease, color 0.35s ease, transform 0.3s ease;
}

.slider-btn:hover {
  border-color: #adff2f;
  color: #adff2f;
  background: transparent;
}

/* ===== SLIDER ===== */
.portfolio-slider {
  overflow: hidden;
  position: relative;
}

.portfolio-grid {
  display: flex;
  gap: 35px;
  transition: transform 0.6s ease;
}

.portfolio-item {
  flex: 0 0 calc(33.333% - 23px);
  box-sizing: border-box;
}

/* ========================================================= */
/* ===== LOGOMARCAS / IDENTIDADES VISUAIS (SOMENTE ZOOM) ==== */
/* ========================================================= */

.logo-item {
  flex: 0 0 calc(33.333% - 23px);
  box-sizing: border-box;
}

.logo-image {
  width: 100%;
  height: 350px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: #000;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 1.2s ease-in-out;
  will-change: transform;
}

.logo-image:hover img {
  transform: scale(1.08);
}

/* ===== LINHA DIVISÓRIA ===== */
.portfolio-divider {
  width: 100%;
  height: 1px;
  margin: 50px 0 30px;
  background: linear-gradient(
    to right,
    rgba(14, 14, 14, 0) 0%,
    rgba(180, 180, 180, 0.45) 50%,
    rgba(14, 14, 14, 0) 100%
  );
  border: none;
}

/* ===== AJUSTES DE ESPAÇAMENTO ===== */
.portfolio-divider {
  margin: 25px 0 10px;
}

.portfolio-category:last-of-type {
  margin-top: -30px;
}

.logos-grid {
  margin-bottom: 40px !important;
}

.category-title {
  margin-bottom: 25px;
}

.portfolio-divider {
  margin: 25px 0 0;
}

.portfolio-category:last-of-type {
  margin-top: 40px;
}

/* ===== ANIMAÇÃO ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== AJUSTE DE ESPAÇO ENTRE PORTFÓLIO E CTA (versão reduzida) ===== */

/* Reduz ainda mais o espaço entre as categorias */
.portfolio-category:last-of-type {
  margin-bottom: 10px; /* 🔹 espaço mínimo */
}

/* Linha divisória bem próxima do CTA */
.portfolio-divider {
  margin: 20px 0 0; /* 🔹 sobe quase colando com o CTA */
}

/* Diminui o padding inferior geral da seção portfólio */
.portfolio-section {
  padding-bottom: 20px; /* 🔹 quase encostando na próxima seção */
}



/* ===== CTA PROJETOS ===== */
.cta-projetos {
  width: 100%;
  background: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden; /* 🔹 evita scroll ao animar */
}

.cta-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;

  /* 🔹 animação suave no container geral */
  opacity: 0;
  transform: translateY(60px);
  animation: fadeInUp 1.3s ease forwards;
  animation-delay: 0.2s;
}

/* ===== TÍTULO ===== */
.cta-title {
  font-size: 72px; /* 🔹 mesmo tamanho do slide */
  font-weight: 800;
  color: #0e0e0e;
  line-height: 1.1;
  margin-bottom: 40px;

  /* 🔹 efeito suave individual no título */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.4s;
}

.cta-title span {
  color: #9ca3af;
  font-weight: 700;
}

/* ===== BOTÃO ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e0e0e;
  color: #fff;
  font-weight: 700;
  font-size: 20px; /* 🔹 mesmo tamanho do slide */
  padding: 20px 70px; /* 🔹 botão um pouco maior também */
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;

  /* 🔹 animação suave do botão */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.cta-btn:hover {
  background: #111;
  transform: translateY(-3px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .cta-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .cta-projetos {
    height: auto; /* 🔹 adapta no mobile */
    padding: 80px 20px;
  }
  .cta-title {
    font-size: 38px;
  }
  .cta-btn {
    font-size: 18px;
    padding: 14px 42px;
  }
}

/* ===== ANIMAÇÃO ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





/* ===== FOOTER ===== */
.footer-section {
  width: 100%;
  background: #0e0e0e;
  color: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 60px;
  box-sizing: border-box;
  overflow: hidden; /* 🔹 evita scroll ao animar */
}

.footer-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;

  /* 🔹 animação suave no container geral */
  opacity: 0;
  transform: translateY(60px);
  animation: fadeInUp 1.4s ease forwards;
  animation-delay: 0.2s;
}

/* ===== LOGO E DESCRIÇÃO ===== */
.footer-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;

  /* 🔹 fade suave */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.1s ease forwards;
  animation-delay: 0.3s;
}

.footer-logo {
  font-size: 44px;
  font-weight: 800;
  color: #adff2f; /* 🔹 DR verde */
  margin-bottom: 10px;
}

.footer-logo span {
  color: #fff; /* 🔹 agency branco */
}

.footer-desc {
  color: #a1a1a1;
  font-size: 18px;
  max-width: 600px;
  line-height: 1.5;
}

/* ===== BOTÕES SOCIAIS ===== */
.footer-social {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 80px;
  gap: 15px;

  /* 🔹 efeito suave */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

.social-btn {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  border: 1px solid #444;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* 🔹 espaço entre ícone e texto */
  font-size: 16px;
}

.social-btn i {
  font-size: 18px; /* 🔹 ícone levemente maior */
  transition: color 0.3s ease;
}

.social-btn:hover {
  border-color: #adff2f;
  color: #adff2f;
}

.social-btn:hover i {
  color: #adff2f;
}

/* ===== LINKS ===== */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;

  /* 🔹 fade suave */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.1s ease forwards;
  animation-delay: 0.7s;
}

.footer-col h4 {
  color: #c5c5c5;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #adff2f;
}

/* ===== INPUT EMAIL ===== */
.footer-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #444;
}

.footer-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 10px 0;
}

.footer-input button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-input button:hover {
  color: #adff2f;
}

/* ===== COPYRIGHT ===== */
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 14px;

  /* 🔹 efeito final no rodapé */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .footer-social {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .footer-col.stay-connected {
    grid-column: span 2;
  }
}

/* ===== ANIMAÇÃO ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.modal {
  display: none;
  position: fixed;
  inset: 0; /* ocupa toda a tela */
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 100000;
}

.close:hover {
  color: #adff2f;
}

#caption {
  margin-top: 15px;
  text-align: center;
  color: #ccc;
  font-size: 18px;
  max-width: 90%;
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 75vh;
  }
  .close {
    top: 20px;
    right: 25px;
    font-size: 32px;
  }
}


/* ===== OVERLAY FALE CONOSCO ===== */
.contact-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #0e0e0e;
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: top 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  padding-top: 90px;
  height: calc(72% - 90px);
  overflow-y: auto;
  opacity: 0;
}

/* ===== ABERTO ===== */
.contact-overlay.active {
  top: 0;
  opacity: 1;
}

/* ===== DIVISOR SINCRONIZADO ===== */
.contact-overlay.active::before {
  content: "";
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(150, 150, 150, 0.4),
    transparent
  );
  opacity: 0;
  transform: scaleX(0.9);
  animation: fadeLine 0.6s ease forwards 0.4s;
}

@keyframes fadeLine {
  from {
    opacity: 0;
    transform: scaleX(0.8);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ===== CONTEÚDO INTERNO ===== */
.contact-content {
  width: 100%;
  max-width: 1100px;
  padding: 40px;
  color: #fff;
  animation: fadeInDown 0.9s ease forwards;
  position: relative;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== DESCRIÇÃO ===== */
.contact-desc {
  font-size: 18px;
  color: #bfbfbf;
  text-align: left;
  margin-bottom: 30px;
  max-width: 700px;
}

/* ===== FORMULÁRIO ===== */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ===== LINHAS ===== */
.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}
.form-row.full {
  flex-direction: row;
  width: 100%;
}

/* ===== CAMPOS ===== */
#contactForm input,
#contactForm textarea {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid #333;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-family: 'Inter Tight', sans-serif;
  transition: border-color 0.3s ease;
  width: 100%;
  resize: none;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #adff2f;
  outline: none;
}

/* ===== BOTÃO ENVIAR ===== */
.btn-send {
  background: transparent;
  border: 1.8px solid #adff2f;
  color: #adff2f;
  border-radius: 50px;
  padding: 16px 0;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.btn-send:hover {
  background: #adff2f;
  color: #0e0e0e;
  transform: translateY(-2px);
}

/* ===== MENSAGEM DE FEEDBACK ===== */
.form-message {
  text-align: center;
  margin-top: -5px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  color: #adff2f;
}

.form-message.error {
  color: #fff;
}

/* ===== FIX HEADER ===== */
html {
  overflow-y: scroll;
}
body.noscroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-desc {
    font-size: 16px;
  }

  .contact-overlay {
    height: calc(80% - 90px);
    padding-top: 80px;
  }

  .contact-overlay.active::before {
    top: 80px;
  }
}

/* ============================================================
   ===== MODAL TRABALHE CONOSCO - DR DESIGN =====
   ============================================================ */

.work-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.work-modal.show {
  display: flex;
  opacity: 1;
  animation: fadeInModal 0.5s ease forwards;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== CONTEÚDO ===== */
.work-content {
  background: #0e0e0e;
  border: 1px solid #333;
  border-radius: 16px;
  width: 100%;
  max-width: 700px;
  padding: 40px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BOTÃO FECHAR ===== */
.close-work {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-work:hover {
  color: #adff2f;
}

/* ===== TÍTULO E DESCRIÇÃO ===== */
.work-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.work-desc {
  color: #bfbfbf;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.4;
}

/* ===== FORMULÁRIO ===== */
#workForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#workForm .form-row {
  display: flex;
  gap: 15px;
  width: 100%;
}

#workForm .form-row.full {
  flex-direction: column;
  width: 100%;
}

/* ===== CAMPOS GERAIS ===== */
#workForm input,
#workForm select,
#workForm textarea {
  flex: 1;
  background: #121212;
  border: 1.5px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

/* ===== ALTURA DO TEXTAREA ===== */
#workForm textarea {
  min-height: 120px; /* 🔹 mesma proporção dos outros campos, mas permite texto */
  resize: vertical;
}

#workForm input:focus,
#workForm select:focus,
#workForm textarea:focus {
  border-color: #adff2f;
  outline: none;
}

/* ===== SELECT ===== */
#workForm select {
  appearance: none;
  background: #121212;
  color: #fff;
  cursor: pointer;
}

#workForm select option {
  background: #0e0e0e;
  color: #fff;
}

/* ===== LABEL UPLOAD ===== */
.upload-label {
  display: block;
  color: #bfbfbf;
  font-size: 15px;
  margin-bottom: 8px;
}

/* ===== CAMPO UPLOAD ===== */
.upload-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#workForm input[type="file"] {
  display: block;
  width: 100%; /* 🔹 mesma largura total dos campos nome+telefone */
  background: #121212;
  border: 1.5px solid #333;
  border-radius: 8px;
  padding: 14px 16px;
  color: #adff2f;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  box-sizing: border-box;
}

#workForm input[type="file"]:hover {
  border-color: #adff2f;
}

/* ===== BOTÃO PADRÃO DO INPUT FILE ===== */
#workForm input[type="file"]::file-selector-button {
  background: #adff2f;
  border: none;
  color: #0e0e0e;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
}

#workForm input[type="file"]::file-selector-button:hover {
  background: #c5ff55;
}

/* ===== BOTÃO ENVIAR ===== */
#workForm .btn-send {
  background: transparent;
  border: 1.8px solid #adff2f;
  color: #adff2f;
  border-radius: 50px;
  padding: 16px 0;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
}

#workForm .btn-send:hover {
  background: #adff2f;
  color: #0e0e0e;
  transform: translateY(-2px);
}

/* ===== MENSAGEM FEEDBACK ===== */
.form-message {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: -5px;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  color: #adff2f;
}

.form-message.error {
  color: #fff;
}

/* ===== BLOQUEIO DE SCROLL ===== */
body.noscroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .work-content {
    padding: 30px 20px;
    margin: 0 10px;
  }

  #workForm .form-row {
    flex-direction: column;
  }

  .work-title {
    font-size: 26px;
  }

  .work-desc {
    font-size: 15px;
  }

  #workForm textarea {
    min-height: 100px;
  }
}



/* ===== MENSAGEM DE FEEDBACK NEWSLETTER ===== */
.footer-message {
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 10px;
}

.footer-message.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-message.success {
  color: #adff2f;
}

.footer-message.error {
  color: #fff;
}



/* ===== ICON COPIAR E-MAIL ===== */
.copy-icon {
  margin-left: 8px;
  font-size: 15px;
  color: #adff2f;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  position: relative;
  font-family: 'Inter Tight', sans-serif;
}

/* Exibe o ícone ao passar o mouse */
#emailCopyLink:hover .copy-icon {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOOLTIP ===== */
.copy-icon::after {
  content: "Copiar e-mail";
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #0e0e0e;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Tooltip visível ao passar o mouse */
.copy-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ===== MENSAGEM DE SUCESSO (FLOAT) ===== */
.email-toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #0e0e0e;
  color: #adff2f;
  border: 1px solid #adff2f;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter Tight', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.3px;
}

/* Animação de entrada */
.email-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ERRO ===== */
.email-toast.error {
  color: #fff;
  border-color: #fff;
}


/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.4s ease;
  text-decoration: none;
  overflow: visible;
}

/* Hover com leve brilho e zoom */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

/* Ícone */
.whatsapp-float i {
  pointer-events: none;
}

/* Tooltip (mensagem flutuante "Fale conosco") */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #0e0e0e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
  padding: 8px 14px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

/* Aparece no hover */
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Animação de pulsar */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.06);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse 2.5s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 26px;
    bottom: 22px;
    right: 22px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}






















