/* ============================================= */
/* ARQUIVO DE ESTILO CONSOLIDADO - GRUPO Q-MAX   */
/* ============================================= */

/* --- RESET E ESTILOS BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ============================================= */
/* --- ESTILOS DO CARROSSEL DA EQUIPE (QUEM SOMOS) --- */
/* ============================================= */
#team-carousel-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden; /* Garante que as imagens não passem da borda arredondada */
    aspect-ratio: 4 / 3;
}

.team-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    opacity: 0;
    transition: opacity 1.2s ease-in-out; /* Duração e efeito da transição */
}

.team-carousel-image.active {
    opacity: 1; /* Torna a imagem ativa visível */
}
html {
  scroll-behavior: smooth;
}

body {
  padding-top: 100px;
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }
}

/* --- FONTES PERSONALIZADAS --- */
@font-face {
  font-family: "Uncage";
  src: url("fonts/Uncage-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

/* --- CLASSES UTILITÁRIAS E DE ANIMAÇÃO --- */
.hidden {
  display: none !important;
}
.text-center {
  text-align: center;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.fade-in-left {
  transform: translateX(-40px);
}
.animate-on-scroll.fade-in-right {
  transform: translateX(40px);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.brand-color {
  color: #d90f81;
  font-weight: bold;
}

/* --- HEADER --- */
.main-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.8);
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: top 0.3s ease-in-out;
}
.header-inner-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}
@media (min-width: 768px) {
  .header-logo {
    height: 50px;
  }
}
/* Header Navegação Desktop */
.desktop-nav {
  display: none;
}
@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }
}
.desktop-nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-family: "Gilroy", sans-serif;
  color: white;
  font-size: 1.1rem;
}
.nav-link {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d90f81;
  transition: all 0.3s ease-out;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover,
.nav-link.active {
  color: #d90f81;
}

/* Header Dropdowns Desktop */
.nav-item-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}
.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  min-width: 300px;
  padding: 15px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}
/* ============================================= */
/* --- AJUSTES PERSONALIZADOS PARA LOGOS ---     */
/* ============================================= */

/* Aumenta o tamanho da logo QXSign, que é muito pequena */
.product-logo-img[src="imagens/qxsign.png"] {
    transform: scale(1.2); /* Aumenta a logo em 60% */
    transition: transform 0.3s ease;
}

/* Reduz o tamanho da logo Finora, que é muito grande */
.product-logo-img[src="imagens/Ativo 10.png"] {
    max-height: 70%; /* Limita a altura máxima a 70% do container */
}
.dropdown-menu.show-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  text-decoration: none;
  color: white;
  background-color: #2a2a2a;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.dropdown-item:hover {
  background-color: #d90f81;
  transform: translateX(5px);
}
.dropdown-item img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.dropdown-item h4 {
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  margin-bottom: 3px;
  line-height: 1.2;
}
.dropdown-item:hover h4 {
  color: white;
}
.dropdown-item p {
  font-size: 0.8rem;
  color: #ccc;
  line-height: 1.2;
}
.dropdown-item-icon-wrapper {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3a3a3a;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #d90f81;
}
.dropdown-external-icon {
  margin-left: auto;
  color: #ccc;
  transition: color 0.2s ease;
}
.dropdown-item:hover .dropdown-external-icon {
  color: white;
}

/* Header Navegação Mobile */
.mobile-menu-toggle {
  display: block;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu-icon.hidden {
  opacity: 0;
  transform: scale(0.5);
}
.mobile-nav-menu {
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: rgba(17, 17, 17, 0.98);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 0.5rem;
}
.mobile-nav-menu.open {
  max-height: 80vh;
  padding: 1rem 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.5rem;
  font-family: "Gilroy", sans-serif;
  font-size: 1.25rem;
}
.mobile-nav-link {
  padding: 0.75rem 0;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding-left: 1rem;
}
.mobile-dropdown-menu.open-mobile {
  max-height: 400px;
}
.mobile-dropdown-item {
  display: block;
  padding: 0.5rem 0;
  color: #ccc;
  font-size: 1rem;
  text-decoration: none;
}
.mobile-dropdown-item i.fa-fw {
  margin-right: 10px;
  color: #d90f81;
}

/* --- SEÇÃO HERO --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  margin-top: -100px;
}
.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: kenburns 20s ease-out infinite;
}
.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes kenburns {
  0% {
    transform: scale(1.1) translate(0, 0);
  }
  50% {
    transform: scale(1) translate(-2%, 1%);
  }
  100% {
    transform: scale(1.1) translate(0, 0);
  }
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 4rem;
}
.hero-title {
  font-family: "Uncage", sans-serif;
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.title-line {
  display: block;
}
.title-line.highlight {
  background-color: #d90f81;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
}
.btn-hero {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

/* --- ESTILOS GERAIS DE SEÇÃO --- */
.section {
  padding: 6rem 0;
}
.section-white {
  background-color: #f9f9f9;
}
.section-dark {
  background-color: #111;
}
.section-header {
  margin-bottom: 4rem;
}
.section-title {
  font-family: "Gilroy", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #111;
}
.section-title-white {
  color: white;
}
.section-title-magenta {
  color: #d90f81;
}
.section-subtitle {
  font-size: 1.35rem;
  color: #6b7280;
  max-width: 55rem;
  margin: 0 auto;
}
.section-subtitle-light {
  color: #d1d5db;
}
p {
  font-size: 1.1rem;
}

/* Grid genérico (usado em outras seções) */
.grid-2 {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================= */
/* --- SEÇÃO SOBRE - ESTILOS CORRIGIDOS --- */
/* ============================================= */

.about-grid {
  display: flex; /* Flexbox para layout em coluna por padrão (mobile) */
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* Em telas maiores (desktop), usamos grid com 2 colunas */
@media (min-width: 992px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-content {
  width: 100%;
}

.about-image-wrapper {
  width: 100%;
}

.about-image {
  width: 100%; /* CORREÇÃO: Garante que a imagem ocupe 100% do seu container */
  height: auto; /* Mantém a proporção da imagem */
  display: block; /* Remove espaço extra abaixo da imagem */
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(217, 15, 129, 0.2);
}

/* Carrossel da Seção Sobre */
.features-carousel {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    background-color 0.4s ease;
}
.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #d90f81;
  border-radius: 12px 12px 0 0;
  transition: width 0.4s ease;
}
.carousel-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.carousel-slide:hover::before {
  width: 100%;
}
.carousel-slide .feature-icon {
  background-color: #d90f81;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.carousel-slide:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(217, 15, 129, 0.5);
}
.carousel-slide .feature-title {
  font-size: 1.7rem;
}
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.indicator-dot.active {
  background-color: #d90f81;
  transform: scale(1.2);
}
.feature-text-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}
.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d90f81;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

/* --- SEÇÃO SERVIÇOS (EMPRESAS) --- */
.services-carousel-container {
  position: relative;
  padding: 0 50px;
}
.services-carousel-viewport {
  width: 100%;
  overflow: hidden;
}
.services-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-card-new {
  position: relative;
  flex: 0 0 300px;
  width: 300px;
  height: 400px;
  margin: 20px;
  background-color: #222;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0.5;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.service-card-new.is-active {
  transform: scale(1);
  opacity: 1;
}
.service-card-new.is-prev,
.service-card-new.is-next {
  transform: scale(0.9);
  opacity: 0.5;
}
.card-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.card-background-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}
.service-card-new:hover .card-background-image {
  opacity: 1;
}
.card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: color 0.5s ease;
}
.service-icon-new {
  font-size: 3.5rem;
  color: #d90f81;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}
.service-title-new {
  font-family: "Gilroy", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-description-new {
  font-size: 1rem;
  color: #ccc;
  flex-grow: 1;
}
.btn-service-new {
  background-color: #d90f81;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.service-card-new:hover .service-icon-new {
  transform: scale(1.1);
}
.service-card-new:hover .btn-service-new {
  opacity: 1;
  transform: translateY(0);
}
.services-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.nav-arrow {
  background: transparent;
  border: 2px solid #555;
  color: #555;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.nav-arrow:hover {
  background-color: #d90f81;
  border-color: #d90f81;
  color: #fff;
}
.carousel-dots {
  display: flex;
  gap: 12px;
  margin: 0 2rem;
}
.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #444;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.carousel-dots .dot.active-dot {
  background-color: #d90f81;
  transform: scale(1.3);
}
/* ============================================= */
/* --- ESTILOS FINAIS DA SEÇÃO DE PRODUTOS --- */
/* ============================================= */

.products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
}

.product-card {
  background: #d90f81;
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Camada escura para o efeito de hover */
.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.9); /* Preto com 90% de opacidade */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1; /* Fica entre o fundo e o conteúdo */
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px -15px rgba(217, 15, 129, 0.4);
  color: #d90f81;
}

.product-card:hover::after {
  opacity: 1; /* Mostra a camada escura no hover */
}

/* Garante que o conteúdo fique acima da camada escura */
.product-card > * {
  position: relative;
  z-index: 2;
}

.product-logo {
  margin-bottom: 2rem;
  height: 80px; /* Altura fixa para alinhar as logos */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo-img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain; /* Garante que a logo não seja cortada */
}

.product-title {
  font-family: "Gilroy", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  text-align: left;
  flex-grow: 1;
  max-width: 250px;
}

.product-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  font-weight: bold;
}

.btn-product {
  background: rgba(255, 255, 255, 0);
  border: 2px solid #fff;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

.product-card:hover .btn-product {
  opacity: 1; /* Botão aparece no hover */
  transform: translateY(0);
}

.btn-product:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* --- SEÇÃO QUEM SOMOS --- */
#quem-somos .subsection-title-white {
  color: white;
}
#quem-somos .text-light {
  color: #eee;
  font-size: 1.2rem;
}
#quem-somos .section-image {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.stat-card:hover {
  background-color: rgba(217, 15, 129, 0.2);
  transform: translateY(-5px);
}
.stat-number {
  font-size: 4rem;
  font-weight: bold;
  color: #d90f81;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: "Gilroy", sans-serif;
}
.stat-label {
  color: white;
  font-size: 1.2rem;
  line-height: 1.3;
}
.leadership-section {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

/* --- SEÇÃO CONTATO --- */
#contato .subsection-title {
  color: #d90f81;
  font-size: 2.2rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}
.contact-item:hover {
  transform: translateX(10px);
}
.contact-icon {
  background-color: #d90f81;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.contact-label {
  font-weight: bold;
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 0.25rem;
}
.contact-value {
  color: #6b7280;
  font-size: 1.1rem;
}
#contato .section-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}
#contato .section-image:hover {
  transform: scale(1.02) rotate(-1deg);
}

/* --- BOTÕES --- */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Gilroy", sans-serif;
  letter-spacing: 0.5px;
}
.btn-primary {
  background-color: #d90f81;
  color: white;
}
.btn-primary:hover {
  background-color: #b90e70;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 15, 129, 0.3);
}
.btn-magenta {
  background-color: #d90f81;
  color: white;
}
.btn-magenta:hover {
  background-color: #b90e70;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 15, 129, 0.3);
}
.btn-large {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn-large:hover .btn-arrow {
  transform: translateX(8px);
}

/* --- FOOTER --- */
.main-footer {
  background-color: #111;
  padding: 5rem 1rem 2rem;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}
@media (min-width: 768px) {
  .main-footer {
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
  }
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }
}
.footer-logo-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-logo-wrapper {
    justify-content: flex-start;
  }
}
.footer-logo {
  height: 60px;
}
.footer-heading {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: "Gilroy", sans-serif;
}
.footer-text {
  color: #ccc;
  font-size: 1.1rem;
}
.footer-link-contact {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link-contact:hover {
  color: #d90f81;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-social-media {
    text-align: right;
  }
  .social-icons {
    justify-content: flex-end;
  }
}
.social-link {
  transition: transform 0.3s ease;
}
.social-link:hover {
  transform: scale(1.2) translateY(-3px);
}
.social-icon {
  width: 32px;
  height: 32px;
}
.footer-divider {
  border-top: 1px solid #4b5563;
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer-copyright {
  text-align: center;
  color: #888;
}
.footer-copyright p {
  font-size: 1rem;
}
.footer-copyright .footer-link-contact {
  color: #aaa;
}
.footer-copyright .footer-link-contact:hover {
  color: #ff0000;
}

/* --- MEDIA QUERIES E AJUSTES RESPONSIVOS FINAIS --- */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  /* Ajustes Gerais para Mobile */
  .section-title {
    font-size: 2.2rem;
  }
  .subsection-title {
    font-size: 1.8rem;
  }

  /* Hero em Mobile */
  .hero-title {
    font-size: 2.5rem;
  }
  .btn-hero {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
  .hero-background-animation {
    display: none;
  }
  .hero {
    background-color: #111;
    align-items: center;
  }
  .hero::after {
    background: none;
  }

  /* Carrossel Sobre em Mobile */
  #sobre .carousel-slide {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .carousel-slide .feature-title {
    font-size: 1.5rem;
  }
  .feature-list li,
  .feature-text-intro {
    font-size: 1.1rem;
  }

  /* Carrossel Serviços em Mobile */
  .services-carousel-container {
    padding: 0;
  }
  .service-card-new {
    flex: 0 0 280px;
    width: 280px;
    height: 380px;
    margin: 10px;
  }
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}
