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

    body {
      font-family: 'Lausanne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 300;
      letter-spacing: 0.02em;
      line-height: 1.5;
      background-color: #ffffff;
      color: #000000;
      font-style: normal;
      base-text-font-size: 13px;
    }

    /* Header */
     .header {
      font-family: 'Lausanne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 300;
      position: fixed;
      top: 0;
      width: 100%;
      background-color: transparent;
      z-index: 1000;
      padding: 0 10px;
      text-color: #ffffff;
    }
   
.mobile-only {
  display: none;
}
 .nav-container {
      font-family: 'Lausanne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 300;
      letter-spacing: 0.02em;
      line-height: 1.5;
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;     
      text-color: #ffffff;
}
 .nav-container a{
     list-style: none;
}

h1, h2, h3 {
  font-family: 'Lausanne', sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
}

    .logo {
       font-size: 13px;
      font-weight: 400;
      letter-spacing: 4px;
      text-decoration: none;
      color: #000000;
      text-transform: uppercase;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
    }

    .main-nav {
      display: flex;
      list-style: none;
      align-items: center;
    }

    .nav-left {
      flex: 1;
      justify-content: flex-start;
    }

    .nav-right {
      flex: 1;
      justify-content: flex-end;
    }

    .nav-item {
      position: relative;
      margin: 0 15px;
    }

    .nav-link, .action-link {
      text-decoration: none;
      color: #000000;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: capitalize;
      font-weight: 300;
      transition: color 0.3s ease;
      padding: 20px 0;
      display: block;
    }

    .nav-link:hover, .action-link:hover {
      color: #666666;
    }

    /* Main */
    .main-content {
      margin-top: 0; /* REMOVIDO margin-top */
    }
 /*carrinho */  
      
      .cart-badge {
      position: absolute;
      top: -5px; right: -10px;
      background: red; color: white; font-size: 12px;
      border-radius: 50%; padding: 2px 6px; display: none;
    }
    @media (max-width: 768px) {
      nav { display: none; }
      .logo { text-align: center; flex: 1; }
      .mobile-menu-toggle { display: block; }
      .mobile-icons { display: flex; }
      .nav-left { display: none; flex-direction: column; background: #fff; position: absolute; top: 60px; left: 0; width: 100%; border-top: 1px solid #e0e0e0; padding: 15px 0; }
    }

    /* Sidebar Carrinho */
    .cart-sidebar {
      position: fixed; top: 0; right: -400px; width: 350px; height: 100vh;
      background: #fff; box-shadow: -2px 0 6px rgba(0,0,0,0.2);
      transition: right 0.3s ease; z-index: 2000; display: flex; flex-direction: column;
    }
    .cart-sidebar.open { right: 0; }
    .cart-header { padding: 15px; border-bottom: 1px solid #ddd; font-weight: bold; display: flex; justify-content: space-between; align-items: center; }

    .cart-header button { background: none; border: none; font-size: 20px; cursor: pointer; }
    .cart-items { flex: 1; overflow-y: auto; padding: 15px; }
    .cart-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; font-size: 14px; }
    .cart-item span { flex: 1; }
    .quantity-controls {
      display: flex; align-items: center; gap: 5px;
    }
    .quantity-controls button {
      background: #ddd; border: none; padding: 2px 6px; cursor: pointer; font-size: 14px;
    }
    .remove-btn{
      background: none; border: none; color: red; font-size: 12px; cursor: pointer;text-decoration: none;
    }
    .cart-footer { padding: 15px; border-top: 1px solid #ddd; font-weight: bold; }
    .checkout-btn { margin-top: 10px; width: 100%; padding: 10px; background: black; color: white; border: none; cursor: pointer; }      
      
      
/* Hero - VÍDEO FULLSCREEN */
.hero {
    height: 100vh; /* Ocupa 100% da altura da viewport */
    width: 100%; /* Ocupa 100% da largura */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0; /* REMOVIDO margin-top */
    padding: 0; /* REMOVIDO padding */
    background-color: #000000;
}

.hero-container {
    position: relative;
    width: 100%; /* 100% da largura */
    height: 100%; /* 100% da altura */
    overflow: hidden;
    border-radius: 0;
}

/* O vídeo preenche todo o container */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo cubra toda a área */
    z-index: 1;
}

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.25);
      z-index: 2;
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      text-align: center;
      color: #ffffff;
    }

    .hero-content h1 {
      font-size: 42px;
      font-weight: 300;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-content p {
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 25px;
      opacity: 0.9;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    .cta-button {
      display: inline-block;
      padding: 12px 35px;
      border: 1px solid #ffffff;
      color: #ffffff;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      background-color: transparent;
      font-weight: 300;
    }

    .cta-button:hover {
      background-color: #ffffff;
      color: #000000;
    }

   
  /* Footer */
.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 20px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  position: relative;
}

/* Barra vertical apenas entre a primeira e segunda seção */
.footer-section:first-child::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #e0e0e0;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

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

.footer-links a {
  text-decoration: none;
  color: #000000;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #555555;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 8px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}

.newsletter-form button {
  padding: 8px;
  font-size: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

.language-select {
  padding: 8px 12px;
  font-size: 12px;
  font-family: "Basic Commercial", Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  transition: border-color 0.3s ease;
}

.language-select:hover {
  border-color: #999;
}

.language-select:focus {
  outline: none;
  border-color: #000;
}

.newsletter-form button:hover {
  background-color: #333;
}

.footer-bottom {
  padding-top: 15px;
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}

.footer-bottom label {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

  
      .mobile-icons {
      display: none;
      gap: 15px;
      font-size: 20px;
      align-items: center;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }  
      
    /* Responsivo */
    @media (max-width: 768px) {
      .nav-container {
        height: 60px;
        position: relative;
      }

      .logo {
        font-size: 18px;
        letter-spacing: 2px;
        text-align: center;
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
      
      .mobile-icons {
        display: flex;
      }

      .main-nav {
        display: none;
      }

      .mobile-menu-toggle {
        display: block;
      }

      /* Menu mobile animado */
      .nav-left {
        display: flex;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        border-top: 1px solid #e0e0e0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
      }

      .nav-left.open {
        max-height: 315px;
      }

      .nav-left .nav-item {
        margin: 10px 0;
        text-align: center;
      }
      /* Remove barra vertical no mobile */
      .footer-section:first-child::after {
        display: none;
      }
      .mobile-only {
        display: block;
      }
}

.mobile-menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #333333;
}

.mobile-menu-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 16px;
    margin: 0 auto;
    top: 20%;
    transform: translateY(-50%);
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000000;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 7px;
}

.hamburger span:nth-child(3) {
    top: 14px;
}

/* Animação quando menu aberto */
.mobile-menu-toggle.open .hamburger span:nth-child(1) {
    top: 7px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.open .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.open .hamburger span:nth-child(3) {
    top: 7px;
    transform: rotate(-135deg);
}

/* ===== MENU LATERAL ESQUERDO ===== */
.nav-left {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    padding-top: 80px;
    overflow-y: auto;
    transition: left 0.4s ease;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-left.open {
    left: 0;
}

.nav-left .nav-item {
    margin: 0;
}

.nav-left .nav-link {
    padding: 18px 25px;
    display: block;
    text-align: left;
    font-size: 13px;
    transition: all 0.2s ease;
}

.nav-left .nav-link:hover {
    background-color: #f8f8f8;
    padding-left: 30px;
}

/* ===== OVERLAY ESCURO ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.open {
    display: block;
    opacity: 1;
}

/* ===== DESKTOP ONLY ===== */
.desktop-only {
    display: block;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        left: 15px;
    }
    
    .nav-left {
        width: 260px;
        left: -260px;
        padding-top: 70px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .logo img {
        height: 35px !important;
    }
}

@media (min-width: 769px) {
    .nav-left {
        width: 320px;
        left: -320px;
    }
    
    .nav-left.open {
        left: 0;
    }
}