:root{
  --header-height:72px;
  --accent: #4dd0ff;
  --cta: #1e90ff;
  --bg: #0a0f1a;
  --dark-bg: #0f1724;
  --card-bg: #12203b;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:#fff;overflow-x: hidden;}

/* HEADER - MODIFICADO */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 5%;
  height:var(--header-height);
  background:rgba(10,15,26,0.9);
  backdrop-filter:saturate(120%) blur(6px);
  z-index:1000;
  box-shadow:0 2px 12px rgba(0,0,0,0.5);
}

/* Container interno para o header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Estilos para a logo - TAMANHO PROPORCIONAL */
.logo-image {
  height: 160px;
  width: auto;
  margin-top: 10px;
  transition: all 0.4s ease;
}

.nav {
  display: flex;
  align-items: center;
  margin-right: 47px;
}

/* Menu de navegação - ANIMAÇÕES SUAVES */
.nav-links{
  list-style:none;
  display:flex;
  gap:28px;
  margin: 0;
  padding: 0;
}

.nav-link-item{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size: 0.95rem;
  padding: 8px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-link-item:hover{
  color:var(--accent);
  transform: translateY(-2px);
}

/* HAMBURGER / SIDEBAR (mobile) */
.hamburger{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
  padding:8px;
  margin-left: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger-line{
  display:block;
  width:24px;
  height:3px;
  background:#fff;
  margin:3px 0;
  border-radius:3px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sidebar{
  position:fixed;
  top:0;
  right:-100%;
  width:76%;
  max-width:320px;
  height:100%;
  background:#0f1a2a;
  padding:84px 20px;
  display:flex;
  flex-direction:column;
  gap:18px;
  transition:right .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index:1100;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.sidebar.show{right:0}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-close:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.sidebar-link{
  color:#fff;
  text-decoration:none;
  font-size:1.1rem;
  padding: 10px 0;
  display: block;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.sidebar-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-link:hover::before {
  width: 30px;
}

.sidebar-link:hover{
  color:var(--accent);
  transform: translateX(5px);
}

/* SIDEBAR MINIMALISTA MODERNA - TEXTO AO LADO DOS ÍCONES */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  width: 100%;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 12px;
  font-weight: 600;
}

.sidebar-link::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77, 208, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.sidebar-link:hover::before {
  left: 100%;
}

.sidebar-link:hover {
  background: rgba(77, 208, 255, 0.1);
  transform: translateX(15px);
}

.sidebar-icon {
  width: 25px;
  margin-right: 15px;
  text-align: center;
  font-size: 1.3rem;
  color: var(--accent);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.sidebar-link:hover .sidebar-icon {
  transform: translateX(5px) scale(1.1);
}

.sidebar-link::after {
  content: '›';
  position: absolute;
  right: 25px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.sidebar-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* INDICADOR DE PÁGINA ATUAL - OPÇÃO 3 MELHORADA */
.sidebar-link.active {
  background: rgba(77, 208, 255, 0.25);
  box-shadow: 0 0 25px rgba(77, 208, 255, 0.4);
  position: relative;
  transform: translateX(10px);
  border: 1px solid rgba(77, 208, 255, 0.3);
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(77, 208, 255, 0.1) 0%, 
    rgba(77, 208, 255, 0.2) 50%, 
    rgba(77, 208, 255, 0.1) 100%);
  animation: gentleGlow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes gentleGlow {
  0%, 100% { 
    opacity: 0.6;
    background-position: 0% 50%;
  }
  50% { 
    opacity: 1;
    background-position: 100% 50%;
  }
}

.sidebar-link.active .sidebar-icon {
  color: #fff;
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(77, 208, 255, 0.8));
}

.sidebar-link.active::after {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
  text-shadow: 0 0 10px rgba(77, 208, 255, 0.8);
}

.sidebar-link.active span {
  color: #fff;
  text-shadow: 0 0 10px rgba(77, 208, 255, 0.5);
  position: relative;
  z-index: 2;
}

/* HERO (mantido original) */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

section{scroll-margin-top:calc(var(--header-height) + 12px)}

/* Particles */
#particles-js{position:absolute;inset:0;z-index:1}

/* Galeria como background - EFEITO DIAGONAL MAIS ACENTUADO */
.gallery-background{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.gallery-background::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(180deg, rgba(10,15,26,0.55) 0%, rgba(20,40,80,0.12) 60%);
}

.gallery{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  width: 100%;
  gap: 40px;
  transform: rotate(-15deg) translateX(-5%);
  transform-origin: center center;
}

.column{
  display:flex;
  flex-direction:column;
  gap:25px;
  animation:scroll-diagonal 35s linear infinite;
  min-width: 200px;
}

.scroll-down{animation-direction:reverse}

/* Animação diagonal mais pronunciada */
@keyframes scroll-diagonal{
  0%{transform:translate(0, 0)}
  100%{transform:translate(-50%, -100%)}
}

/* imagens do fundo */
.gallery img{
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 22px rgba(0,0,0,0.6);
  opacity:0.26;
  filter:blur(1px);
  transition: all 0.4s ease;
}

.gallery img:hover{
  opacity:0.4;
  transform: scale(1.05);
}

/* quando passar o mouse no hero, pausa a animação */
.hero:hover .column{animation-play-state:paused}

/* conteúdo do hero acima de tudo - MODIFICADO (removido fundo preto) */
.hero-content{
  position:relative;
  z-index:3;
  max-width:920px;
  padding:20px;
  /* Removido o fundo preto transparente */
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-content h1{
  font-size:2.6rem;
  margin-bottom:10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p{
  color:#d5dfe8;
  margin-bottom:18px;
  font-size: 1.2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* LOGO GRANDE, NÍTIDO E ORGANIZADO */
.logo-container {
  margin-bottom: 30px;
  text-align: center;
  animation: none !important;
  transform: none !important;
}

.hero-logo {
  height: 180px !important; /* MUDEI PARA 180px (BEM MAIOR) */
  width: auto;
  max-width: 300px;
  filter: 
    drop-shadow(0 0 20px rgba(77, 208, 255, 0.8)) 
    contrast(1.1) 
    brightness(1.1) !important;
  animation: none !important;
  transform: none !important;
  transition: none !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Remove qualquer efeito que atrapalhe a nitidez */
.hero-logo:hover {
  transform: none !important;
  filter: 
    drop-shadow(0 0 25px rgba(77, 208, 255, 0.9)) 
    contrast(1.1) 
    brightness(1.1) !important;
}

/* Garante que o logo fique sempre visível e nítido */
@media (max-width: 768px) {
  .hero-logo {
    height: 160px !important; /* AINDA GRANDE NO MOBILE */
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    height: 140px !important; /* GRANDE MESMO EM CELULARES PEQUENOS */
    max-width: 250px;
  }
}

/* Container para os botões do herói - MODIFICADO */
.hero-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* CTA - ANIMAÇÕES SUAVES */
.btn{
  display:inline-flex;
  align-items:center;
  padding:14px 28px;
  border-radius:8px;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary{
  background:var(--cta);
  box-shadow:0 6px 20px rgba(30, 144, 255, 0.15);
}

.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow:0 10px 25px rgba(30, 144, 255, 0.3);
  background: #3399ff;
}

/* Botão secundário discreto */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: rgba(77, 208, 255, 0.15);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-icon {
  margin-right: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: scale(1.1);
}

/* SEÇÕES */
.section{
  padding:88px 20px;
  text-align:center;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.section-header p {
  font-size: 1.1rem;
  color: #d5dfe8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NOVAS SEÇÕES ===== */

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.section-header p {
  color: #d5dfe8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* STATS SECTION - ANIMAÇÕES MELHORADAS */
.stats-section {
  padding: 80px 5%;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(77, 208, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 25px;
  perspective: 1000px;
  transition: transform 0.6s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.6s ease;
}

.stat-card:hover .stat-circle {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  background: linear-gradient(145deg, var(--card-bg), #0e1c32);
}

.stat-circle::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  animation: pulse-ring 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
  100% { transform: scale(0.95); opacity: 0.3; }
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.percent-symbol, .hour-symbol {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 2px;
}

.stat-label {
  color: #d5dfe8;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: #fff;
}

/* FEATURES SECTION */
.features-section {
  padding: 100px 5%;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(77, 208, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--accent);
  color: var(--bg);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  color: #d5dfe8;
  line-height: 1.6;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 5%;
  background: var(--dark-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-content > p {
  color: #d5dfe8;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.service-features i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* HOW IT WORKS SECTION - MELHORADA */
.how-it-works {
  padding: 100px 5%;
  background: var(--bg);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
  position: relative;
  flex: 1;
}

.step-content {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(77, 208, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  font-size: 2rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}

.step-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #fff;
}

.step-content p {
  color: #d5dfe8;
  line-height: 1.5;
  margin-top: auto;
}

/* TESTIMONIALS SECTION - MELHORADA (SEM ASPAS) */
.testimonials-section {
  padding: 100px 5%;
  background: var(--dark-bg);
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.testimonials-swiper {
  padding: 40px 0 60px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  margin: 15px;
  height: 320px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  transform: scale(0.95);
  opacity: 0.8;
}

.testimonial-card.featured {
  transform: scale(1);
  opacity: 1;
  background: linear-gradient(145deg, var(--card-bg), #0e1c32);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(77, 208, 255, 0.3);
  height: 340px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  color: #fff;
  line-height: 1.6;
  flex-grow: 1;
  position: relative;
  padding: 0 15px;
  font-size: 1.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.testimonial-card.featured .testimonial-text {
  font-size: 1.2rem;
  -webkit-line-clamp: 6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.testimonial-card.featured .author-avatar {
  width: 70px;
  height: 70px;
  border-width: 3px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-card.featured .author-info strong {
  font-size: 1.2rem;
}

.author-info span {
  font-size: 0.95rem;
  color: #d5dfe8;
}

/* Swiper navigation */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: #d5dfe8 !important;
  opacity: 0.5 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  opacity: 1 !important;
  transform: scale(1.3);
}

/* CTA SECTION - MODIFICADA */
.cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, var(--cta) 0%, #0066cc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100% 100%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

/* Botão CTA melhorado */
.btn-cta {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.1rem;
  padding: 16px 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-cta:hover::before {
  transform: translateX(100%);
}

.btn-cta:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.btn-arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
  transform: translateX(5px);
}

/* FOOTER - ANIMAÇÕES SUAVES NOS LINKS */
footer {
  background: var(--dark-bg);
  padding: 60px 5% 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-about p {
  color: #d5dfe8;
  margin: 15px 0 20px;
  line-height: 1.6;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d5dfe8;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact p {
  color: #d5dfe8;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent);
  width: 20px;
}

.professional-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.professional-links a {
  color: #d5dfe8;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
}

.professional-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.professional-links i {
  margin-right: 10px;
  color: var(--accent);
  width: 20px;
  transition: transform 0.3s ease;
}

.professional-links a:hover i {
  transform: scale(1.1);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #d5dfe8;
  font-size: 0.9rem;
}

/* -----------------------------
   INFINITE SCROLLING MARQUEE GRID (FULLSCREEN ZOOM)
   ----------------------------- */

.gallery-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery {
  display: flex;
  gap: 40px;
  height: 120%;
  transform: rotate(-12deg) scale(1.3);
  transform-origin: center center;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 220px;
  animation: scroll-vertical 35s linear infinite;
}

.scroll-down {
  animation-direction: reverse;
}

@keyframes scroll-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15%); }
}

.gallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.6);
  opacity: 0.6;
  filter: blur(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.hero:hover .column {
  animation-play-state: running;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  
  /* TABLET - CARDS 3D COM ESPAÇO */
  .gallery-background::after {
    background: linear-gradient(180deg, rgba(10,15,26,0.8) 0%, rgba(20,40,80,0.3) 100%);
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transform: none;
    height: 100vh;
    width: 100%;
    padding: 20px;
    perspective: 1000px;
    align-content: center;
  }
  
  .column {
    display: contents;
  }
  
  .gallery img {
    width: 100%;
    height: 200px;
    opacity: 0.85;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.5s ease;
    animation: cardFloat3D 8s ease-in-out infinite;
    transform-style: preserve-3d;
  }
  
  /* Animação em cascata para os cards */
  .gallery img:nth-child(1) { animation-delay: 0s; }
  .gallery img:nth-child(2) { animation-delay: 1s; }
  .gallery img:nth-child(3) { animation-delay: 2s; }
  .gallery img:nth-child(4) { animation-delay: 3s; }
  .gallery img:nth-child(5) { animation-delay: 0.5s; }
  .gallery img:nth-child(6) { animation-delay: 1.5s; }
  .gallery img:nth-child(7) { animation-delay: 2.5s; }
  .gallery img:nth-child(8) { animation-delay: 3.5s; }
  
  @keyframes cardFloat3D {
    0%, 100% { 
      transform: translateY(0px) rotateX(5deg) rotateY(3deg) scale(1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    50% { 
      transform: translateY(-15px) rotateX(-3deg) rotateY(-2deg) scale(1.05);
      box-shadow: 0 20px 40px rgba(77, 208, 255, 0.3);
    }
  }
  
  .gallery img:hover {
    transform: translateY(-20px) rotateY(8deg) scale(1.08);
    opacity: 1;
    box-shadow: 0 25px 50px rgba(77, 208, 255, 0.5);
    z-index: 10;
  }
  
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  
  .process-steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; margin-bottom: 60px; }
  
  .testimonial-card {
    transform: scale(0.95);
    margin: 10px;
    height: 300px;
  }
  
  .testimonial-card.featured {
    transform: scale(1);
    height: 320px;
  }
  
  .logo-image {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .header { padding: 14px 20px; }
  
  .hero-content h1 { font-size: 1.8rem; }
  
  /* MOBILE - BANNER FULLSCREEN AUTOMÁTICO */
  .gallery {
    display: flex;
    gap: 0;
    padding: 0;
    perspective: none;
    align-content: stretch;
  }
  
  .column {
    display: none; /* Esconde as colunas antigas */
  }
  
  /* Cria um slider fullscreen */
  .gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400%; /* 4 imagens */
    height: 100vh;
    display: flex;
    animation: bannerSlide 20s infinite ease-in-out;
  }
  
  .gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
    animation: bannerFade 20s infinite ease-in-out;
    transform: none;
  }
  
  /* Timing para cada imagem do banner */
  .gallery img:nth-child(1) { 
    animation-delay: 0s; 
    z-index: 4;
  }
  .gallery img:nth-child(2) { 
    animation-delay: 5s; 
    z-index: 3;
  }
  .gallery img:nth-child(3) { 
    animation-delay: 10s; 
    z-index: 2;
  }
  .gallery img:nth-child(4) { 
    animation-delay: 15s; 
    z-index: 1;
  }
  
  @keyframes bannerFade {
    0%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
  }
  
  @keyframes bannerSlide {
    0% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0%); }
  }
  
  .stats-container { grid-template-columns: 1fr; }
  
  .features-grid, 
  .services-grid { grid-template-columns: 1fr; }
  
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-contact p, .professional-links a { justify-content: center; }
  
  .testimonial-card {
    padding: 25px;
    margin: 5px;
    height: 280px;
  }
  
  .testimonial-card.featured {
    height: 300px;
  }
  
  .testimonial-text {
    font-size: 1rem;
    padding: 0 5px;
    -webkit-line-clamp: 4;
  }
  
  .testimonial-card.featured .testimonial-text {
    font-size: 1.1rem;
    -webkit-line-clamp: 5;
  }
  
  .logo-image {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .logo-image { height: 100px; }
  
  .hero-content h1 { font-size: 1.6rem; }
  
  /* MOBILE PEQUENO - BANNER MAIS RÁPIDO */
  .gallery::before {
    animation-duration: 16s;
  }
  
  .gallery img {
    animation-duration: 16s;
  }
  
  .gallery img:nth-child(1) { animation-delay: 0s; }
  .gallery img:nth-child(2) { animation-delay: 4s; }
  .gallery img:nth-child(3) { animation-delay: 8s; }
  .gallery img:nth-child(4) { animation-delay: 12s; }
  
  .section-header h2 { font-size: 1.8rem; }
  
  .testimonial-card { 
    padding: 20px;
    height: 260px;
  }
  
  .testimonial-card.featured {
    height: 280px;
  }
  
  .stat-circle {
    width: 120px;
    height: 120px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ESTILOS ESPECÍFICOS PARA O FOOTER - LOGO E PARÁGRAFO PRÓXIMOS */
footer {
  background: #0f1724;
  padding: 40px 5% 30px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 0; /* Removi completamente a margem inferior */
  display: flex;
  align-items: center;
  height: 130px;
}

.footer-logo img {
  height: 160px; /* Tamanho equilibrado */
  width: auto;
  margin-top: -20px;
  margin-bottom: -25px;
  transition: all 0.4s ease;
}

.footer-about p {
  margin: -15px 0 20px; /* Margem negativa no topo para aproximar do logo */
  color: #d5dfe8;
  line-height: 1.5;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #12203b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #4dd0ff;
  color: #0a0f1a;
  transform: translateY(-3px);
}

/* Ajuste de responsividade */
@media (max-width: 992px) {
  .footer-logo {
    height: 120px;
  }
  
  .footer-logo img {
    height: 150px;
    margin-top: -15px;
    margin-bottom: -20px;
  }
  
  .footer-about p {
    margin: -10px 0 15px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    height: 100px;
    justify-content: center;
  }
  
  .footer-logo img {
    height: 130px;
    margin-top: -10px;
    margin-bottom: -15px;
  }
  
  .footer-about p {
    margin: -5px 0 15px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    height: 90px;
  }
  
  .footer-logo img {
    height: 110px;
    margin-top: -5px;
    margin-bottom: -10px;
  }
  
  .footer-about p {
    margin: 0 0 15px;
    font-size: 0.9rem;
  }
}

/* Ajuste de responsividade */
@media (max-width: 992px) {
  .footer-logo {
    height: 120px;
  }
  
  .footer-logo img {
    height: 160px;
    margin-top: -25px;
    margin-bottom: -35px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    height: 100px;
    justify-content: center;
  }
  
  .footer-logo img {
    height: 140px;
    margin-top: -20px;
    margin-bottom: -30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    height: 90px;
  }
  
  .footer-logo img {
    height: 120px;
    margin-top: -15px;
    margin-bottom: -25px;
  }
}

@media (max-width: 576px) {
  .logo-image { height: 100px; }
  
  .hero-content h1 { font-size: 1.6rem; }
  
  .gallery { gap: 10px; }
  .gallery img { width: 80px; height: 80px; }
  
  .section-header h2 { font-size: 1.8rem; }
  
  .testimonial-card { 
    padding: 20px;
    height: 260px;
  }
  
  .testimonial-card.featured {
    height: 280px;
  }
  
  .stat-circle {
    width: 120px;
    height: 120px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}