@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: #f2f2f2;
  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;
  /* padding: 0 40px; */
}

.logo {
  flex-shrink: 0;
  padding: 5px;
}

.logo img {
  height: 45px;
  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 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.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: 2px solid #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: #f2f2f2;
  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-container {
  margin-top: 60px;
  position: relative;
  height: 650px;
  overflow: hidden;
  animation: slideInFromTop 1s ease-out;
}

.marcas {
    display: flex;
    animation: slideInFromTop 1s ease-out;
    overflow-x: hidden;
}
.marcas-primary-container img{
    height: 40px;
    animation: marcasSlide 20s linear infinite;
    
}
@keyframes marcasSlide {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.slide:hover .slide-image {
  transform: scale(1.08);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.6),
    transparent
  );
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #f2f2f2;
  animation: slideInFromLeft 1s ease-out 0.7s both;
}

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

.slide-description {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--gray-light);
  animation: slideInFromLeft 1s ease-out 0.9s both;
}

.catalogs-showcase {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.catalog-item {
  transition: var(--transition);
}

.catalog-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.catalogo {
  transition: var(--transition);
}

.catalogo:hover {
  box-shadow: 0 0 30px 5px #f2f2f2;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-container:hover .slider-controls {
  opacity: 1;
}

.control-btn {
  background: #cccccc09;
  color: white;
  width: 55px;
  border: none;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: #cccccc46;
  transform: scale(1.2);
  box-shadow: 0 10px 30px rgba(226, 236, 233, 0.5);
  border-color: var(--primary-light);
}

.control-btn:active {
  transform: scale(1.05);
}

.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 10;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.863);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.indicator:hover {
  transform: scale(1.4);
  background: rgba(180, 180, 180, 0.644);
  border: none;
}

.indicator.active {
  background: #f2f2f2;
  transform: scale(1.5);
}
.backgrund .container-fluid{
  z-index: 1;
  padding: 40px 10%;
  background: rgba(27, 27, 27, 0.3);
  backdrop-filter: blur(8px);
}
/* Seções */
.categories-section,
.partners-section {
  padding: 100px 0;
  position: relative;
}
.partners-section {
  backdrop-filter: blur(12px);
  background-color: transparent;
  color: white;
}

/* Ajustes adicionais de mobile para reduzir aglomeração do slider */
@media (max-width: 768px) {
  .catalogs-showcase {
    gap: 8px;
  }
  .control-btn {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .header-title {
    padding: 4px 16px;
  }
}

@media (max-width: 480px) {
  .slide-overlay {
    padding: 1.25rem;
  }
  .slide-description {
    font-size: 0.95rem;
  }
  .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 {
  color: white;
  background-color: transparent;
  backdrop-filter: blur(8px);
  padding: 70px 0;
}
.category-content h3 {
  color: #f2f2ff;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
  
}
.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;
  transition: var(--transition);
  position: relative;
  border-bottom: 1px solid #ccc;
}

.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;
  transition: var(--transition);
  position: relative;
  border-bottom: 1px solid #ccc;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(99, 99, 99, 0.116) 50%,
    transparent 70%
  );
  transition: left 0.6s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  border-radius: 8px;
  transform: translateY(-15px) scale(1.02);
}

.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 {
  backdrop-filter: blur(10px);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-bottom: #ccc;
  min-height: 120px;
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.05);
}

.partner-card img {
  max-width: 50%;
  height: auto;
  filter: grayscale(100%) brightness(0.8);
  transition: var(--transition);
}

.partner-card:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Work With Us */
.work-with-us {
  color: white;
  background: #17a649;
  backdrop-filter: blur(8px);
  padding: 40px 0;
}
.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;
  right: 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);
}

/* 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: #252525;
  padding: 70px 0 30px;
  border-top: 2px solid rgba(16, 185, 129, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #f2f2f2;
}

.footer-column p {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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

.footer-links a,
.footer-links li {
  color: var(--gray-light);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--primary-light);
  transition: .3s;
  transform: translateX(5px);
}
.footer-links a::before {
  content: "";
  transition: 0.3s linear;
  width: 0px;
}
.footer-links a:hover::before {
  height: 1px;
  background: var(--primary-light);
  transition: 0.3s linear;
  width: 20px;
}

.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: center;
  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;
}

.footer-bottom p {
  color: var(--gray-light);
  margin: 0;
}

.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: 1024px) {
  .header-content {
    padding: 0 30px;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .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-container {
    height: 550px;
    margin-top: 85px;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-description {
    font-size: 1rem;
  }

  .slide-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .catalogs-showcase {
    width: 100%;
  }

  .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;
    right: 25px;
  }

  #scrollTopButton {
    width: 50px;
    height: 50px;
    bottom: 100px;
    right: 25px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 500px;
    margin-top: 80px;
  }

  .slide-title {
    font-size: 1.75rem;
  }

  .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;
}
