:root {
  --color-primary: #ff6b00;
  --color-secondary: #ff8533;
  --color-dark: #1a1a1a;
  --color-light: #ffffff;
  --color-gray: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* Rolagem suave nativa */
  scroll-padding-top: 80px; /* Espaço para o header fixo */
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--color-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}



/* Header Styles */
.header {
  background-color: black;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.header-scrolled .top-bar {
  padding: 0.3rem 0;
}



.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header-scrolled .header-content {
  padding: 0.8rem 0;
}

.header-scrolled .logo-img {
  /* Removed white background and padding to eliminate border */
}

.logo {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.logo-img{
height: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-list button,
.nav-list a {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-list button::after,
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-list button:hover,
.nav-list a:hover {
  color: var(--color-primary);
}

.nav-list button:hover::after,
.nav-list a:hover::after {
  width: 100%;
}

/* Blog Link Special Styling */
.blog-link {
  background: var(--color-primary) !important;
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 10px rgba(245, 128, 23, 0.3) !important;
  transition: all 0.3s ease !important;
}

.blog-link:hover {
  background: var(--color-secondary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(245, 128, 23, 0.4) !important;
}

.blog-link::after {
  display: none !important;
  color: white !important;
}


.hero {
  position: relative;
  overflow: hidden;
  height: 100vh; /* Ocupa 100% da altura da tela */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Cor do texto */
  text-align: center; /* Centraliza o texto */
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cobre toda a área sem distorcer */
  z-index: 1; /* Coloca o vídeo atrás do conteúdo */
}

.hero-content {
  position: relative;
  z-index: 2; /* Garante que o conteúdo fique acima do vídeo */
  display: block;
  width: 100%;
}

.container {
  max-width: 1200px; /* Largura máxima do conteúdo */
  margin: 0 auto; /* Centraliza o conteúdo */
  padding: 0 20px; /* Espaçamento lateral */
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Partners Section Enhanced */
.partners {
  padding: 3rem 0;
  background-color: #FFFFFF;
}
/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.Scene{
  text-align: center;
  margin-bottom: 3rem;
  font-size: 40px;
}

.detalhes{
  color: #666;
  font-size: 1.1rem;
  text-align: center;
  padding: 0;
  margin-top: 0;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
}



.partner-card {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}



.partner-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-image {
  width: 220px;
  height: 150px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 3px solid var(--color-gray);
  transition: all 0.3s ease;
  background-color: #b6b9bd;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  background-color: #b6b9bd;
}





.partner-card p {
  color: #666;
  font-size: 0.9rem;
  height: 30px;
  width: 44px;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background: linear-gradient(135deg,
    rgba(255, 245, 235, 0.4) 0%,
    rgba(255, 250, 245, 0.3) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 250, 240, 0.3) 75%,
    rgba(255, 245, 230, 0.4) 100%
  );
  position: relative;
}

/* Carousel */
/* Partners Carousel - Modern Auto-Scroll */
.partners-carousel {
  overflow: hidden;
  padding: 2rem 0;
  background: #ffffff;
  border-radius: 16px;
  margin: 2rem 0;
  position: relative;
}

.partners-carousel::before,
.partners-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
}

.partners-carousel::after {
  right: 0;
}

.partners-track {
  display: flex;
  animation: scroll-infinite 30s linear infinite;
  width: calc(200px * 14);
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}


.product-card {
  flex: 1;
  background: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  height: 150px;
  width: 100px;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.partner-slide {
  flex: 0 0 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.partner-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 128, 23, 0.1), transparent);
  transition: left 0.5s;
}

.partner-slide:hover::before {
  left: 100%;
}

.partner-slide:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 128, 23, 0.25);
  border-color: #F58017;
}

.partner-slide img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.8);
  transition: all 0.3s ease;
}

.partner-slide:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Partners Carousel */
@media (max-width: 768px) {
  .partners-carousel::before,
  .partners-carousel::after {
    width: 50px;
  }
  
  .partner-slide {
    flex: 0 0 150px;
    height: 100px;
    margin: 0 15px;
  }
  
  .partner-slide img {
    max-width: 120px;
    max-height: 60px;
  }
  
  .partners-track {
    animation-duration: 25s;
    width: calc(180px * 14);
  }
}

@media (max-width: 480px) {
  .partners-carousel {
    margin: 1rem 0;
    padding: 1.5rem 0;
  }
  
  .partner-slide {
    flex: 0 0 120px;
    height: 80px;
    margin: 0 10px;
  }
  
  .partner-slide img {
    max-width: 100px;
    max-height: 50px;
  }
  
  .partners-track {
    animation-duration: 20s;
    width: calc(140px * 14);
  }
}






.product-content {
  padding: 1.45rem;
  width: 333px ;
  width: 220px;
  height: 35px;
  margin: 0 auto 1.5rem;
}

.product-content h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--color-primary);
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--color-light);
}

.about-content {
  display: grid;
  gap: 4rem;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--color-gray);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card svg {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section Refined */
.contact {
  padding: 5rem 0;
  background-color: #FFFFFF;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-light);
  padding: 3rem;
  border-radius: 12px;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h3 {
  color: var(--color-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #444;
}

.contact-form {
  width: 100%;
  background: var(--color-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 128, 23, 0.1);
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(245, 128, 23, 0.35);
  border-radius: 8px;
  background-color: var(--color-light);
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(245, 128, 23, 0.6);
  box-shadow: 0 4px 8px rgba(245, 128, 23, 0.05);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 128, 23, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}


.btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-light);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 128, 23, 0.3);
  position: relative;
  overflow: hidden;
}

.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;
}

.btn:hover::before {
  left: 100%;
}

.btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.btn:hover {
  background: linear-gradient(135deg, #e55a00, var(--color-primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 128, 23, 0.4);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 128, 23, 0.3);
}


.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #F58017;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #b35100;
}


/* Footer Styles */
.site-footer {
  background-color: black;
  color: #ccc;
  padding: 2.5rem 0 0;
  margin-top: auto;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;
}

.footer-container {
  width: 100%;
  margin: 0;
  padding: 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  width: 100%;
}

.footer-section h3,
.footer-section h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section h3 {
  font-size: 1.4rem;
}

.footer-section h4 {
  font-size: 1.1rem;
}

/* Company Info */
.company-info .company-details p {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

/* Navigation Links */
.navigation-links ul {
  list-style: none;
  padding: 0;
}

.navigation-links ul li {
  margin-bottom: 0.5rem;
}

.navigation-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navigation-links ul li a:hover {
  color: var(--color-primary);
}

/* Contact Info */
.contact-items p {
  margin-bottom: 0.8rem;
}

.contact-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-link:hover {
  color: var(--color-primary);
}

.whatsapp-link:hover {
  color: #25d366;
}


/* Map Section */
.footer-map-section {
  margin-bottom: 2rem;
}

.footer-map-section h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

/* Footer Bottom */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  width: 100%;
}

/* Social Media */
.social-media h4 {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: #ccc;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* Legal Links */
.legal-text p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.policy-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.legal-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--color-primary);
}

.separator {
  color: #666;
  font-size: 0.8rem;
}

/* Security Badges */
.security-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.badge {
  background-color: #333;
  color: #ccc;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ssl-badge {
  background-color: #28a745;
  color: white;
}

.security-badge {
  background-color: #007bff;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  
  .policy-links {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .security-badges {
    justify-content: center;
  }

  .site-footer {
    padding: 2rem 0 0rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 1rem;
  }

  .footer-main {
    gap: 1.5rem;
  }

  .footer-bottom {
    gap: 1.5rem;
  }
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  max-width: 600px;
  height: 295px;
  width: 515px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 200px;
  }
}








@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {

  /* Overlay para fechar menu ao clicar fora */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .carousel-slide {
    flex-direction: column;
  }
  
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .contact-info {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
} 

/* Adiciona o efeito parallax nas seções */
.hero, .partners, .products, .about, .contact {
  position: relative;
  overflow: hidden;
}

.hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
}



/* Outras seções com efeito de parallax */
.partners {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.products {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.about {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.contact {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}


.hero {
  background-image: url('../videos/videoplayback.mp4');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
}


.video-background {
position: absolute;
top: 0;
left: 0;
width: 220%;
height: 120%;
object-fit: cover;
filter: blur(2px); /* Aplica o desfoque apenas ao vídeo */
z-index: -1; /* Garante que o vídeo fique atrás do conteúdo */
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
}

/* Seção de Produtos */
.products {
  padding: 20px 0;
}

.products .carousel {
  display: flex;
  flex-wrap: wrap; /* Permite que os itens se ajustem em várias linhas */
  justify-content: space-around; /* Alinha os itens com espaçamento igual */
}

.products .carousel .carousel-item {
  flex: 0 0 30%; /* Largura fixa para cada item, podendo se ajustar */
  margin-bottom: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease;
}

.products .carousel .carousel-item img {
  max-width: 100%; /* Garante que a imagem não ultrapasse o tamanho do container */
  height: auto; /* Mantém a proporção da imagem */
}

/* Ajustes para telas menores */
@media (max-width: 1024px) {
  .products .carousel .carousel-item {
    flex: 0 0 45%; /* Em telas menores que 1024px, cada item ocupa 45% da largura */
  }
}

@media (max-width: 768px) {
  .products .carousel .carousel-item {
    flex: 0 0 100%; /* Em telas menores que 768px, cada item ocupa 100% da largura */
  }
}

/* Carrossel Responsivo */
.carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.carousel .carousel-item {
  flex: 0 0 auto; /* Mantém o tamanho fixo do item */
  width: 300px; /* Tamanho fixo para cada item */
  margin: 0 15px; /* Espaço entre os itens */
}

@media (max-width: 1024px) {
  .carousel .carousel-item {
    width: 200px; /* Menor largura para telas menores */
  }
}

@media (max-width: 768px) {
  .carousel .carousel-item {
    width: 100%; /* Ocupa 100% da largura em telas pequenas */
  }
}

/* Imagens dos Produtos */
.products .carousel .carousel-item img {
width: 100%;
height: auto;
object-fit: cover; /* Faz com que as imagens cubram o espaço sem distorcer */
}





/* Seção de Contato */
.contact-wrapper {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 20px 5;
}

.contact-info,
.contact-form {
flex: 1;
margin-right: 20px;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
.contact-wrapper {
  flex-direction: column;
  padding: 1rem;
  gap: 2rem;
}

.contact-info {
  padding-right: 0;
  border-right: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.contact-form {
  padding: 1.5rem;
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  font-size: 16px; /* Evita zoom no iOS */
}

.btn {
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  width: 100%;
  justify-content: center;
}
}


/* Ajustes gerais para dispositivos móveis */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 15px;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
  .header-content {
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}

/* ========================================
   LANGUAGE SWITCHER - DROPDOWN
   ======================================== */
.language-switcher-dropdown {
  position: relative;
  margin-left: 1rem;
}

.lang-toggle {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 8px;
  width: 52px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: white;
}

.lang-toggle:hover {
  border-color: var(--color-primary);
  background: rgba(245, 128, 23, 0.1);
}

.lang-toggle svg {
  width: 40px;
  height: 28px;
}

.lang-toggle .current-flag {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle .current-flag svg {
  width: 40px;
  height: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Dropdown Menu */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Language Options */
.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: white;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-size: 1rem;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: #f8f8f8;
}

.lang-option.active {
  background: rgba(245, 128, 23, 0.1);
  color: var(--color-primary);
  font-weight: 600;
}

.lang-option .flag {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-option .flag svg {
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.lang-option .lang-name {
  flex: 1;
  color: var(--color-dark);
}

.lang-option.active .lang-name {
  color: var(--color-primary);
}

/* Responsive - Language Switcher Mobile */
@media (max-width: 768px) {
  .language-switcher-dropdown {
    position: fixed;
    bottom: 95px;
    right: 20px;
    z-index: 1001;
    margin-left: 0;
  }

  .lang-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lang-toggle .current-flag svg {
    width: 40px !important;
    height: 28px !important;
    border-radius: 4px;
  }

  .lang-toggle:hover {
    background: #2a2a2a;
    transform: scale(1.1);
  }

  .lang-dropdown {
    bottom: 75px;
    right: 0;
    top: auto;
    max-height: 400px;
    overflow-y: auto;
  }
}

/* ========================================
   ENHANCED FEATURES - NEW STYLES
   ======================================== */

/* SCROLL ANIMATIONS */
.fade-in-element {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* DEMOS REMOVIDAS - Design melhorado dos produtos abaixo */

/* ========================================
   PRODUTO CARDS - GLASSMORPHISM PROFISSIONAL
   ======================================== */

.partner-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(245, 128, 23, 0.15);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Efeito de borda gradiente animada - REMOVIDO */

/* Efeito de brilho no hover - REMOVIDO */

.partner-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 48px rgba(245, 128, 23, 0.2);
  border-color: rgba(245, 128, 23, 0.3);
}

.partner-image {
  width: 100%;
  height: 280px;
  margin: 0 auto 2rem;
  overflow: visible;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(245, 128, 23, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

/* Efeito de glow suave na imagem */
.partner-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(245, 128, 23, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
  pointer-events: none;
}

.partner-card:hover .partner-image::before {
  opacity: 1;
}

.partner-card:hover .partner-image {
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.08));
  position: relative;
  z-index: 1;
}

/* Aumentar tamanho específico do Ringlight e Spotlight */
.partner-image img[src*="Ringlight"],
.partner-image img[src*="SpotLight"] {
  transform: scale(1.8);
  width: 100% !important;
  height: 100% !important;
}

.partner-card:hover .partner-image img {
  filter: drop-shadow(0 8px 24px rgba(245, 128, 23, 0.25));
}

.partner-card:hover .partner-image img[src*="Ringlight"],
.partner-card:hover .partner-image img[src*="SpotLight"] {
  transform: scale(1.8);
}

.partner-card h3 {
  color: var(--color-dark);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.partner-card .download-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 1rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 6px 20px rgba(245, 128, 23, 0.25);
  margin-top: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Efeito shimmer no botão */
.partner-card .download-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;
}

.partner-card .download-btn:hover::before {
  left: 100%;
}

.partner-card .download-btn::after {
  content: '→';
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.partner-card .download-btn:hover {
  background: linear-gradient(135deg, #e55a00, var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 128, 23, 0.4);
}

.partner-card .download-btn:hover::after {
  transform: translateX(4px);
}

/* Botão "Veja Mais" diferenciado */
.partner-card a[href*="products"].download-btn {
  background: linear-gradient(135deg, #1a1a1a, #333);
  margin-bottom: 0.5rem;
}

.partner-card a[href*="products"].download-btn:hover {
  background: linear-gradient(135deg, #333, #4a4a4a);
}

/* Grid responsivo melhorado */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partner-card {
    padding: 2rem;
  }

  .partner-image {
    height: 220px;
  }
}

/* DARK MODE REMOVIDO CONFORME SOLICITADO */

/* RIPPLE EFFECT */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* SHAKE ANIMATION */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.5s;
  border-color: #ff0000 !important;
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 0;
  background-color: var(--color-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* ENHANCED BUTTON STYLES */
.btn, .download-btn, .demo-btn {
  position: relative;
  overflow: hidden;
}

/* PRODUCT CARDS - Animações de imagem removidas */
.partner-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-card:hover .partner-image img {
  /* Animação removida conforme solicitado */
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .demo-modal {
    padding: 1.5rem;
  }

  .demo-preview {
    height: 200px;
  }

  .dark-mode-toggle {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 15px;
    font-size: 1.5rem;
  }

  .color-options {
    justify-content: center;
  }

  .color-btn {
    width: 40px;
    height: 40px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }
}

/* ========================================
   RESPONSIVIDADE COMPLETA - MOBILE FIRST
   ======================================== */

/* Tablets e dispositivos médios (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Smartphones (até 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .products {
    padding: 3rem 0;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partner-card {
    padding: 1.5rem;
  }

  .partner-image {
    height: 200px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Smartphones pequenos (até 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .partner-card {
    padding: 1.2rem;
  }

  .partner-image {
    height: 180px;
  }

  .partner-card h3 {
    font-size: 1.1rem;
  }

  .btn, .download-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .lang-toggle {
    width: 50px;
    height: 50px;
  }
}

/* Telas muito pequenas (até 360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .section-title h2 {
    font-size: 1.3rem;
  }

  .partner-card {
    padding: 1rem;
  }

  .partner-image {
    height: 150px;
  }
}
