@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --primary: #17a649;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary: #3b82f6;
  --secondary-dark: #2563eb;
  --accent: #f59e0b;
  --dark: #0f172a;
  --dark-lighter: #1e293b;
  --light: #475868;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 0 20px 3px rgba(16, 185, 129, 0.4);
  --meteor-color: rgba(16, 185, 129, 0.8);
  --bg-color: #020617;
  --bg-gradient: #f2f2f2;
}

[data-theme="light"] {
  --primary: #10b981;
  --primary-dark: #059669;
  --bg-color: #f8fafc;
  --dark: #1e293b;
  --dark-lighter: #334155;
  --meteor-color: rgba(16, 185, 129, 0.6);
  --bg-gradient: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 50%, #e0f2fe 100%);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* video de background */

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--light);
  overflow-x: hidden;
  transition: fall 0.5s ease;
}

@keyframes fall {
  0% {
    opacity: 0;
    transform: translateY(-100px) rotate(45deg) scale(0.5);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(45deg) scale(1.3);
  }
}

/* Container Principal */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Fixo */
header {
  background-color: rgba(242, 242, 242, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  animation: slideDown 0.8s ease-out;
}
.header-title {
  background-color: #2b2b2b;
  padding: 5px 50px;
  transition: padding 0.5s ease;
}

.header-title.scrolled {
  padding: 0px;
  height: 0px;
  transition: padding 0.5s ease;
}
.header-title.scrolled p {
  font-size: 0px;
  transition: 0.5s;
}

.header-title p {
  color: var(--white);
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  display: flex;
  align-items: end;
  justify-content: space-around;
  margin: 0 auto;
}

.logo {
  flex-shrink: 0;
  padding: 5px;
}

.logo img {
  height: 55px;
  width: auto;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0 0 -1.5px 0;
  padding: 0;
  align-self: flex-end;
}

.main-nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
}

.main-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #17a649;
  transform: translateY(-2px);
  border-bottom-color: #17a649;
}

.main-nav a i {
  font-size: 1em;
}

.theme-toggle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary-light);
}

.theme-toggle:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Menu Hambúrguer */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary-light);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
/* Slider */
.slider-wrapper {
  width: 100%;
  background-color: #020617;
  margin-top: 0px;
  padding: 0 !important;
}

.slider-container {
  margin: 15px auto !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 98vh;
  overflow: hidden;
  animation: slideInFromTop 1s ease-out;
}

.slider {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: block !important;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* transform: scale(1); */
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.75) 0%,
    rgba(2, 6, 23, 0.55) 50%,
    rgba(2, 6, 23, 0.35) 100%
  );
  padding: 4rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  z-index: 3;
}

/* Glassmorphism Slide Content Card */
.slide-content {
  max-width: 600px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4),
              inset 0 0 15px rgba(255, 255, 255, 0.05);
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
}

.slide.active .slide-content {
  transform: translateX(0);
  opacity: 1;
}

.slide-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slide-title span {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Catalogs float showcase */
.catalogs-showcase {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: none;
  justify-content: flex-end;
  align-self: flex-end;
  transform: translateX(50px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s, opacity 0.8s ease 0.2s;
}

.slide.active .catalogs-showcase {
  transform: translateX(0);
  opacity: 1;
}

.catalog-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.catalog-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(23, 166, 73, 0.4);
  border-color: rgba(23, 166, 73, 0.4);
}

.catalogo {
  display: block;
}

/* Slider Controls & indicators */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.control-btn {
  background: rgba(15, 23, 42, 0.4);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.control-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(23, 166, 73, 0.5);
}

.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
  width: 35px;
  background: var(--primary);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(23, 166, 73, 0.5);
}

/* Marcas Track */
.marcas {
  display: flex;
  align-items: center; /* Alinhamento central */
  justify-content: center; /* Alinhamento central */
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
  animation: slideInFromTop 1s ease-out;
}

.marcas-track {
  display: flex;
  align-items: center; /* Alinhamento central */
  justify-content: center; /* Alinhamento central */
  width: max-content;
  animation: marcasScroll 75s linear infinite;
}

.marcas-track img {
  height: 35px;
  width: auto;
  padding: 0 50px;
}

@keyframes marcasScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.backgrund {
  position: relative;
  background-image: url('../../img/banner_business.png');
  background-size: cover;
  background-position: end;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.backgrund .container-fluid {
  z-index: 1;
  padding: 80px 10%; /* Ajuste de padding vertical (70px-90px) */
  background: rgba(15, 23, 42, 0.65); /* Dark slate overlay for better contrast */
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .backgrund {
    background-attachment: scroll;
  }
}

.partners-section {
  padding: 80px 0; /* Ajuste de padding vertical (70px-90px) */
  position: relative; 
  background-color: #ffffff;
  color: var(--dark);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Responsividade do Slider */
@media (max-width: 1024px) {
  .slider-container {
    height: 70vh;
  }
  .slide-overlay {
    padding: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    background: radial-gradient(
      circle at 50% 50%,
      rgba(2, 6, 23, 0.8) 0%,
      rgba(2, 6, 23, 0.5) 100%
    );
  }
  .slide-content {
    max-width: 100%;
    width: 100%;
  }
  .catalogs-showcase {
    justify-content: flex-start;
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 400px;
  }
  .slide-title {
    font-size: 2.2rem;
  }
  .slide-content {
    padding: 20px;
    border-radius: 12px;
  }
  .slider-controls {
    display: none;
  }
  .catalogs-showcase {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    aspect-ratio: 9 / 12;
    min-height: 480px;
  }
  .slide-overlay {
    padding: 1.5rem;
  }
  .slide-title {
    font-size: 1.8rem;
  }
  .slide-description {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .catalogs-showcase {
    display: none;
  }
}

.interactive-showcase {
  padding: 80px 0;
  position: relative;
}
.interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.interactive-card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: #f2f2f2;
  transform: translate3d(0, 0, 0);
}
.interactive-card h3 {
  margin: 10px 0 6px;
  color: #f2f2f2;
}
.interactive-card p {
  color: #d1d5db;
}
.interactive-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 166, 73, 0.15);
  color: var(--white);
  font-size: 1.6rem;
}
.pointer-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .interactive-showcase {
    padding: 60px 0;
  }
}

.parts-lantern {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #0b0d12 0%, #0a0c10 100%);
}
.parts-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.lantern-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--lx, 50%) var(--ly, 50%),
    rgba(255, 255, 255, 0.06) 0px,
    rgba(255, 255, 255, 0.04) 140px,
    rgba(0, 0, 0, 0.85) 280px
  );
  z-index: 1;
}
.parts-grid {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.part-item {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transform: translate3d(0, 0, 0);
}
.part-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .parts-lantern {
    padding: 60px 0;
  }
  .part-item img {
    height: 150px;
  }
}
.categories-section {
  color: #f2f2f2;
}
featured-section h2 {
  font-size: 5em;
}
featured-section P {
  font-size: 3em;
}
.featured-section {
  color: var(--dark);
  background-color: #f8fafc;
  padding: 90px 0 0 0 ; /* Ajuste de padding vertical (70px-90px) */
}
.category-content h3 {
  color: #f2f2ff;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  color: #1e1f25;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title-paralax {
  text-align: center;
  margin-bottom: 60px;
}
.section-title-paralax h2 {
  color: #f2f2f2;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title-paralax p {
  color: #f2f2f2ce;
}

@keyframes titleGlow {
  from {
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
  }
  to {
    text-shadow:
      0 0 30px rgba(16, 185, 129, 0.9),
      0 0 45px rgba(16, 185, 129, 0.5);
  }
}

@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

.section-title p {
  color: #020617;
  font-size: 1.15rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08); /* Borda sutil de baixa opacidade */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease; /* Efeito hover suave */
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px) !important; /* Elevação suave */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  filter: brightness(1.03); /* Brilho sutil */
  border-color: rgba(23, 166, 73, 0.25);
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(99, 99, 99, 0.116) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.product-card:hover::after {
  transform: translateX(100%);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-offer {
  background: linear-gradient(135deg, var(--accent), #ef4444);
  color: white;
}

.badge-new {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.15);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-quick-view {
  padding: 12px 28px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-quick-view:hover {
  background: var(--primary-light);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.product-info {
  color: #1f1f1f;
  padding: 25px;
}

.product-title {
  color: #2a2b2e;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.95rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary-custom {
  width: 100%;
  background: #17a649;
  color: white;
}

.btn-secondary-custom:hover {
  color: #020617;
  background: #1ecc55;
  box-shadow: 0 12px 30px var(--primary-light);
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.category-card {
  overflow: hidden;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil de baixa opacidade */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
  transition: all 0.3s ease; /* Efeito hover suave */
  position: relative;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  transition: left 0.6s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-4px) scale(1.01) !important; /* Elevação suave */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.05); /* Brilho sutil */
  border-color: rgba(16, 185, 129, 0.35);
}

.category-image {
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-image img {
  height: 100%;
  transition: var(--transition);
}

.category-card:hover .category-image img {
  transform: scale(1.2) rotate(5deg);
}

.category-content {
  padding: 30px;
  text-align: center;
}

.category-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #e7e7e7;
}

.category-content p {
  color: #f2f2f2;
  margin-bottom: 20px;
  line-height: 1.7;
}

.category-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.category-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Partners Section */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 5px;
}

.partner-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 120px;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(23, 166, 73, 0.2);
}

.partner-card img {
  max-width: 75%;
  height: auto;
  filter: grayscale(100%) opacity(0.65);
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Work With Us */
.work-with-us {
  color: white;
  background: #17a649;
  backdrop-filter: blur(8px);
  padding: 80px 0; /* Ajuste de padding vertical (70px-90px) */
}
.work-with-us .section-title h2 {
  color: #ffffff !important;
}
.work-with-us .container .section-title > p {
  color: #f2f2f2;
}
.work-content {
  max-width: 800px;
  margin: 0 auto;
}

.work-card {
  color: #fff;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
}

.work-icon {
  font-size: 4rem;
  color: var(--primary-light);
  margin-bottom: 25px;
}

.work-card p {
  font-size: 1.15rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.work-actions {
  margin-top: 30px;
}

.work-actions a {
  background: var(--primary);
  border: 2px solid white;
  padding: 12px 24px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: var(--transition);
}

.work-actions a:hover {
  background: rgba(106, 248, 49, 0.685);
  color: black;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* WhatsApp Button */

#whatsappButton {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  left: 30px;
  font-size: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
}

#whatsappButton:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Chatling Widget (Chat Integrado) - Forçar alinhamento na direita */
[id*="chatling"], 
[class*="chatling"], 
[id*="chtl"], 
[class*="chtl"] {
  right: 30px !important;
  left: auto !important;
}

/* Scroll to Top Button */
#scrollTopButton {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 110px;
  right: 30px;
  font-size: 1.5rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  border: 2px solid var(--primary-light);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

#scrollTopButton.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTopButton:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

/* Footer */
footer {
  background: #111827;
  padding: 80px 0 40px;
  border-top: 3px solid var(--primary);
  color: #9ca3af;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-column {
    max-width: 450px;
}

.footer-column h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-column p {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-links li {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
  color: white;
}
.social-links a.f {
  background: #1f4ca6;
}
.social-links a.w {
  background: #17a649;
}
.social-links a.i {
  background: #db2777;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.footer-bottom {
  text-align: left;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.footer-bottom p {
  color: var(--gray-light);
  margin: 0 !important;
  padding: 0 !important;
  text-align: left;
}

.privacy-link {
  color: var(--gray-light);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-link:hover {
  color: var(--primary-light);
}
h2.title {
  color: #f2f2f2;
}

/* Responsivo */

@media (max-width: 1500px) {
  .slider-wrapper {
    margin-top: 80px;
  }
  .slider-container {
    margin-top: 0;
  }
}
@media (max-width: 800px) {
  .slider-wrapper {
    margin-top: 90px;
  }
  .slider-container {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .header-content {
    padding: 0 30px;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .header-content {
    padding: 0 20px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #f2f2f2ce;
    backdrop-filter: blur(20px);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 30px 0;
    height: 100%;
  }

  .main-nav li {
    width: 100%;
    text-align: center;
  }

  .main-nav a {
    padding: 18px 25px;
    font-size: 1.15rem;
    width: 100%;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    justify-content: center;
  }

  .logo img {
    height: 45px;
  }

  .slider-wrapper {
    margin-top: 0px;
  }

  .slider-container {
    height: 70vh;
    min-height: 70vh;
    margin-top: 0;
  }

  .slide-title {
    font-size: 1.6rem !important;
    margin-bottom: 0.4rem !important;
  }

  .slide-description {
    font-size: 0.85rem !important;
    margin-bottom: 0.8rem !important;
  }

  .slide-overlay {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.25rem !important;
    gap: 0.5rem !important;
  }

  .catalogs-showcase {
    display: none !important; /* Ocultar catálogo HTML duplicado no tablet/mobile para evitar encavalamento e desalinhamento */
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .products-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .work-card {
    padding: 35px 25px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #whatsappButton {
    width: 60px;
    height: 60px;
    bottom: 25px;
    left: 25px;
  }

  [id*="chatling"], 
  [class*="chatling"], 
  [id*="chtl"], 
  [class*="chtl"] {
    right: 20px !important;
    left: auto !important;
  }

  #scrollTopButton {
    width: 50px;
    height: 50px;
    bottom: 100px;
    right: 25px;
  }
}

@media (max-width: 480px) {
  .slider-wrapper {
    margin-top: 0px;
  }

  .slider-container {
    height: 70vh;
    min-height: 70vh;
    margin-top: 0;
  }

  .slide-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.3rem !important;
  }

  .slide-description {
    font-size: 0.75rem !important;
    margin-bottom: 0.6rem !important;
  }

  .slide-overlay {
    padding: 0.75rem !important;
    gap: 0.4rem !important;
  }

  .catalogo {
    width: 100px !important;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* estilos paralax */
.cid-uOHcLDkw18 {
  background-image: url("/assets/img/photo-bmw.jpg");
}
.cid-uOHcLDkw18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOHcLDkw18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOHcLDkw18 .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-uOHcLDkw18 .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-uOHcLDkw18 .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-uOHcLDkw18 .mbr-text {
  color: #ffffff;
}
.cid-uOHcLDkw18 .card {
  padding-bottom: 1.5rem;
}
.cid-uOHcLDkw18 .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uOHcLDkw18 .item-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uOHcLDkw18 .item-wrapper .card-title {
  color: #ffffff;
}
.cid-uOHcLDkw18 H1 {
  color: #ffffff;
}

/* Contêiner de filtros com stacking context elevado para evitar que imagens passem por cima */
.container-filtros {
  position: relative;
  z-index: 100;
}

/* Dropdown de Sugestões de Pesquisa */
.search-container {
  position: relative; /* Para posicionamento absoluto do dropdown */
}

.search-suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(160, 163, 161, 0.35);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-top: 8px;
  z-index: 99999 !important; /* Forçar exibição por cima de qualquer imagem ou transformação CSS */
  max-height: 350px;
  overflow-y: auto;
  display: none;
  text-align: left;
}

[data-theme="light"] .search-suggestions-dropdown {

  border-color: rgba(127, 141, 132, 0.055);
}

.search-suggestions-dropdown::-webkit-scrollbar {
  width: 6px;
}
.search-suggestions-dropdown::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.suggestion-section {
  padding: 6px 0;
  background-color: #f8fafc;
}

.suggestion-section-title {
  
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-light);
  padding: 8px 16px 4px 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 4px;
}

[data-theme="light"] .suggestion-section-title {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #cbd5e1 !important; /* Texto claro por padrão */
  font-size: 0.95rem;
  font-weight: 400;
}

[data-theme="light"] .suggestion-item {
  color: #1e293b !important; /* Texto escuro no tema claro */
}

.suggestion-item:hover,
.suggestion-item.keyboard-active {
  background-color: rgba(23, 166, 73, 0.15) !important;
  color: var(--primary-light) !important;
}

[data-theme="light"] .suggestion-item:hover,
[data-theme="light"] .suggestion-item.keyboard-active {
  background-color: rgba(23, 166, 73, 0.12) !important;
  color: var(--primary-dark) !important;
}

.suggestion-item-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  overflow: hidden;
}

.suggestion-item-icon {
  color: var(--primary-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

[data-theme="light"] .suggestion-item-icon {
  color: var(--primary);
}

.suggestion-item-text {
  color: #020617;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-item-delete {
  color: var(--gray);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.suggestion-item-delete:hover {
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.15);
}

/* Banner Inicial - Largura Total */
.banner-inicial-section {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner-inicial-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.banner-inicial-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.banner-inicial-container:hover::before {
  left: 100%;
}

.banner-inicial-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-inicial-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Overlay do Banner Inicial */
.banner-inicial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.50); /* Overlay preto com opacidade entre 45% e 55% para contraste máximo */
  display: flex;
  justify-content: center; /* Centralizado horizontalmente */
  align-items: center; /* Centralizado verticalmente */
  padding: 20px;
  z-index: 2;
}

.banner-inicial-content {
  max-width: 800px;
  text-align: center; /* Centralizado */
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-inicial-content.animate-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.banner-inicial-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: white !important;
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.banner-inicial-title span {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.banner-inicial-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(242, 242, 242, 0.95);
  line-height: 1.6;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.banner-inicial-cta {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.banner-inicial-btn {
  display: inline-block;
  background-color: var(--primary); /* Verde institucional */
  color: #ffffff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px; /* cantos levemente arredondados */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(23, 166, 73, 0.3);
  transition: all 0.3s ease;
}

.banner-inicial-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 166, 73, 0.5);
}

/* Responsividade do banner inicial com texto */
@media (max-width: 1024px) {
  .banner-inicial-title {
    font-size: 2.8rem;
  }
  .banner-inicial-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .banner-inicial-overlay {
    padding: 0 25px;
    justify-content: center;
    background: rgba(2, 6, 23, 0.65);
  }
  .banner-inicial-content {
    max-width: 100%;
    text-align: center;
    transform: translate3d(0, 30px, 0);
  }
  .banner-inicial-content.animate-in {
    transform: translate3d(0, 0, 0);
  }
  .banner-inicial-title {
    font-size: 2.2rem;
  }
  .banner-inicial-text {
    font-size: 1.05rem;
  }
}

/* Seção Promocional Corporativa (Empresa para Empresa) */
.corporate-partnership-section {
  padding: 80px 0; /* Ajuste de padding vertical (70px-90px) */
  background-color: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.corporate-partnership-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.corporate-content-side {
  flex: 1.1;
  max-width: 650px;
}

.badge-corporate {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(23, 166, 73, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(23, 166, 73, 0.2);
}

.corporate-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.corporate-title span {
  background: linear-gradient(120deg, #17a649, #10b981);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.corporate-description {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 35px;
}

.corporate-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.corporate-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.corporate-feature-item i {
  font-size: 1.8rem;
  color: var(--primary);
  background: rgba(23, 166, 73, 0.1);
  padding: 15px;
  border-radius: 12px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.corporate-feature-item:hover i {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.feature-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

.feature-info p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.corporate-image-side {
  flex: 0.9;
  display: flex;
  justify-content: center;
  position: relative;
}

.corporate-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); */
}

.corporate-banner-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.corporate-image-wrapper:hover .corporate-banner-image {
  transform: scale(1.05);
}

.corporate-stats-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.corporate-stat-item {
  text-align: center;
}

.corporate-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Seção de Diferenciais */
.diferenciais-section {
  padding: 80px 0; /* Ajuste de padding vertical (70px-90px) */
  background-color: #0b0f19; /* Fundo sólido escuro que cobre o velocímetro */
  background-image: none !important; /* Forçar remoção de qualquer imagem de fundo */
  position: relative;
}

.diferenciais-section .section-title h2 {
  color: #ffffff;
}

.diferenciais-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.diferencial-card {
  background: rgba(255, 255, 255, 0.03); /* Fundo ligeiramente diferente da seção */
  border-radius: 16px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.08); /* Borda sutil de baixa opacidade */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease; /* Transição suave */
}

.diferencial-card:hover {
  transform: translateY(-4px); /* Sobe levemente */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(23, 166, 73, 0.3); /* Glow verde */
  background: rgba(255, 255, 255, 0.05);
}

.diferencial-icon {
  width: 70px;
  height: 70px;
  background: rgba(23, 166, 73, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.diferencial-card:hover .diferencial-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

.diferencial-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff; /* Legibilidade no escuro */
  margin-bottom: 15px;
}

.diferencial-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75); /* Legibilidade no escuro */
  line-height: 1.6;
  margin: 0;
}

/* Responsividade do layout novo */
@media (max-width: 992px) {
  .corporate-partnership-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .corporate-feature-item {
    text-align: left;
  }
  
  .corporate-title {
    font-size: 2.2rem;
  }
  
  .corporate-image-side {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 576px) {
  .corporate-stats-overlay {
    padding: 15px 10px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Seção de Vídeos de Marketing */
.marketing-videos-section {
  padding: 100px 0;
  background-color: #0b0f19; /* Dark premium background for cinema video feel */
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-videos-section .section-title h2 {
  color: #ffffff;
}

.marketing-videos-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.carousel-container-wrapper {
  position: relative;
  margin-top: 50px;
  padding: 0 40px;
}

.video-cards-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 5px 30px;
  scrollbar-width: none; /* Firefox */
}

.video-cards-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.video-card {
  flex: 0 0 320px; /* Width of each card */
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 
              0 0 20px rgba(16, 185, 129, 0.25);
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.video-card:hover .card-video-element {
  filter: brightness(0.85);
}

/* Video Card Overlay */
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.4) 40%, rgba(11, 15, 25, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 25px;
  z-index: 2;
  transition: background 0.4s ease;
}

.video-card:hover .video-card-overlay {
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.5) 40%, rgba(11, 15, 25, 0.2) 100%);
}

.video-badge {
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-light);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.video-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.video-card-desc {
  font-size: 0.85rem;
  color: rgba(242, 242, 242, 0.8);
  line-height: 1.5;
  margin: 0;
}

/* Play button overlay */
.play-btn-circle {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  z-index: 3;
  opacity: 0;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .play-btn-circle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-btn-circle i {
  margin-left: 4px; /* Align play triangle */
}

/* Arrow controls */
.video-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.video-control-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.video-control-btn.prev {
  left: -15px;
}

.video-control-btn.next {
  right: -15px;
}

/* Video Lightbox Modal */
.video-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-lightbox-overlay.active .video-lightbox-content {
  transform: scale(1);
}

.lightbox-video-element {
  width: 100%;
  height: 100%;
  display: block;
}

.video-lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.video-lightbox-close:hover {
  color: var(--primary-light);
}

@media (max-width: 992px) {
  .carousel-container-wrapper {
    padding: 0 10px;
  }
  .video-control-btn {
    display: none; /* Rely on touch scrolling on tablet/mobile */
  }
}

@media (max-width: 576px) {
  .marketing-videos-section {
    padding: 60px 0;
  }
  .video-card {
    flex: 0 0 280px;
    height: 380px;
  }
  .video-lightbox-close {
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
  }
}

/* Seção de Vídeos - Redes Sociais no Scroll */
.video-section-socials {
  margin-top: 60px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Background gradient orb behind socials for a premium look */
.video-section-socials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.video-socials-title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 35px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  will-change: transform, opacity;
  transition: opacity 0.1s linear;
}

.video-socials-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.video-social-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  opacity: var(--scroll-opacity, 0);
  transform: translateY(var(--scroll-translate-y, 60px)) rotate(var(--scroll-rotate, -10deg)) scale(var(--scroll-scale, 0.85));
  will-change: transform, opacity;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.1s linear, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

/* Circular icon styles */
.video-social-card .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.video-social-card .social-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.video-social-card .social-handle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

/* Hover state overrides transform with transition! */
.video-social-card:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.05) !important;
  border-color: rgba(255, 255, 255, 0.2);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.1s linear, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.video-social-card:hover .social-handle {
  color: rgba(255, 255, 255, 0.8);
}

/* Brand specific coloring and glow effects */
/* Facebook */
.video-social-card.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.4);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.2);
}
.video-social-card.facebook .icon-circle {
  color: #1877f2;
}
.video-social-card.facebook:hover .icon-circle {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

/* Instagram */
.video-social-card.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
}
.video-social-card.instagram .icon-circle {
  color: #e1306c;
}
.video-social-card.instagram:hover .icon-circle {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
}

/* WhatsApp */
.video-social-card.whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}
.video-social-card.whatsapp .icon-circle {
  color: #25d366;
}
.video-social-card.whatsapp:hover .icon-circle {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-socials-icons {
    gap: 20px;
  }
  .video-social-card {
    min-width: 100%;
  }
  .video-section-socials {
    margin-top: 40px;
    padding: 30px 15px;
  }
}

/* Correções de quebra e sobreposição de palavras (UI/UX) */
.slide-title,
.banner-inicial-title,
.corporate-title,
.section-title h2,
.section-title-paralax h2 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: keep-all; /* Não quebra palavras no meio */
  white-space: normal;
}

/* Responsividade de fontes para evitar cortes em telas pequenas */
@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-bottom p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .typewriter-word {
    white-space: normal !important; /* Permite quebrar em telas minúsculas se necessário */
  }
  
  .slide-title {
    font-size: 1.5rem !important;
  }
  
  .banner-inicial-title {
    font-size: 1.8rem !important;
  }
  
  .corporate-title {
    font-size: 1.6rem !important;
  }
}

/* Logo no Slide Principal (Hero Slider) */
.slide-logo-container {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-slide-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  .hero-slide-logo {
    max-width: 180px;
  }
  .slide-logo-container {
    margin-bottom: 15px;
  }
}

/* SSL Seal in Footer Bottom */
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ssl-seal-footer {
  height: 32px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(1) contrast(1.05);
}

.ssl-seal-footer:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-bottom-right {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
}


