/* ===== RESET E BASE ===== */

@font-face {
  font-family: title;
  src: url(asset/Font/AppleGaramond-Light.ttf);
}

@font-face {
  font-family: corp;
  src: url(asset/Font/DarkerGrotesque-VariableFont_wght.ttf);
}

@font-face {
  font-family: dmsans;
  src: url(asset/Font/DMSans-VariableFont_opsz_wght.ttf);
}

@font-face {
  font-family: dmsans-italic;
  src: url(asset/Font/DMSans-Italic-VariableFont_opsz_wght.ttf);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: corp;
  font-weight: normal;
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.btn:focus,
.nav-links a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ===== VARIÁVEIS CSS ===== */
:root {
  --primary: #074223;
  --primary-dark: #0f0e0e;
  --primary-light: #41644a;
  --secondary: #125e28;
  --accent: #b78b56;
  --bg-light: #000000;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --text-primary: #d9d4cb;
  --text-secondary: #41644a;
  --text-light: #ffffff;
  --border: #b78b56;
  --shadow-light: 0 4px 20px rgba(18, 64, 18, 0.15);
  --shadow-medium: 0 10px 40px rgba(18, 64, 18, 0.25);
  --gradient-hero: linear-gradient(135deg, var(--primary) 0%, #000000);
  --gradient-accent: linear-gradient(135deg, #41644a 0%, #074223);
  --gradient-accent-inverse: linear-gradient(135deg, #b78b56, black);
}

/* ===== CONFIGURAÇÕES GLOBAIS ===== */
html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  line-height: 1.5;
  color: white;
  background-image: url(img/gif.gif);
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

main {
  margin-top: 40px;
}

/* ===== TIPOGRAFIA ===== */
.heading-hero {
  font-family: title;
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: white;
  text-transform: uppercase;
}

.heading-xl {
  font-family: title;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

.heading-lg {
  font-family: title;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.text-corp {
  font-family: corp;
  color: var(--text-light);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.text-lg {
  font-family: corp;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.text-secondary {
  font-family: dmsans-italic;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== CONTAINER RESPONSIVO ===== */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 40px;
  background-image: linear-gradient(#000, rgb(0, 0, 0, 0.5), transparent);
  backdrop-filter: blur(30px);
}

.header.scrolled {
  background-color: black;
}

.nav {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.logo img {
  width: 300px;
  display: flex;
  left: 20px;
}

.nav-links {
  right: 20px;
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  font-size: 25px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== MENU HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-family: corp;
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: white;
  color: var(--primary);
  margin-bottom: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(18, 64, 18, 0.4);
}

.btn-secondary {
  background: black;
  color: var(--text-light);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  border: 2px solid black;
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== MARCAS CAROUSEL ===== */
.brands-carousel {
  align-items: center;
  overflow: hidden;
  padding: 2rem 0;
  background: var(--bg-secondary);
  z-index: 1;
}

.brands-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 3rem;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--border);
}

.brand-item:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  border: 3px solid var(--primary);
  box-shadow: 0 0 30px var(--primary);
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.brand-item2 img {
  flex: 0 0 auto;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 3px solid var(--black);
  box-shadow: 0 0 15px var(--secondary);
}

.brand-item2 img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  border: 3px solid var(--primary);
  box-shadow: 0 0 30px var(--primary);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-120px * 17 - 3rem * 17));
  }
}

/* ===== CARROSSEL PRINCIPAL ===== */
.carrossel-container {
  margin: 0;
  width: 100%;
  height: 90vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carrossel {
  width: 500%;
  height: 100%;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide {
  width: 20%;
  height: 100%;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 100px;
  text-align: left;
  background-image: linear-gradient(transparent, rgba(0, 0, 0));
}

/* Botões do Carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 1.7rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  background-color: transparent;
  border-radius: 50%;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.2);
  opacity: 1;
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: 20px;
}

.carousel-btn-next {
  right: 20px;
}

.indicadores {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 999;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.3);
}

.indicador {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
}

.indicador:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicador.active {
  background-color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.3);
}

.carrossel.transitioning {
  pointer-events: none;
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideContentIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes pulseGlow {
  0%,
  100% {
    text-shadow: 2px 2px 5px black;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 10px black;
    transform: scale(1.1);
  }
}

@keyframes banner-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes borderGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate3dWithPause {
  0% {
    transform: rotateY(0deg);
  }
  15% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}


.hero {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text .heading-hero {
  text-align: right;
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero-text .text-lg {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.hero-card .heading-xl{
  font-size: 2.2rem;
}

.hero-card:hover {
  transform: scale(1.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.stats-grid > div {
  text-align: center;
}

.instagram-card {
  width: 70%;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.instagram-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
}

.card-header img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.username {
  font-weight: 600;
  color: #262626;
  font-size: 1rem;
}

.video-container {
  position: relative;
  width: 100%;
  background: #000;
}

.preview-video {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  display: block;
}

.card-footer {
  padding: 16px;
}

.view-button {
  width: 100%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.view-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 148, 51, 0.4);
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  width: calc(100% - 4rem);
  margin: 4rem auto 0;
  padding: 3rem;
  border-top: 2px solid rgba(7, 66, 35, 0.3);
  border-bottom: 2px solid rgba(7, 66, 35, 0.3);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(7, 66, 35, 0.2);
}

.stat {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(45deg, transparent, rgba(7, 66, 35, 0.5), transparent);
  box-shadow: 0 15px 40px rgba(7, 66, 35, 0.4);
  border-radius: 15px;
  transition: all 0.5s ease;
  border: 1px solid rgba(7, 66, 35, 0.2);
}

.stat-number {
  color: var(--accent);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(7, 66, 35, 0.8);
  letter-spacing: 2px;
}

.stat-label {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-primary);
}


/* ===== SEÇÕES ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: black;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== PROBLEMAS SECTION ===== */
.problems-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border);
}

.problem-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
}

/* ===== EQUIPE ===== */
.equipe-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 20px;
  box-shadow: 0 0 15px var(--accent);
  border: 3px solid var(--border);
  object-fit: cover;
  transition: all 0.3s ease;
}

.equipe-img:hover {
  border: 3px solid var(--primary);
  box-shadow: 0 0 30px var(--primary);
}

.grupos {
  width: 100%;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 3fr));
  gap: 2rem;
  margin: 0 auto;
  justify-content: center;
}

.equipe-grid {
  width: 100%;
  max-width: 390px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  border: 2px solid var(--accent);
  padding: 2rem;
}

.equipe-grid .text-corp,
.equipe-grid .text-lg {
  width: 100%;
}

/* ===== SOLUÇÃO SECTION ===== */
.solution-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent-inverse);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: var(--border);
  z-index: 1;
}

/* ===== PROVA SOCIAL ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-author {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

/* ===== CTA FINAL ===== */
.cta-section {
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.urgency-badge {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: black;
  color: var(--text-primary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  margin: 0 auto;
  justify-content: center;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-light);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn img {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-image: url("img/whatsapp.png");
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(18, 64, 18, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(18, 64, 18, 0.6);
}

/* ===== BANNERS ===== */
.banner-principal {
  background: var(--gradient-hero);
  padding: 1rem 2rem;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.banner-principal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: banner-shine 3s infinite;
}

.banner-flutuante {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background: transparent;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  z-index: 1000;
  transform: translateX(0);
  transition: all 0.3s ease;
}

.banner-flutuante.hidden {
  transform: translateX(-350px);
  opacity: 0;
  pointer-events: none;
}

.banner-header {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  margin: -1rem -1rem 1rem -1rem;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-close {
  background: none;
  margin-bottom: 0.5rem;
  border: none;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.banner-cta {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: background-color 0.2s;
}

.banner-cta:hover {
  background: var(--accent);
}

.banner-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.banner-servico {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--border);
}

.banner-servico:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}

.badge-profissional {
  background: var(--gradient-accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-block;
  margin: 0.5rem 0;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets (1024px ou menos) */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 30px;
  }

  .heading-hero {
    font-size: 2.6rem;
  }
.hero {
    padding: 6rem 0 4rem;
  }

  .hero-content {
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .hero-stats {
    gap: 2rem;
    padding: 2.5rem;
    width: calc(100% - 3rem);
  }

  .stat {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Equipe - 3 colunas em tablets */
  #sobre .container > div:last-child > div:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
  }

  .equipe-grid {
    width: 100%;
    max-width: 100%;
  }

  .equipe-img {
    width: 100%;
    max-width: 180px;
    height: auto;
  }
}

/* Tablets pequenos e celulares grandes (768px ou menos) */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  main {
    margin-top: 20px;
  }

  body {
    overflow-x: hidden;
    background-position: right;
  }

  .container {
    padding: 0 15px;
    max-width: 100%;
  }

  /* Header Mobile */
  .header {
    height: 100px;
    padding: 10px 20px;
  }

  .logo img {
    width: 300px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease;
    padding: 2rem;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  /* Carrossel */
  .carrossel-container {
    height: 60vh;
    min-height: 350px;
    width: 100%;
    overflow: hidden;
  }

  .carrossel {
    width: 500%;
    height: 100%;
  }

  .slide {
    width: 20%;
    height: 100%;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .slide-content {
    padding: 30px 20px;
    width: 100%;
  }

  .slide-content .heading-hero {
    font-size: 2.5;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .slide-content .text-corp {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .indicadores {
    bottom: 20px;
    gap: 10px;
    padding: 8px 15px;
  }

  .indicador {
    width: 6px;
    height: 6px;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }

  .hero-text {
    order: 1;
  }

  .hero-text .heading-hero {
    text-align: center;
  }

  .hero-text .text-lg {
    text-align: center;
  }

  .hero-cta {
    align-items: center;
  }

  .hero-card {
    order: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .instagram-card {
    order: 3;
    max-width: 400px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
    width: calc(100% - 2rem);
    margin-top: 3rem;
  }

  .stat {
    padding: 1.5rem 1rem;
  }

  .brand-item {
    width: 150px;
  }

  .problems-grid,
  .solution-steps,
  .testimonials {
    display: grid;
    gap: 2rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .banner-servicos {
    display: flex;
    grid-template-columns: 3fr;
  }

  /* Sobre */
  #sobre .container > div:nth-child(2) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Equipe - 2 colunas em mobile */
  #sobre .container > div:last-child > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
  }

  .equipe-grid {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }

  .grupos {
    gap: 1rem;
  }

  .equipe-img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0.5rem auto;
  }

  .equipe-grid .text-corp {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .equipe-grid .text-lg {
    font-size: 0.95rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .banner-flutuante {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
  }

  .whatsapp-btn img {
    width: 50px;
    height: 50px;
  }
}

/* Celulares pequenos (480px ou menos) */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  body {
    background-position: right;
    overflow-x: hidden;
  }
  
  
  main {
    margin-top:100px;
  }


  .container {
    padding: 0 30px;
    overflow: hidden;
  }

  .heading-hero {
    font-size: 2rem;
  }

  .header {
    padding: 15px;
    align-items: center;
  }

  .logo img {
    width: 270px;
  }

  .nav-links {
    width: 85%;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 100%;
  }

  .carrossel-container {
    height: 50vh;
    min-height: 300px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
  }
  .brand-item2 img {
    border-radius: 20px;
    width: 100px;
  }

  .carrossel {
    width: 500%;
  }

  .slide {
    width: 20%;
  }

  .slide-content {
    padding: 100px 15px;
    width: 100%;
  }

  .slide-content .heading-hero {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
  }

  .slide-content .text-corp {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .banner-servicos {
    display: grid;
    grid-template-columns: 1fr;
  }
 .hero {
    padding: 4rem 0 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero-text .heading-hero {
    font-size: 2rem;
    text-align: center;
  }

  .hero-text .text-lg {
    font-size: 1rem;
    text-align: center;
  }

  .hero-card {
    padding: 1.5rem;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .instagram-card {
    width: 100%;
    max-width: 100%;
  }

  .hero-stats {
    display:flex;
    margin-top: 2rem;
  }

  .stat {
    padding: 1.25rem 0.75rem;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .badge-profissional {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .banner-flutuante {
    bottom: 70px;
    left: 15px;
  }

  .whatsapp-btn img {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }

  .section {
    padding: 3rem 0;
  }

  /* Equipe Mobile - 2 colunas */
  #sobre .container > div:last-child > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
  }

  .equipe-grid {
display: grid;
grid-template-columns: repeat(2fr);
  }

  .grupos {
  display: grid;
  }

  .equipe-img {
    max-width: 130px;
    height: auto;
    margin: 0.5rem auto;
  }

  .equipe-grid .text-corp {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .equipe-grid .text-lg {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .text-corp {
    font-size: 1.1rem;
  }

  .text-lg {
    font-size: 1.2rem;
  }

  .heading-lg {
    font-size: 1.3rem;
  }

  .heading-xl {
    font-size: 1.8rem;
  }
}

/* Ajustes para landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .carrossel-container {
    height: 70vh;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
