/* Importação da fonte Sansation */
@font-face {
  font-family: "Sansation";
  src: url("sansation/Sansation_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden; /* Previne scroll horizontal */
}

/* Melhorias de tipografia responsiva */
html {
  font-size: 16px; /* Base font size */
  scroll-behavior: smooth;
  overflow-x: hidden;
}

#solutions {
  scroll-margin-top: 80px; 
}

@media (max-width: 768px) {
  html {
    font-size: 14px; /* Menor em mobile */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px; /* Ainda menor em telas muito pequenas */
  }
}

/* Títulos responsivos globais */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 0.5em;
}

/* Parágrafos responsivos */
p {
  line-height: 1.6;
  margin-bottom: 1em;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-semibold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Botões responsivos */
.btn-primary, .btn-outline {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 768px) {
  .btn-primary, .btn-outline {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Melhorar espaçamentos em seções */
section {
  padding: 80px 24px;
}

.paggmidia-section h2 {
  font-size: 40px;
  color: #fff;
  line-height: 100%;
}

section h2 {
  font-size: 40px;
  color: #000;
  line-height: 100%;
}

.feature-text p,
.paggmidia-section p,
.testimonials-section p,
.faq-section p,
.contact-section p,
.solutions-section p {
  font-size: 18px;
  color: #4F4F4F;
  line-height: 150%;
}

@media (max-width: 1024px) and (min-width: 769px) {
  section {
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 50px 16px;
  }
  
  /* Ajustes específicos para telas muito pequenas */
  .hero-content h1 {
    font-size: 28px !important;
  }
  
  .hero-content p {
    font-size: 16px !important;
  }
  
  .feature-text h2,
  .paggmidia-section h2,
  .testimonials-section h2,
  .faq-section h2,
  .contact-section h2,
  .solutions-section h2 {
    font-size: 24px !important;
  }
  
  .mobile-nav-links li {
    font-size: 16px;
  }
  
  .mobile-actions .btn-primary,
  .mobile-actions .btn-outline {
    font-size: 15px;
    padding: 10px 16px;
  }
}

.benefits-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 0;
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.benefit-item h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.benefit-item p {
  font-size: 15px !important;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 400;
}

/* Mobile and tablet - stacked layout */
@media (max-width: 1024px) {
  .benefits-section {
    padding: 60px 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 10 20px;
    text-align: left;
  }
  
  .benefit-item h3 {
    font-size: 20px;
  }
  
  .benefit-item p {
    font-size: 16px !important;
  }
}

/* For larger screens */
@media (min-width: 1200px) {
  .benefits-grid {
    gap: 80px;
  }
  
  .benefit-item h3 {
    font-size: 2rem;
  }
  
  .benefit-item p {
    font-size: 1.2rem;
  }
}

/* Variáveis CSS para cores do slider */
:root {
  --slider-blue: #1d49a7;
  --slider-blue-light: #cfdff0;
  --slider-white: transparent;
}

/* Partners Section */
.partners-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.partners-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.partners-section h2 {
  font-size: 40px;
  color: #000000;
  margin-bottom: 16px;
}

.partners-section p {
  font-size: 18px;
  color: #4F4F4F;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partner-item {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-item img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.solutions-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.solutions-section h2 {
  font-size: 40px;
  color: #000000;
  margin-bottom: 16px;
}

.solutions-section > .container > p {
  font-size: 18px;
  color: #4F4F4F;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.embla {
  --slide-height: 307px;
  --slide-spacing: 1rem;
  --slide-size: 65%;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  height: 470px;
  padding-left: var(--slide-spacing);
}
.embla__slide__img {
  width: 460px;
  border-radius: 16px;
  display: block;
  height: var(--slide-height);
  object-fit: cover;
  user-select: none;
}
.embla__controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.embla__buttons {
  display: flex;
  pointer-events: none;
}

/* Containers dos botões */
.prev-button-container {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  pointer-events: auto;
  margin-right: auto;
}

.next-button-container {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  pointer-events: auto;
  margin-left: auto;
}

/* Posicionar todos os botões no mesmo lugar dentro do container */
.prev-button-container .embla__button,
.next-button-container .embla__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embla__button {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--slider-white);
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 3.6rem;
  height: 3.6rem;
  z-index: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.embla__button:hover {
  background-color: #f1f5f9;
}

.embla__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.embla__button__svg {
  width: 22px;
  height: 19px;
  object-fit: contain;
}
.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}
.embla__dot {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.embla__dot:after {
  background-color: var(--slider-blue-light);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
  transition: all 0.3s ease;
}

.embla__dot:hover:after {
  background-color: var(--slider-blue);
  transform: scale(1.1);
}
/* Esconder os controles de radio */
.carousel-control {
  display: none;
}

/* Estilo base dos slides */
.embla__slide {
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}

/* Slides inativos ficam menores */
.embla__slide .embla__slide__img {
  width: 165px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

/* Slide ativo fica maior e com opacidade total */
#slide1:checked ~ .embla .slide-1 .embla__slide__img,
#slide2:checked ~ .embla .slide-2 .embla__slide__img,
#slide3:checked ~ .embla .slide-3 .embla__slide__img,
#slide4:checked ~ .embla .slide-4 .embla__slide__img,
#slide5:checked ~ .embla .slide-5 .embla__slide__img {
  width: 460px;
  opacity: 1;
}

/* Controle de visibilidade dos botões prev */
.prev-button-container .embla__button--prev {
  display: none;
}

#slide1:checked ~ .embla .prev-1,
#slide2:checked ~ .embla .prev-2,
#slide3:checked ~ .embla .prev-3,
#slide4:checked ~ .embla .prev-4,
#slide5:checked ~ .embla .prev-5 {
  display: flex;
}

/* Controle de visibilidade dos botões next */
.next-button-container .embla__button--next {
  display: none;
}

#slide1:checked ~ .embla .next-1,
#slide2:checked ~ .embla .next-2,
#slide3:checked ~ .embla .next-3,
#slide4:checked ~ .embla .next-4,
#slide5:checked ~ .embla .next-5 {
  display: flex;
}

/* Estilo dos dots */
.embla__dot {
  cursor: pointer;
}

/* Dot ativo */
#slide1:checked ~ .embla .dot-1:after,
#slide2:checked ~ .embla .dot-2:after,
#slide3:checked ~ .embla .dot-3:after,
#slide4:checked ~ .embla .dot-4:after,
#slide5:checked ~ .embla .dot-5:after {
  background-color: var(--slider-blue);
}

/* Garantir que os labels funcionem como botões */
.embla__button {
  cursor: pointer;
  user-select: none;
}

/* Tornar as imagens clicáveis */
.slide-clickable {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Estilo do conteúdo dos slides */
.slide-content {
  margin-top: 20px;
  text-align: left;
  max-width: 460px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide-content h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.slide-content p {
  font-size: 16px;
  color: #4F4F4F;
  line-height: 150%;
}

/* Mostrar conteúdo apenas no slide ativo */
#slide1:checked ~ .embla .slide-1 .slide-content,
#slide2:checked ~ .embla .slide-2 .slide-content,
#slide3:checked ~ .embla .slide-3 .slide-content,
#slide4:checked ~ .embla .slide-4 .slide-content,
#slide5:checked ~ .embla .slide-5 .slide-content {
  opacity: 1;
}

.slide-clickable img {
  cursor: pointer;
  pointer-events: auto;
}

.navbar {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo img {
  height: 32px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 80px;
  padding-left: 80px;
}

.nav-links li {
  font-size: 16px;
  color: #222;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-links li:hover {
  color: #0056d2;
}

.nav-links .active {
  font-weight: 600;
  color: #000;
}

.actions {
  display: flex;
  gap: 16px;
}

.btn-outline {
  padding: 8px 20px;
  background-color: #ffffff;
  color: #0056d2;
  border: 2px solid #0056d2;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-outline:hover {
  background-color: #f2f6ff;
}

.btn-primary {
  background-color: #1551c6;
  color: #ffffff;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  padding-top: 13px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #0043aa;
}

/* Menu mobile hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1551c6;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 99;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.mobile-nav-links li {
  font-size: 18px;
  color: #222;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s;
}

.mobile-nav-links li:hover {
  color: #0056d2;
}

.mobile-nav-links .active {
  font-weight: 600;
  color: #1551c6;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

.mobile-actions .btn-outline,
.mobile-actions .btn-primary {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
}

.mobile-actions .btn-outline {
  background-color: #ffffff;
  color: #0056d2;
  border: 2px solid #0056d2;
}

.mobile-actions .btn-outline:hover {
  background-color: #f2f6ff;
}

/* Responsivo para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .navbar {
    padding: 0 24px;
  }
  
  .nav-links {
    gap: 24px;
  }
  
  .nav-links li {
    font-size: 15px;
  }
  
  .actions .btn-outline,
  .actions .btn-primary {
    padding: 10px 18px;
    font-size: 15px;
  }
}

.hero {
  width: 100%;
  padding: 100px 20px 60px;
  background: radial-gradient(circle at top, #1952cd, #002980);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  color: #e4e4e4;
  margin-bottom: 38px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons button {
  font-family: "Roboto Bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.hero-buttons .btn-primary {
  background-color: #ffffff;
  color: #000;
  font-weight: 700;
  font-size: 16px;
}

/* Botões */
.btn-outline {
  background-color: transparent;
  color: #ffffff;
  padding: 12px 20px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-login {
  background-color: #ffffff;
  color: #1D49A7;
  border: 2px solid #1D49A7;
}

.actions a .btn-login, .actions a .btn-partner {
  font-family: "Roboto Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  height: 40px;
  padding: 0 16px;
}

/* Mockup */
.product-mockup {
  margin-top: 30px;
  width: 100%;
  max-width: 1200px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  margin-bottom: 45px;
}

.mockup-image {
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  display: block;
  padding: 20px;
  border-radius: 25px;
}

.mockup-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    #2b61d1 0%,
    #1551c6 25%,
    #0d3ea3 75%,
    #2b61d1 100%
  );
  background-size: 400% 400%;
  border-radius: 25px;
  z-index: -1;
  animation: gradientShift 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(45, 97, 209, 0.3);
}

.mockup-image img {
  width: 886px;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.hero-svg {
  width: auto;
  opacity: 0.95;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.hero-svg:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.hero-svg-left {
  animation: floatLeft 2s ease-in-out infinite,
    slideInFromLeft 2s ease-out forwards;
  transform-origin: center right;
  position: relative;
  z-index: 3;
  transform: translateX(-100px);
  top: -130px;
}

.hero-svg-right {
  animation: floatRight 2s ease-in-out infinite 2s,
slideInFromRight 2s ease-out forwards;
  transform-origin: center left;
  position: relative;
  z-index: 3;
  transform: translateX(-300px);
}

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

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

@keyframes slideInFromRight {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-130px);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    transform: translateX(130px);
    opacity: 1;
  }
}

/* Estrutura principal */
.feature-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 80px 24px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

/* Coluna de texto */
.feature-text {
  max-width: 500px;
  flex: 1;
}

.hero-content h1 {
  font-family: "Sansation", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  padding-top: 50px;
}

.hero-content p {
  font-size: 18px;
  color: #e4e4e4;
}

/* Responsivo para tablets - Hero */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    padding: 90px 24px 50px;
  }
  
  .hero-content h1 {
    font-size: 48px;
  }
  
  .hero-content p {
    font-size: 20px;
  }
  
  .hero-buttons button {
    font-size: 15px;
    padding: 10px 18px;
  }
  
  .product-mockup {
    margin-top: 50px;
    gap: 15px;
  }
  
  .hero-svg {
    height: 45px;
  }
  
  .hero-svg-left {
    transform: translateX(-80px);
    top: -110px;
  }
  
  .hero-svg-right {
    transform: translateX(-250px);
  }
}

.feature-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Coluna da imagem */
.feature-image-wrapper {
  position: relative;
  max-width: 400px;
  flex: 1;
}

.feature-image {
  width: 476px;
  border-radius: 16px;
  display: block;
}

/* QR Code flutuante */
.qr-code-box {
  position: absolute;
  top: 16px;
  width: 163px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: qrSlideIn 1s ease-in-out forwards;
}

@keyframes qrSlideIn {
  0% {
    transform: translateX(0);
    right: -150px;
  }
  100% {
    transform: translateX(-70px);
    right: -100px;
  }
}

.qr-code-box img {
  width: 100%;
  height: auto;
}

.qr-code-box .qr-logo {
  width: auto;
  height: 16px;
}

/* Responsivo Mobile - Feature Section */
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 16px;
    gap: 32px;
  }

  .feature-text {
    max-width: 100%;
  }

  .feature-text h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .feature-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .feature-text .btn-primary {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .feature-image-wrapper {
    max-width: 100%;
    margin-top: 0;
  }

  .feature-image {
    width: 100%;
  }

  .hero-svg {
    display: none;
  }

  .qr-code-box {
    width: 100px;
    top: 12px;
    right: 12px;
    padding: 10px;
    animation: qrSlideInMobile 3s ease-in-out forwards;
  }

  @keyframes qrSlideInMobile {
    0% {
      transform: translateX(0);
      right: 12px;
    }
    100% {
      transform: translateX(0px);
      right: 52px;
    }
  }

  .qr-code-box img {
    width: 80px;
  }

  .qr-code-box .qr-logo {
    height: 14px;
  }
}

/* Responsivo para tablets - Feature Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .feature-section {
    padding: 60px 24px;
    gap: 36px;
  }
  
  .feature-text {
    max-width: 450px;
  }
  
  .feature-text h2 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .feature-text p {
    font-size: 0.95rem;
  }
  
  .feature-image-wrapper {
    max-width: 350px;
  }
  
  .qr-code-box {
    right: -50px;
    padding: 10px;
  }
  
  .qr-code-box img {
    width: 90px;
  }
}

/* Responsivo Mobile - Hero Section */
@media (max-width: 768px) {
  .hero {
    padding: 80px 16px 40px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .product-mockup {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
    max-width: 95%;
    padding: 20px;
  }

  .mockup-image {
    order: 0;
    border-radius: 20px;
    padding: 15px;
  }

  .mockup-image::before {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .product-mockup {
    padding: 0;
  }

  .mockup-image img {
    border-radius: 8px;
    width: 100%;
  }

  .hero-svg {
    height: 35px;
    position: static;
    transform: none !important;
    animation: none;
  }

  .hero-svg-left,
  .hero-svg-right {
    order: -1;
    margin: 0 10px;
    top: 0;
    position: relative;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 70px;
  }

  .nav-links,
  .actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo img {
    height: 28px;
  }
}

/* Seção principal */
.paggmidia-section {
  position: relative;
  background-color: #0a0d2c;
  padding: 80px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paggmidia-section .content {
  max-width: 1200px;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Coluna de texto */
.text-column {
  flex: 1;
  min-width: 300px;
}

.text-column h2 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.text-column p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 32px;
}

/* Accordion estilizado com <details> */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  position: relative;
}

.accordion details {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.accordion summary {
  font-size: 18px;
  line-height: 150%;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  color: #ffffff;
  position: relative;
}

/* Remove setinha padrão */
.accordion summary::-webkit-details-marker {
  display: none;
}

/* Ícone à esquerda */
.accordion .icon {
  width: 20px;
  height: 20px;
}

/* Seta à direita */
.accordion .arrow {
  margin-left: auto;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #ccc;
}

/* Rotação da seta ao abrir */
.accordion details[open] .arrow {
  transform: rotate(180deg);
}

/* Conteúdo do body */
.accordion .content-body {
  padding: 0 16px 16px;
  color: #cfdff0;
  font-size: 18px;
  line-height: 120%;
}

/* Coluna da imagem */
.image-column {
  flex: 1;
  min-width: 300px;
  position: relative;
  height: 200px;
}

.tablet-img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
  transition: opacity 0.3s ease;
}

/* Controle de exibição das imagens do paggmidia */
.paggmidia-img-1,
.paggmidia-img-2,
.paggmidia-img-3 {
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateX(50px) scale(1.2);
  transition: all 0.4s ease-out;
  filter: blur(0.5px);
  pointer-events: none;
}

.paggmidia-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}


/* Classe para animação de entrada */
.paggmidia-img-enter {
  opacity: 1;
  /* transform: translateX(0) scale(1); */
  filter: blur(0);
  pointer-events: auto;
}

/* Classe para animação de saída */
.paggmidia-img-exit {
  opacity: 0;
  transform: translateX(-20px) scale(0.98);
  filter: blur(0.5px);
  pointer-events: none;
}

/* Efeito hover sutil nas imagens */
.paggmidia-img-enter:hover {
  transform: translateX(0) scale(1.01);
  transition: transform 0.2s ease;
}

/* Responsivo para tablets - Paggmidia Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .paggmidia-section {
    padding: 60px 24px;
  }
  
  .paggmidia-section .content {
    gap: 36px;
  }
  
  .text-column h2 {
    font-size: 2.5rem;
  }
  
  .text-column p {
    font-size: 0.95rem;
  }
  
  .accordion summary {
    font-size: 1rem;
    padding: 14px;
  }
  
  .accordion .content-body {
    font-size: 0.95rem;
  }
  
  .image-column {
    height: 350px;
  }
  
  .tablet-img {
    max-width: 450px;
  }
}

/* Responsivo para tablets - Testimonials Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonials-section {
    padding: 60px 24px;
  }
  
  .testimonials-section h2 {
    font-size: 1.8rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .quote-text {
    font-size: 0.95rem;
  }
}

/* Responsivo para tablets - FAQ Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .faq-section {
    padding: 60px 24px;
  }
  
  .faq-section h2 {
    font-size: 1.8rem;
  }
  
  .faq-container {
    max-width: 700px;
  }
  
  .faq-container summary {
    font-size: 20px;
    padding: 18px 20px;
  }
  
  .faq-container details p {
    font-size: 18px;
    padding: 0 20px 18px;
  }
}

/* Responsivo para tablets - Solutions Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .solutions-section {
    padding: 60px 24px;
  }
  
  .solutions-section h2 {
    font-size: 2rem;
  }
  
  .solutions-section > .container > p {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  
  .embla__slide__img {
    width: 400px;
  }
  
  .slide-content h3 {
    font-size: 22px;
  }
  
  .slide-content p {
    font-size: 15px;
  }
  
  .embla__button {
    width: 3.2rem;
    height: 3.2rem;
  }
}

/* Responsivo Mobile - Partners Section */
@media (max-width: 768px) {
  .partners-section {
    padding: 40px 16px;
    padding-top: 0px;
  }
  
  .partners-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .partners-section p {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 8px;
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .partner-item img {
    max-width: 120px;
    width: 100%;
    height: auto;
  }
  
  .partner-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Responsivo Mobile - Solutions Section (Carousel) */
@media (max-width: 768px) {
  .solutions-section {
    padding: 60px 16px;
  }
  
  .solutions-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .solutions-section > .container > p {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 8px;
  }
  
  .embla {
    --slide-spacing: 0rem;
    --slide-size: 100%;
    overflow: hidden;
  }
  
  .embla__container {
    display: flex;
    transition: transform 0.3s ease;
    touch-action: pan-y pinch-zoom;
  }
  
  .embla__slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 450px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  /* Ocultar todos os slides por padrão */
  .embla__slide {
    display: none;
  }
  
  /* Mostrar apenas o slide ativo */
  #slide1:checked ~ .embla .slide-1,
  #slide2:checked ~ .embla .slide-2,
  #slide3:checked ~ .embla .slide-3,
  #slide4:checked ~ .embla .slide-4,
  #slide5:checked ~ .embla .slide-5 {
    display: flex;
  }
  
  /* Reset das larguras para mobile - todos os slides têm o mesmo tamanho */
  .embla__slide .embla__slide__img {
    width: 100% !important;
    max-width: 320px !important;
    height: 280px !important;
    object-fit: cover;
    opacity: 1 !important;
    border-radius: 16px;
    margin: 0 auto;
  }
  
  /* Garantir que as regras de slides ativos não sobrescrevam em mobile */
  #slide1:checked ~ .embla .slide-1 .embla__slide__img,
  #slide2:checked ~ .embla .slide-2 .embla__slide__img,
  #slide3:checked ~ .embla .slide-3 .embla__slide__img,
  #slide4:checked ~ .embla .slide-4 .embla__slide__img,
  #slide5:checked ~ .embla .slide-5 .embla__slide__img {
    width: 100% !important;
    max-width: 320px !important;
    height: 280px !important;
    opacity: 1 !important;
  }
  
  /* Conteúdo do slide sempre visível em mobile */
  .slide-content {
    max-width: 320px;
    margin-top: 20px;
    text-align: center;
    opacity: 1;
  }
  
  .slide-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .slide-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
  }
  
  .embla__controls {
    gap: 1rem;
    margin-bottom: 10px;
  }
  
  .embla__button {
    width: 3.6rem;
    height: 3.6rem;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .embla__button:hover {
    background-color: #f8fafc;
  }
  
  .embla__button__svg {
    width: 22px;
    height: 20px;
  }
  
  .prev-button-container,
  .next-button-container {
    width: 3.6rem;
    height: 3.6rem;
  }
  
  .embla__dot {
    width: 2.2rem;
    height: 2.2rem;
  }
  
  .embla__dot:after {
    width: 0.7rem;
    height: 0.7rem;
  }
}

/* Responsivo para telas muito pequenas - Partners Section */
@media (max-width: 480px) {
  .partners-section {
    padding: 50px 12px;
  }
  
  .partners-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .partners-section p {
    font-size: 15px;
    margin-bottom: 32px;
    padding: 0 4px;
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .partner-item img {
    max-width: 100px;
    width: 100%;
    height: auto;
  }
}

/* Responsivo para telas muito pequenas - Solutions Section */
@media (max-width: 480px) {
  .solutions-section {
    padding: 50px 12px;
  }
  
  .solutions-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .solutions-section > .container > p {
    font-size: 15px;
    margin-bottom: 32px;
    padding: 0 4px;
  }
  
  .embla__slide {
    height: 380px;
    padding: 0 12px;
  }
  
  .embla__slide .embla__slide__img {
    width: 100% !important;
    max-width: 280px !important;
    height: 240px !important;
    opacity: 1 !important;
  }
  
  /* Garantir que as regras de slides ativos não sobrescrevam em telas muito pequenas */
  #slide1:checked ~ .embla .slide-1 .embla__slide__img,
  #slide2:checked ~ .embla .slide-2 .embla__slide__img,
  #slide3:checked ~ .embla .slide-3 .embla__slide__img,
  #slide4:checked ~ .embla .slide-4 .embla__slide__img,
  #slide5:checked ~ .embla .slide-5 .embla__slide__img {
    width: 100% !important;
    max-width: 280px !important;
    height: 240px !important;
    opacity: 1 !important;
  }
  
  .slide-content {
    max-width: 280px;
    margin-top: 16px;
  }
  
  .slide-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .slide-content p {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .embla__button {
    width: 3.2rem;
    height: 3.2rem;
  }
  
  .embla__button__svg {
    width: 20px;
    height: 18px;
  }
  
  .prev-button-container,
  .next-button-container {
    width: 3.2rem;
    height: 3.2rem;
  }
  
  .embla__dot {
    width: 2rem;
    height: 2rem;
  }
  
  .embla__dot:after {
    width: 0.6rem;
    height: 0.6rem;
  }
}

/* Responsivo para tablets - Contact Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact-section {
    padding: 60px 24px;
  }
  
  .contact-section h2 {
    font-size: 1.8rem;
  }
  
  .contact-container {
    max-width: 700px;
    padding: 35px;
  }
}

/* Responsivo Mobile - Paggmidia Section */
@media (max-width: 768px) {
  .paggmidia-section {
    padding: 60px 16px;
  }
  
  .paggmidia-section .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .text-column {
    min-width: auto;
    width: 100%;
  }
  
  .text-column h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .text-column p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .accordion {
    gap: 12px;
  }
  
  .accordion summary {
    font-size: 16px;
    padding: 14px;
  }
  
  .accordion .content-body {
    font-size: 14px;
    padding: 0 14px 14px;
  }
  
  .image-column {
    min-width: auto;
    width: 100%;
    height: 300px;
    margin-top: 0;
  }

  .tablet-img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Seção principal */
.testimonials-section {
  background-color: #0a0d2c;
  padding: 80px 24px;
  color: #ffffff;
  text-align: center;
}

/* Container centralizado */
.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Título */
.testimonials-section h2 {
  font-size: 40px;
  margin-bottom: 8px;
  color: #fff;
}

/* Subtítulo */
.testimonials-section p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 48px;
}

/* Grid dos depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Card individual */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Ícone de aspas */
.quote-icon {
  margin-bottom: 16px;
}

/* Texto da citação */
.quote-text {
  color: #4f4f4f !important;
  font-size: 18px;
  margin-bottom: 16px !important;
  line-height: 130%;
}

/* Autor (avatar + nome + cargo) */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  font-size: 18px;
  color: #4F4F4F;
}

.author-role {
  font-size: 16px;
  color: #4F4F4F;
}

/* Seção geral */
.faq-section {
  background-color: #f5f5f5;
  padding: 80px 24px;
  text-align: center;
}

.faq-section h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.contact-section {
  background-color: #f5f5f5;
  padding: 80px 24px;
  text-align: center;
}

/* Cabeçalho da seção de contato */
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #111;
  text-align: center;
}

.contact-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Container para o formulário */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Decoração sutil no container */
.contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1551c6, #2b61d1);
}

/* Estilização do formulário Pipedrive */
.contact-section .pipedriveWebForms {
  width: 100%;
}

/* Responsivo Mobile - Contact Section */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 16px;
  }

  .contact-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .contact-section p {
    font-size: 16px;
    margin-bottom: 32px;
    padding: 0 8px;
  }

  .contact-container {
    padding: 24px;
    margin: 0 8px;
    border-radius: 12px;
  }
}

/* Container branco com borda arredondada */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 0 transparent;
  overflow: hidden;
}

/* Cada item do acordeão */
.faq-container details {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

/* Último item sem borda inferior */
.faq-container details:last-child {
  border-bottom: none;
}

/* Estilização do cabeçalho (pergunta) */
.faq-container summary {
  font-size: 20px;
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Remove a setinha padrão do summary */
.faq-container summary::-webkit-details-marker {
  display: none;
}

/* Adiciona seta manual com CSS (usando imagem) */
.faq-container summary::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("/images/chevron-down-solid-2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}

/* Rotaciona a seta ao abrir */
.faq-container details[open] summary::after {
  transform: rotate(180deg);
}

/* Resposta da pergunta */
.faq-container details p {
  text-align: left;
  padding: 0 24px 20px;
  font-size: 16px;
  color: #333333;
  line-height: 150%;
}

/* Responsivo Mobile - Testimonials Section */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 16px;
  }
  
  .testimonials-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .testimonials-section p {
    font-size: 16px;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
    margin: 0 8px;
  }
  
  .quote-text {
    font-size: 15px !important;
    line-height: 1.5;
  }
  
  .author img {
    width: 44px;
    height: 44px;
  }
  
  .author strong {
    font-size: 16px;
  }
  
  .author-role {
    font-size: 14px;
  }
}

/* Responsivo Mobile - FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }
  
  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .faq-container {
    margin: 0 8px;
  }

  .faq-container summary {
    font-size: 16px;
    padding: 16px 18px;
    line-height: 1.4;
  }

  .faq-container details p {
    font-size: 14px;
    padding: 0 18px 16px;
    line-height: 1.5;
  }
}

/* Container geral do rodapé */
.footer {
  background: #0b0d2e;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 96px 80px;
}

/* Grid superior do conteúdo */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  align-items: start;
  width: 100%;
  max-width: 1200px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.logo-col {
  max-width: 400px;
  align-items: start;
}

.footer .logo {
  height: 40px;
  margin-bottom: 24px;
}

.footer-col p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* Títulos das colunas */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

/* Lista de links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #e0e0e0;
}

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

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  position: relative;
  display: inline-block;
}

.footer-col ul li a:hover::before {
  width: 100%;
}

/* Informações de contato */
.footer-col p strong {
  color: #ffffff;
  font-weight: 500;
}

.footer-col p a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer-col p a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Ícones sociais */
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icons > a > img {
  width: 33px;
  height: 33px;
}

/* Linha divisória */
.footer hr {
  border: none;
  height: 1px;
  background: #233a88;
  margin: 40px 0 30px;
  position: relative;
  width: 100%;
  max-width: 1200px;
}

/* Rodapé inferior */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  flex-wrap: wrap;
  color: #ffffff;
  width: 100%;
  max-width: 1200px;
}

.footer-bottom p {
  margin: 0;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
}

/* Responsivo */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .logo-col {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .logo-col {
    text-align: center;
    margin-bottom: 0;
  }

  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding-top: 30px;
  }

  .footer-links {
    gap: 20px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 16px 25px;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-col h4 {
    font-size: 0.95rem;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 0.9rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons a i {
    font-size: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
