* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(31, 36, 54, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo-link {
  display: inline-block;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #FBBC05;
}

.btn-planos {
  background: #FBBC05 !important;
  color: #1F2436 !important;
  padding: 1rem 2rem !important;
  border-radius: 8px !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.btn-planos:hover {
  background: #fff !important;
  color: #1F2436 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3) !important;
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-option {
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.lang-option.active {
  opacity: 1;
  background: rgba(251, 188, 5, 0.1);
}

.lang-option:hover {
  opacity: 1;
  transform: scale(1.1);
}

.flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

/* Mobile Navigation */
.mobile-nav-container {
  display: none;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #FBBC05;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #FBBC05;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #FBBC05;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(31, 36, 54, 0.98) 0%, rgba(0, 101, 189, 0.95) 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  position: relative;
}

.mobile-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #FBBC05;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-close-btn:hover {
  background: rgba(251, 188, 5, 0.2);
  transform: scale(1.1);
}

.mobile-nav-menu {
  list-style: none;
  text-align: center;
}

.mobile-nav-menu li {
  margin: 1.5rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-menu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.mobile-nav-menu a:hover {
  color: #FBBC05;
  background: rgba(251, 188, 5, 0.1);
  transform: scale(1.05);
}

.mobile-btn-planos {
  background: #FBBC05 !important;
  color: #1F2436 !important;
  padding: 1rem 2rem !important;
  border-radius: 8px !important;
  font-weight: bold !important;
  margin-top: 1rem !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.mobile-btn-planos:hover {
  background: #fff !important;
  color: #1F2436 !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3) !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-video,
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 36, 54, 0.8) 0%, rgba(0, 101, 189, 0.6) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.hero-cta {
  background: #FBBC05;
  color: #1F2436;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.hero-cta:hover {
  background: #fff;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-nav-container {
    display: block;
  }

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

  .hero-content {
    padding: 0 1rem 4rem 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Nossa História Section */
.nossa-historia {
  background: #1F2436;
  padding: 5rem 0;
  color: #fff;
}

.historia-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.historia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #FBBC05;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.historia-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.3;
}

.historia-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.nossa-missao {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.nossa-missao h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FBBC05;
  font-weight: 600;
}

.missao-list {
  list-style: none;
  padding: 0;
}

.missao-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.historia-cta {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FBBC05;
  line-height: 1.6;
  margin-top: 2rem;
}

.historia-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.historia-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.shop-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-image:hover {
  transform: scale(1.05);
}

.location-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.location-info h4 {
  font-size: 1.3rem;
  color: #FBBC05;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.address {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* Responsive Design for Nossa História */
@media (max-width: 768px) {
  .nossa-historia {
    padding: 3rem 0;
  }

  .historia-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .historia-subtitle {
    font-size: 1.5rem;
  }

  .historia-description p {
    font-size: 1rem;
  }

  .nossa-missao {
    padding: 1.5rem;
  }

  .location-info {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .historia-subtitle {
    font-size: 1.3rem;
  }

  .nossa-missao {
    padding: 1rem;
  }

  .location-info {
    padding: 1rem;
  }
}

/* Bike Elétrica Section */
.bike-eletrica {
  background: linear-gradient(135deg, #0065BD 0%, #1F2436 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bike-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bike-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 70vh;
}

.bike-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 500px;
}

.bike-showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(31, 36, 54, 0.2) 0%, rgba(251, 188, 5, 0.1) 100%);
  pointer-events: none;
}

.bike-info {
  padding: 2rem 0;
}

.bike-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.3;
}

.bike-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.bike-features {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.bike-features h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FBBC05;
  font-weight: 600;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.bike-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-rental,
.btn-purchase {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-rental {
  background: #FBBC05;
  color: #1F2436;
}

.btn-rental:hover {
  background: #fff;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

.btn-purchase {
  background: transparent;
  color: #FBBC05;
  border: 2px solid #FBBC05;
}

.btn-purchase:hover {
  background: #FBBC05;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

/* Responsive Design for Bike Elétrica */
@media (max-width: 768px) {
  .bike-eletrica {
    padding: 3rem 0;
  }

  .bike-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bike-video {
    height: 300px;
    order: -1;
  }

  .bike-subtitle {
    font-size: 1.5rem;
  }

  .bike-description p {
    font-size: 1rem;
  }

  .bike-features {
    padding: 1.5rem;
  }

  .bike-cta-buttons {
    flex-direction: column;
  }

  .btn-rental,
  .btn-purchase {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .bike-video {
    height: 250px;
  }

  .bike-subtitle {
    font-size: 1.3rem;
  }

  .bike-features {
    padding: 1rem;
  }
}

/* Video Audio Toggle */
.video-audio-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(31, 36, 54, 0.8);
  border: 2px solid #FBBC05;
  color: #FBBC05;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.video-audio-toggle:hover {
  background: rgba(251, 188, 5, 0.2);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(251, 188, 5, 0.3);
}

.video-audio-toggle.active {
  background: rgba(251, 188, 5, 0.9);
  color: #1F2436;
}

.bike-audio-toggle {
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  font-size: 1.1rem;
}

/* Responsive adjustments for audio toggle */
@media (max-width: 768px) {
  .video-audio-toggle {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    bottom: 15px;
    right: 15px;
  }

  .bike-audio-toggle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 10px;
    right: 10px;
  }
}

/* Serviços Section */
.servicos {
  background: #1F2436;
  padding: 6rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('ebikes-institucional/servicos.webp') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.servicos::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 36, 54, 0.95) 0%, rgba(31, 36, 54, 0.9) 100%);
  z-index: 1;
}

.servicos-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.servicos .section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: bold;
  color: #FBBC05;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(251, 188, 5, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FBBC05 0%, #0065BD 50%, #FBBC05 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

.service-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #FBBC05 0%, #fff 20%, #FBBC05 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  box-shadow: 0 15px 35px rgba(251, 188, 5, 0.3);
  position: relative;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 20px 40px rgba(251, 188, 5, 0.5);
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(45deg, #FBBC05, transparent, #FBBC05);
  border-radius: 23px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
  opacity: 0.6;
}

.service-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FBBC05;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.service-body {
  padding: 0 2rem 2.5rem;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-align: left;
}

.service-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: #FBBC05;
  color: #1F2436;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.service-btn:hover {
  background: #fff;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

/* Responsive Design for Serviços */
@media (max-width: 768px) {
  .servicos {
    padding: 4rem 0;
  }

  .servicos .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .service-header {
    padding: 2rem 1.5rem 1rem;
  }

  .service-body {
    padding: 0 1.5rem 2rem;
  }

  .service-icon {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-subtitle {
    font-size: 1.1rem;
  }

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

  .service-btn {
    padding: 0.9rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .servicos {
    padding: 3rem 0;
  }

  .servicos .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-header {
    padding: 1.5rem 1rem 0.5rem;
  }

  .service-body {
    padding: 0 1rem 1.5rem;
  }

  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 1.8rem;
    border-radius: 16px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .service-btn {
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 12px;
  }
}

/* Cycle to Work Section */
.cycle-to-work {
  background: linear-gradient(135deg, #0065BD 0%, #1F2436 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cycle-to-work::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(251, 188, 5, 0.1) 0%, transparent 50%, rgba(251, 188, 5, 0.1) 100%);
  z-index: 1;
}

.cycle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cycle-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cycle-text {
  padding: 2rem 0;
}

.cycle-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.3;
}

.cycle-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cycle-benefits {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.cycle-benefits h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FBBC05;
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.cycle-cta {
  margin-top: 2rem;
}

.btn-cycle-work {
  background: #FBBC05;
  color: #1F2436;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-cycle-work:hover {
  background: #fff;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

.cycle-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cycle-bike-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 400px;
  width: 100%;
  max-width: 500px;
}

.bike-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.bike-image:hover {
  transform: scale(1.05);
}

.cycle-badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FBBC05 0%, #fff 100%);
  color: #1F2436;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(251, 188, 5, 0.4);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cycle-bike-image:hover .cycle-badge-overlay {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(251, 188, 5, 0.6);
}

.discount-percent {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.discount-text {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Responsive Design for Cycle to Work */
@media (max-width: 768px) {
  .cycle-to-work {
    padding: 3rem 0;
  }

  .cycle-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cycle-subtitle {
    font-size: 1.5rem;
  }

  .cycle-description p {
    font-size: 1rem;
  }

  .cycle-benefits {
    padding: 1.5rem;
  }

  .cycle-bike-image {
    height: 300px;
  }

  .cycle-badge-overlay {
    padding: 1rem;
    top: 15px;
    right: 15px;
  }

  .discount-percent {
    font-size: 2rem;
  }

  .discount-text {
    font-size: 0.9rem;
  }

  .btn-cycle-work {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cycle-benefits {
    padding: 1rem;
  }

  .cycle-bike-image {
    height: 250px;
  }

  .cycle-badge-overlay {
    padding: 0.8rem;
    top: 10px;
    right: 10px;
  }

  .discount-percent {
    font-size: 1.5rem;
  }

  .discount-text {
    font-size: 0.8rem;
  }
}

/* Produtos Section */
.produtos {
  background: linear-gradient(135deg, #1F2436 0%, #0065BD 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.produtos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(251, 188, 5, 0.05) 0%, transparent 50%, rgba(251, 188, 5, 0.05) 100%);
  z-index: 1;
}

.produtos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.produtos .section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: bold;
  color: #FBBC05;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.produtos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.produtos-text {
  padding: 2rem 0;
}

.produtos-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}

.produtos-quality {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #FBBC05;
  line-height: 1.3;
}

.produtos-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.produtos-features {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.produtos-features h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FBBC05;
  font-weight: 600;
}

.produtos-list {
  list-style: none;
  padding: 0;
}

.produtos-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.produtos-store-info {
  background: rgba(251, 188, 5, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(251, 188, 5, 0.4);
  text-align: center;
}

.produtos-store-info h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FBBC05;
  font-weight: 600;
}

.store-url {
  font-size: 1.4rem;
  font-weight: bold;
  color: #FBBC05;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.store-status {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 0;
}

.produtos-cta {
  margin-top: 2rem;
}

.btn-produtos-contact {
  background: #FBBC05;
  color: #1F2436;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.btn-produtos-contact:hover {
  background: #fff;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

.produtos-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.produtos-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 350px;
}

.produtos-showcase {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.produtos-showcase:hover {
  transform: scale(1.05);
}

.produtos-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  border-color: rgba(251, 188, 5, 0.5);
}

.highlight-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FBBC05 0%, #fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(251, 188, 5, 0.3);
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

/* Responsive Design for Produtos */
@media (max-width: 768px) {
  .produtos {
    padding: 3rem 0;
  }

  .produtos .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .produtos-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .produtos-subtitle {
    font-size: 1.5rem;
  }

  .produtos-quality {
    font-size: 1.3rem;
  }

  .produtos-description p {
    font-size: 1rem;
  }

  .produtos-features {
    padding: 1.5rem;
  }

  .produtos-store-info {
    padding: 1.5rem;
  }

  .produtos-image {
    height: 300px;
  }

  .highlight-item {
    padding: 1rem;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .highlight-text {
    font-size: 1.1rem;
  }

  .btn-produtos-contact {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .produtos {
    padding: 2.5rem 0;
  }

  .produtos .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .produtos-subtitle {
    font-size: 1.3rem;
  }

  .produtos-quality {
    font-size: 1.1rem;
  }

  .produtos-features {
    padding: 1rem;
  }

  .produtos-store-info {
    padding: 1rem;
  }

  .produtos-image {
    height: 250px;
  }

  .highlight-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .highlight-text {
    font-size: 1rem;
  }

  .store-url {
    font-size: 1.2rem;
  }
}

/* Popup Modal Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: linear-gradient(135deg, #1F2436 0%, #0065BD 100%);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(251, 188, 5, 0.3);
}

.popup-overlay.active .popup-modal {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #FBBC05;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(251, 188, 5, 0.2);
  transform: scale(1.1);
}

.popup-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FBBC05;
  margin-bottom: 1rem;
  text-align: center;
}

.popup-message {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.popup-store-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.popup-store-info h4 {
  font-size: 1.3rem;
  color: #FBBC05;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.popup-store-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.popup-btn-whatsapp,
.popup-btn-close {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.popup-btn-whatsapp {
  background: #25D366;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup-btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.popup-btn-close {
  background: transparent;
  color: #FBBC05;
  border: 2px solid #FBBC05;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup-btn-close:hover {
  background: #FBBC05;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
  .popup-modal {
    padding: 1.5rem;
    margin: 1rem;
  }

  .popup-title {
    font-size: 1.5rem;
  }

  .popup-store-info {
    padding: 1rem;
  }

  .popup-buttons {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .popup-buttons {
    flex-direction: column;
  }

  .popup-btn-whatsapp,
  .popup-btn-close {
    width: 100%;
  }
}

/* Fale Conosco Section */
.fale-conosco {
  background: linear-gradient(135deg, #1F2436 0%, #0065BD 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fale-conosco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(251, 188, 5, 0.05) 0%, transparent 50%, rgba(251, 188, 5, 0.05) 100%);
  z-index: 1;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.fale-conosco .section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: bold;
  color: #FBBC05;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contato-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 300px;
}

.contato-showcase {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.contato-showcase:hover {
  transform: scale(1.05);
}

.contato-dados {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.contato-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #FBBC05;
  text-align: center;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contato-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  border-color: rgba(251, 188, 5, 0.3);
}

.contato-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FBBC05 0%, #fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(251, 188, 5, 0.3);
}

.contato-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FBBC05;
  margin-bottom: 0.5rem;
}

.contato-details p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.4;
}

.contato-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contato-link:hover {
  color: #FBBC05;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  color: #FBBC05;
  background: rgba(251, 188, 5, 0.1);
  transform: scale(1.05);
}

.social-icon {
  font-size: 1.2rem;
}

.contato-form-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 188, 5, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #FBBC05;
  text-align: center;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FBBC05;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(251, 188, 5, 0.2);
}

.form-group select option {
  background: #1F2436;
  color: #fff;
}

.captcha-group {
  background: rgba(251, 188, 5, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid rgba(251, 188, 5, 0.3);
}

.captcha-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.captcha-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #FBBC05;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
}

.captcha-group input {
  max-width: 120px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.btn-enviar {
  background: #FBBC05;
  color: #1F2436;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

.btn-enviar:hover {
  background: #fff;
  color: #1F2436;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 188, 5, 0.3);
}

.btn-enviar:disabled {
  background: rgba(251, 188, 5, 0.5);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success/Error Messages */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.2);
  border: 2px solid rgba(76, 175, 80, 0.5);
  color: #4CAF50;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  border: 2px solid rgba(244, 67, 54, 0.5);
  color: #f44336;
}

/* Responsive Design for Fale Conosco */
@media (max-width: 768px) {
  .fale-conosco {
    padding: 3rem 0;
  }

  .fale-conosco .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .contato-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contato-image {
    height: 250px;
  }

  .contato-dados {
    padding: 1.5rem;
  }

  .contato-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contato-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .social-links {
    flex-direction: row;
    justify-content: center;
  }

  .contato-form-container {
    padding: 2rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .captcha-group input {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .fale-conosco {
    padding: 2.5rem 0;
  }

  .fale-conosco .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .contato-dados {
    padding: 1rem;
  }

  .contato-form-container {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .social-links {
    flex-direction: column;
  }

  .captcha-group {
    padding: 1rem;
  }
}

/* Footer Styles */
.footer {
  background: #000000;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 0;
  border-top: 3px solid #FBBC05;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer-logo-img {
  height: 45px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-footer-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-footer-link:hover {
  background: #FBBC05;
  color: #000;
  border-color: #FBBC05;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(251, 188, 5, 0.3);
}

.social-footer-icon {
  font-size: 1.2rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FBBC05;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-links a:hover {
  color: #FBBC05;
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #FBBC05;
}

.footer-payment {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FBBC05;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.payment-card {
  background: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.payment-logo {
  max-height: 30px;
  max-width: 60px;
  width: auto;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-developer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-developer p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.developer-link {
  color: #FBBC05;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  background: rgba(251, 188, 5, 0.1);
  border: 1px solid rgba(251, 188, 5, 0.3);
}

.developer-link:hover {
  background: #FBBC05;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(251, 188, 5, 0.3);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-payment {
    padding: 1.5rem;
  }

  .payment-methods {
    gap: 1rem;
  }

  .payment-card {
    min-width: 70px;
    height: 45px;
    padding: 0.6rem 1rem;
  }

  .payment-logo {
    max-height: 25px;
    max-width: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-developer {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-payment {
    padding: 1rem;
  }

  .payment-methods {
    gap: 0.8rem;
  }

  .payment-card {
    min-width: 60px;
    height: 40px;
    padding: 0.5rem 0.8rem;
  }

  .payment-logo {
    max-height: 20px;
    max-width: 45px;
  }

  .footer-copyright p,
  .footer-developer p {
    font-size: 0.9rem;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1F2436 0%, #0065BD 100%);
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 10000;
  border-top: 3px solid #FBBC05;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text h4 {
  font-size: 1.3rem;
  color: #FBBC05;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background: #FBBC05;
  color: #1F2436;
}

.cookie-btn-accept:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 188, 5, 0.3);
}

.cookie-btn-reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-btn-reject:hover {
  background: #fff;
  color: #1F2436;
  transform: translateY(-2px);
}

.cookie-btn-settings {
  background: transparent;
  color: #FBBC05;
  border: 2px solid #FBBC05;
}

.cookie-btn-settings:hover {
  background: #FBBC05;
  color: #1F2436;
  transform: translateY(-2px);
}

.cookie-btn-secondary {
  background: transparent;
  color: #FBBC05;
  border: 2px solid #FBBC05;
}

.cookie-btn-secondary:hover {
  background: #FBBC05;
  color: #1F2436;
}

/* Cookie Settings Modal */
.cookie-modal-overlay,
.cookie-policy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal-overlay.show,
.cookie-policy-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal,
.cookie-policy-modal {
  background: linear-gradient(135deg, #1F2436 0%, #0065BD 100%);
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(251, 188, 5, 0.3);
}

.cookie-policy-modal {
  max-width: 800px;
}

.cookie-modal-overlay.show .cookie-modal,
.cookie-policy-overlay.show .cookie-policy-modal {
  transform: scale(1);
}

.cookie-modal-header,
.cookie-policy-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3,
.cookie-policy-header h3 {
  font-size: 1.5rem;
  color: #FBBC05;
  margin: 0;
  font-weight: 600;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: #FBBC05;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(251, 188, 5, 0.2);
  transform: scale(1.1);
}

.cookie-modal-content,
.cookie-policy-content {
  padding: 1.5rem 2rem;
}

.cookie-category {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category h4 {
  font-size: 1.2rem;
  color: #FBBC05;
  margin: 0;
  font-weight: 600;
}

.cookie-category p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.4s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #FBBC05;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 1rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cookie Policy Content */
.policy-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h4 {
  font-size: 1.3rem;
  color: #FBBC05;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-section li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-section li:before {
  content: "•";
  color: #FBBC05;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-btn {
    width: 100%;
    padding: 0.75rem;
  }

  .cookie-modal,
  .cookie-policy-modal {
    margin: 1rem;
    max-height: 90vh;
  }

  .cookie-modal-header,
  .cookie-policy-header {
    padding: 1.5rem 1rem 1rem;
  }

  .cookie-modal-content,
  .cookie-policy-content {
    padding: 1rem;
  }

  .cookie-category {
    padding: 1rem;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-modal-footer {
    padding: 1rem;
    flex-direction: column;
  }

  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-text h4 {
    font-size: 1.1rem;
  }

  .cookie-text p {
    font-size: 0.9rem;
  }

  .cookie-btn {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

  .cookie-modal-header h3,
  .cookie-policy-header h3 {
    font-size: 1.3rem;
  }
}

/* Color Palette Variables (for future use) */
:root {
  --primary-dark: #1F2436;
  --primary-yellow: #FBBC05;
  --primary-blue: #0065BD;
  --white: #ffffff;
}