/* ====== RESET ====== */
/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0; /* <-- CORRIGIDO AQUI */
  box-sizing: border-box; /* <-- ESSENCIAL PARA LAYOUT */
  
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  overflow-x: hidden;
}

body.loaded {
  opacity: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; /* <-- ADICIONE O PADDING AQUI */
}

/* ====== HEADER ====== */
.header {
  background: rgba(255, 255, 255, 0.95);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 123, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 123, 255, 0.1);
  animation: slideDown 0.5s ease-out;
}

/* Esconde elementos mobile em desktop */
.nav-toggle, .nav-overlay {
  display: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* O padding agora vem do .container */
}

.header.scrolled .header-content {
  padding: 8px 0;
}

.logo {
  width: 160px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 123, 255, 0.15));
}

.header.scrolled .logo {
  width: 145px;
  transform: scale(0.95);
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 123, 255, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: #2c3e50;
  padding: 10px 18px;
  margin: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav a:hover::before {
  left: 100%;
}

.nav a:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  transform: translateY(-2px);
}

.nav a.active {
  background: linear-gradient(135deg, #007bff 0%, #0099ff 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transform: translateY(-1px);
}

.nav a.active:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0088ee 100%);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

.nav a strong {
  font-weight: 700;
}



.nav a:last-child::after { display: none !important; content: none !important; }

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* ===== HERO ===== */

.hero {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(239, 246, 255, 0.3) 50%, #FFFFFF 100%);
  overflow: visible;
  padding: 8px 0; /* Remove padding lateral */
}

/* container flexível */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== TEXTO ===== */
.hero-text {
  flex: 1;
  padding: 16px 0;
  position: relative;
  z-index: 3;
}

body:not(.loaded) .hero-text {
  opacity: 0;
  transform: translateY(30px);
}

body.loaded .hero-text {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text h1 {
  color: #004aad;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #004aad 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
}

body.loaded .hero-text h1 {
  animation: fadeInUp 0.8s ease-out forwards, gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.text-tecnologia {
  width: 297.6666564941406px;
  height: 42.67000198364258px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(0, 180, 219, 1);
  top: 17.33px;
  left: 259px;
  border-radius: 44739200px;
  border-width: 1px;
  padding: 8px 16px; /* Adiciona padding de volta localmente */
}

body:not(.loaded) .text-tecnologia {
  opacity: 0;
}

body.loaded .text-tecnologia {
  animation: fadeInBounce 0.8s ease-out 0.3s forwards;
}

.hero-text p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 500px;
  padding: 8px 0; /* Remove padding lateral */
}

/* ===== HERO BUTTONS ===== */

.hero-buttons {
  opacity: 0;
}

body.loaded .hero-buttons {
  animation: fadeInBounce 0.8s ease-out 0.4s forwards;
}

.hero-buttons a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.hero .btn-primary {
  background: linear-gradient(90deg, #1363F9 0%, #20C1E0 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
}

body.loaded .btn-primary {
  animation: pulse 2s ease-in-out infinite;
  animation-delay: 1s;
}

.hero .btn-secondary {
  background: #FFFFFF;
  color: #00bfff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
}

/* ===== IMAGENS ===== */
.hero-image{
  flex:1;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-width:560px;
  height:560px;
  overflow:visible;
}



body:not(.loaded) .hero-image{
  flex:1;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-width:560px;
  height:560px;
  overflow:visible;
}



body.loaded .hero-image{
  flex:1;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-width:560px;
  height:560px;
  overflow:visible;
}



/* aura azul – decorativo */
.hero-decorative {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000%;
  height: auto;
  z-index: 1;
  object-fit: cover;
  opacity: 0.9;
  height: 350px;
}

/* mulher sorrindo – principal */
.mulher-sorrindo{
  position:relative;
  z-index:2;
  height:clamp(700px, 94vh, 1050px);
  width:auto;
  transform: translateY(148px);
  transition:transform .1s ease-out;
}



/* ===== RESPONSIVO ===== */

/* Desktop médio e notebooks largos (~1400px) */
@media (max-width: 1400px) {
  .hero-text {
    left: 0;
  }

  .hero-image {
    min-width: 480px;
    height: 500px;
  }

  .mulher-sorrindo {
    height: clamp(520px, 75vh, 780px);
    transform: translateY(90px);
  }

  .hero-decorative {
    width: 600%;
    bottom: 0;
  }
}

/* Notebooks menores (~1200px) */
@media (max-width: 1200px) {
  .hero-content {
    gap: 30px;
  }

  .hero-text {
    left: 0;
  }

  .hero-image {
    min-width: 440px;
    height: 480px;
  }

  .mulher-sorrindo {
    height: clamp(500px, 75vh, 780px);
    transform: translateY(100px);
  }

  .hero-decorative {
    width: 500%;
    bottom: 0;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 20px 24px 0;
  }

  .hero-text {
    order: 2;
    left: 0;
    flex: 1;
    min-width: 0;
    padding: 0;
  }

  .hero-text p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .text-tecnologia {
    width: auto;
  }

  .hero-image {
    order: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    height: 420px;
    overflow: visible;
  }

  .mulher-sorrindo {
    position: relative;
    z-index: 2;
    height: 700px;
    width: auto;
    transform: translateY(114px);
    transition: transform .1s ease-out;
  }



  .hero-decorative {
    width: 300%;
    bottom: -10px;
  }
}

/* ====== ANIMAÇÃO DE GRADIENTE (Usada em várias seções) ====== */
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ====== SOBRE ====== */
.sobre {
  background: linear-gradient(270deg, #0099ff, #00c6ff, #0099ff, #00c6ff);
  background-size: 400% 400%;
  animation: gradient-animation 15s ease infinite;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sobre-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-img {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.sobre-img:not(.animate-in) {
  opacity: 0;
  transform: translateX(-30px);
}

.sobre-img.animate-in {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.sobre-img:hover {
  transform: scale(1.02);
}

.sobre-text {
  flex: 1;
  max-width: 600px;
}

.sobre-text:not(.animate-in) {
  opacity: 0;
  transform: translateX(30px);
}

.sobre-text.animate-in {
  animation: fadeInRight 0.8s ease-out forwards;
}

.sobre-subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 8px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
}

.sobre-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #fff;
  padding: 8px 0;
}

.sobre-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  padding: 8px 0;
}

.sobre-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.sobre-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease;
  padding: 8px 0;
}

.sobre-list li:hover {
  transform: translateX(10px);
}

.sobre-list li i {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.btn-secondary-sobre {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  margin-top: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  color: #0099ff;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-secondary-sobre:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
  .sobre-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .sobre-image-wrapper {
    order: 1;
    width: 100%;
  }

  .sobre-img {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  
  .sobre-text {
    order: 2;
  }
  
  .sobre-list {
    text-align: left;
    display: inline-block;
  }
  
  .sobre-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .sobre {
    padding: 60px 0;
  }
  
  .sobre-title {
    font-size: 1.8rem;
  }
  
  .sobre-description {
    font-size: 1rem;
  }
  
  .sobre-img {
    max-width: 100%;
    width: 100%;
  }
}

/* ====== BENEFÍCIOS ====== */
.beneficios {
  background: #f9fcff;
  padding-top: 180px;
  position: relative;
}

.beneficios-icon {
  padding: 0;
  position: absolute;
  top: 0;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  z-index: 1;
  object-fit: cover;
  opacity: 0.9;
  height: 136px;
}

.beneficios-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px; z-index:2; margin-top:16px; }

.beneficio-card {
  background: #fff;
  bottom:auto;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.beneficio-card:not(.animate-in) {
  opacity: 0;
  transform: scale(0.9);
}

.beneficio-card.animate-in {
  animation: scaleIn 0.5s ease-out forwards, subtleGlow 2s ease-in-out 0.5s;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

.beneficio-card:not(:hover)::before {
  animation-play-state: paused;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes subtleGlow {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
  }
}

.beneficio-card-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

.beneficio-card-header img {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  transition: transform 0.3s ease;
}

.beneficio-card:hover .beneficio-card-header img {
  transform: scale(1.1) rotate(5deg);
}

.beneficio-card-header h4 {
  margin: 0;
  font-size: 16px;
  padding: 0;
}

.beneficio-card p {
  text-align: left;
  font-size: 18px;
  padding: 8px 0;
}

/* Delay progressivo para cards */
.beneficios-grid .beneficio-card:nth-child(1).animate-in {
  animation-delay: 0s;
}

.beneficios-grid .beneficio-card:nth-child(2).animate-in {
  animation-delay: 0.1s;
}

.beneficios-grid .beneficio-card:nth-child(3).animate-in {
  animation-delay: 0.2s;
}

/* ====== DENTISTAS ====== */
.dentistas {
  padding: 80px 0;
}

.dentistas-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.dentistas-text {
  flex: 1;
  max-width: 500px;
}

.section-title {
  color: #0099ff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 0;
}

.section-title:not(.animate-in),
.section-subtitle:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.section-title.animate-in,
.section-subtitle.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #4a5568;
  padding: 0;
}

.dentistas-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.dentistas-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding: 0;
}

.dentistas-list li:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.dentistas-list li.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.dentistas-list li:nth-child(1).animate-in {
  animation-delay: 0s;
}

.dentistas-list li:nth-child(2).animate-in {
  animation-delay: 0.15s;
}

.dentistas-list li:nth-child(3).animate-in {
  animation-delay: 0.3s;
}

.dentistas-list li > img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dentistas-list li:hover > img {
  transform: scale(1.1);
}

.dentistas-list div {
  padding: 0;
}

.dentistas-list h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 6px 0;
  padding: 0;
}

.dentistas-list p {
  color: #718096;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.btn-azul {
  display: inline-block;
  background: #0099ff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 153, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-azul:hover {
  background: #0088ee;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.4);
}

/* ===== Imagem ===== */
.dentistas-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 760px;
  height: auto;
}

.dentistas-image:not(.animate-in) {
  opacity: 0;
  transform: translateX(30px);
}

.dentistas-image.animate-in {
  animation: fadeInRight 0.8s ease-out forwards;
}

.dentistas-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* ====== EMPRESAS ====== */
.empresas {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  position: relative;
  overflow: hidden;
}

.empresas-card {
  flex: 1;
  width: 100%;
  max-width: 760px;
  margin-right: 60px;
}

.empresas-card-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.empresas-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 60px;
}

.empresas-text {
  flex: 1;
  max-width: 600px;
}

.empresas-text:not(.animate-in) {
  opacity: 0;
  transform: translateX(-30px);
}

.empresas-text.animate-in {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.empresas-text h3 {
  font-size: 2rem;
  color: #0099ff;
  margin-bottom: 24px;
  font-weight: 700;
  padding: 0;
}

.empresas-text > p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.2;
  margin-bottom: 40px;
  padding: 8px 0;
}

.btn-empresa {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #007bff 0%, #00b2ff 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 9999;
}

.btn-empresa:hover {
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
  filter: brightness(1.1);
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  display: block;
  width: 100%;
  height: 100px;
}

.empresas-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.empresas-lista li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 0;
}

.empresas-lista li:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.empresas-lista li.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.empresas-lista li:nth-child(1).animate-in {
  animation-delay: 0s;
}

.empresas-lista li:nth-child(2).animate-in {
  animation-delay: 0.15s;
}

.empresas-lista li:nth-child(3).animate-in {
  animation-delay: 0.3s;
}

.icon-box {
  background: #a5c2f17a;
  border-radius: 12px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  padding: 0;
  transition: transform 0.3s ease;
}

.empresas-lista li:hover .icon-box {
  transform: scale(1.1);
}

.icon-box img {
  width: 30px;
  height: 30px;
  padding: 0;
}

.icon-box2 {
  transition: transform 0.3s ease;
}

.icon-box2 img {
  width: 60px;
  height: 60px;
  padding: 0;
}

.empresas-icon {
  padding: 0;
  position: absolute;
  bottom: 0;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  z-index: 1;
  object-fit: cover;
  opacity: 0.9;
  pointer-events: none;
}

.texto-box {
  padding: 0;
}

.texto-box strong {
  display: block;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 6px;
  padding: 0;
  font-size: 16px;
}

.texto-box p {
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

@media (max-width: 992px) {
  .empresas-content {
    flex-direction: column;
    text-align: center;
  }

  .empresas-card {
    width: 100%;
  }

  .empresas-text {
    margin-top: 40px;
  }

  .empresas-lista li {
    justify-content: center;
    text-align: left;
  }
  
  .btn-empresa {
    margin-top: 20px;
  }
}

/* ===== SEÇÃO NOSSOS SERVIÇOS ===== */
.nossos-servicos-section {
  background: linear-gradient(180deg, #efefef 0%, #F9FAFB 100%);
  color: #333;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

.servicos-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.servicos-left-content {
  flex: 1;
  max-width: 600px; 
}

.servicos-right-content.image-column {
  flex: 1;
  width: 100%;
  max-width: 760px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-image-placeholder {
  width: 100%;
  margin-top: 0; 
  text-align: right;
  padding: 8px 0;
}

.main-image-placeholder img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.servicos-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-item {
  display: flex; 
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 8px 0;
  gap: 15px;
}

.servico-item:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.servico-item.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.servico-item:nth-child(1).animate-in {
  animation-delay: 0s;
}

.servico-item:nth-child(2).animate-in {
  animation-delay: 0.1s;
}

.servico-item:nth-child(3).animate-in {
  animation-delay: 0.2s;
}

.servico-item:nth-child(4).animate-in {
  animation-delay: 0.3s;
}

.servico-item:hover .icon-box2 {
  transform: scale(1.1) rotate(5deg);
}

.btn-servicos-cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #007bff 0%, #00b2ff 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-servicos-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

@media (max-width: 992px) {
  .servicos-wrapper {
    flex-direction: column; 
    align-items: center; 
    gap: 40px;
  }

  .servicos-left-content,
  .servicos-right-content.image-column {
    width: 100%; 
    text-align: center;
    padding-right: 0; 
    order: 2;
  }
  
  .servicos-left-content {
    order: 2;
  }

  .servicos-right-content.image-column {
    order: 1;
  }

  .main-image-placeholder {
    text-align: center;
  }
  
  .servico-item {
    flex-direction: row; 
    text-align: left;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 450px;
  }

  .btn-servicos-cta {
    width: 100%; 
    box-sizing: border-box; 
  }
}

/* ====== DEPOIMENTOS ====== */
.depoimentos {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  padding-bottom: 100px;
}

.depoimentos-wrapper {
  overflow: hidden;
  margin-top: 30px;
  width: 100%; 
}

.depoimentos-grid {
  display: flex;
  flex-wrap: nowrap; 
  width: 200%;
  gap: 25px;
  transform: translateX(0);
}

.depoimento {
  flex: 0 0 calc((100% / 6) - 25px);
  max-width: calc((100% / 6) - 25px);
  min-width: 250px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.depoimento:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.depoimento.animate-in {
  animation: scaleIn 0.5s ease-out forwards, subtleGlow 2s ease-in-out 0.5s;
}

.depoimento::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

.depoimento:not(:hover)::before {
  animation-play-state: paused;
}

@keyframes scrollDepoimentos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.depoimentos h3 {
  font-family: Segoe UI;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: rgba(8, 152, 231, 1);
  padding: 8px 0;
}

.depoimento span {
  color: rgba(21, 93, 252, 1);
}

.depoimento-profissao {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: rgba(106, 114, 130, 1);
  padding: 8px 0;
}

.depoimentos-aurea {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0;
}

/* ====== CTA FINAL ====== */

.cta-negocio-section {
  background: linear-gradient(270deg, #007bff, #00c6ff, #007bff, #00c6ff);
  background-size: 400% 400%;
  animation: gradient-animation 15s ease infinite;
  color: #fff;
  padding: 100px 0; 
  text-align: center; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden; 
  position: relative;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2; 
}

.cta-negocio-section h1 {
  font-size: 3.0em;
  font-weight: 700;
  width: 100%;
  padding: 8px 0;
}

.cta-negocio-section h1:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.cta-negocio-section h1.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.cta-description {
  font-size: 18px;
  line-height: 1.0;
  margin-bottom: 16px;
  opacity: 1;
  font-weight: 400;
  padding: 8px 0;
}

.cta-description:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.cta-description.animate-in {
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.features-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px; 
  flex-wrap: wrap;
}

.features-list:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.features-list.animate-in {
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.feature-item {
  font-size: 1em;
  font-weight: 500;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.feature-item i {
  color: #fff; 
  font-size: 1.2em;
}

.feature-item img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.cta-buttons:not(.animate-in) {
  opacity: 0;
  transform: translateY(30px);
}

.cta-buttons.animate-in {
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.cta-buttons a {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
  font-size: 1em;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary {
  background-color: #fff;
  color: #007bff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

body.loaded .btn-cta-primary {
  animation: pulse 2s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 123, 255, 0.5);
  }
}

.btn-cta-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

.btn-cta-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.cta-small-text {
  font-size: 18px;
  opacity: 0.8;
  width: 100%;
  padding: 8px 0;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .cta-negocio-section h1 {
    font-size: 2em;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons a {
    width: 80%;
    max-width: 300px;
  }
  
  .features-list {
    flex-direction: column; 
    align-items: center;
    gap: 10px;
  }
}

/* ====== FOOTER ====== */
.footer {
  background-color: #1a2332;
  color: #fff;
  padding: 60px 0 30px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer * {
  padding: 0;
  margin: 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  padding-bottom: 30px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}

.footer-col:not(.animate-in) {
  opacity: 0;
  transform: translateY(20px);
}

.footer-col.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.col-info {
  flex: 1.8;
  max-width: 380px;
}

.footer-logo-block {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  margin-right: 12px;
  background-color: #0099ff;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  padding: 0;
  margin: 0;
}

.logo-description {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a, .footer-links .contact-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.2s;
  display: flex;
  align-items: flex-start;
}

.footer-links a:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  margin-right: 10px;
  margin-top: 3px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.5);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  padding: 0;
}

.social-link:hover {
  background-color: #0099ff;
  border-color: #0099ff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
}

.social-link i {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link img {
  width: 33px;
  height: 33px;
  padding: 0;
  margin: 0;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px auto 25px auto;
  max-width: calc(100% - 40px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 45%;
    min-width: 200px;
  }
  
  .col-info {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 35px;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  .col-info {
    max-width: 100%;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .copyright {
    margin-bottom: 0;
  }

  .legal-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ========================
   AJUSTES: Header fixo e responsivo
   ======================== */

:root {
  --header-height: 80px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: auto;
}

.hero {
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
}

.hero-content {
  gap: 80px;
}

.mulher-sorrindo{
  position:relative;
  z-index:2;
  height:clamp(700px, 94vh, 1050px);
  width:auto;
  transform: translateY(148px);
  transition:transform .1s ease-out;
}



@media (max-width: 1024px) {
  .nav { 
    gap: 6px;
    flex-wrap: wrap;
  }
  
  .nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .logo {
    width: 130px;
  }
  
  .header.scrolled .logo {
    width: 115px;
  }
  
  .hero-content { 
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 20px 24px 0;
  }

  .hero-text {
    order: 2;
    left: 0;
    flex: 1;
    min-width: 0;
    padding: 0;
  }

  .hero-image {
    order: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    height: 420px;
    overflow: visible;
  }

  .mulher-sorrindo{
  position:relative;
  z-index:2;
  height: 700px;
  width:auto;
  transform: translateY(114px);
  transition:transform .1s ease-out;
}

  .hero-decorative {
    width: 300%;
    bottom: -10px;
  }
}

/* ========================
   ULTRAWIDE (2560px+)
   ======================== */
@media (min-width: 2560px) {
  .mulher-sorrindo {
    height: 892px;
  }
}

/* ========================
   ANIMAÇÕES DE ENTRADA
   ======================== */

/* Keyframes principais */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animação especial para botões */
@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Efeito ripple ao clicar nos botões */
.btn-primary::before,
.btn-secondary::before,
.btn-azul::before,
.btn-empresa::before,
.btn-servicos-cta::before,
.btn-cta-primary::before,
.btn-cta-secondary::before,
.btn-secondary-sobre::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before,
.btn-secondary:active::before,
.btn-azul:active::before,
.btn-empresa:active::before,
.btn-servicos-cta:active::before,
.btn-cta-primary:active::before,
.btn-cta-secondary:active::before,
.btn-secondary-sobre:active::before {
  width: 300px;
  height: 300px;
}

/* Otimização de performance */
.animate-in {
  will-change: transform, opacity;
}

.animate-in.animated {
  will-change: auto;
}

/* Smooth scroll para toda a página */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Adiciona um fade suave ao mudar de seção */
section {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Suaviza todas as transições */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Desabilita animações em dispositivos com preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Telas ultrawide (34" e acima, a partir de 2560px) */
@media (min-width: 2560px) {
  .hero-content {
    gap: 210px;
  }
}


/* === NAV HOVER "STUCK" SAFEGUARDS === */
.nav a.active::before { 
  /* Don't run shimmer on the active (pill) item */
  display: none;
}

.nav a:not(:hover)::before {
  /* Force the shimmer band to stay off when mouse isn't over */
  left: -100% !important;
}

.nav a:focus {
  /* Avoid focus styles looking like hover; keep accessibility via outline only when keyboard focusing */
  outline: none;
}

.nav a:focus-visible {
  outline: 2px solid rgba(0,123,255,0.4);
  outline-offset: 2px;
  background: transparent;
}

/* Extra guard: if any link keeps background accidentally, clear when not hovered and not active */
.nav a:not(:hover):not(.active) {
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* === Nav hover safety (do not intercept click) === */
.nav a { position: relative; z-index: 0; }
.nav a::before { pointer-events: none; z-index: -1; }

/* ================================================
  EFEITO RASTRO "GOOEY" (MOUSE/TOUCH)
================================================
*/

/* O contêiner que "borra" os pontos */
#trail-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998; /* Fica atrás dos pontos, mas acima de tudo */
  pointer-events: none;
  
  /* A MÁGICA: Aplica o filtro SVG */
  filter: url(#gooey);
}

/* Os pontos (agora são brancos, mas ficarão azuis pelo filtro) */
.trail-dot {
  position: fixed; 
  top: 0;
  left: 0;
  width: 40px; /* Tamanho maior para borrar */
  height: 40px;
  background-color: #0099ff; /* Cor azul do site */
  border-radius: 50%;
  z-index: 9999; 
  pointer-events: none; 
  
  /* Animação para desaparecer */
  animation: fadeAndShrink 1s linear forwards;
  
  padding: 0 !important; 
  margin: 0 !important;
}

/* O 'transform: scale(0)' é o que faz o rastro encolher */
@keyframes fadeAndShrink {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

/* ================================================
  CORREÇÃO DE ESPAÇAMENTO (SEÇÃO SOBRE)
================================================ */

/* Adiciona espaço abaixo do "SOBRE O" (o h3) */
.sobre-text h3 {
  margin-bottom: 8px; 
}

/* Adiciona espaço abaixo do Título (o .textoghia) */
.textoghia { 
  margin-bottom: 24px;
}

/* Adiciona espaço abaixo do parágrafo (o .paragrafoghia) */
.paragrafoghia {
  margin-bottom: 32px;
}

/* Adiciona espaço entre os itens da lista (os <li>) */
.sobre-text ul li {
  margin-bottom: 16px;
}