/* CSS Document */
:root {
      --primary: #b96400;
      --primary-glow: #ff9f2a;
      --bg: #0f0a00;
      --bg-card: rgba(26,18,8,0.6);
      --text: #FFFFFF;
      --text-muted: rgba(255,255,255,0.7);
      --border: rgba(185,100,0,0.2);
      --radius: 16px;
      --shadow-glow: 0 0 40px rgba(185,100,0,0.3);
    }
    [data-theme="light"] {
      --bg: #FFFBF5;
      --bg-card: rgba(255,255,255,0.9);
      --text: #1A1D29;
      --text-muted: #4a4a4a;
      --border: #F3E8D9;
    }
    [data-partner="true"] {
      --primary: #0066FF;
      --primary: #3b82f6;
      --bg: #0A0F1A;
      --bg-card: rgba(13,18,26,0.6);
      --border: rgba(0,102,255,0.2);
      --shadow-glow: 0 0 40px rgba(0,102,255,0.3);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      transition: background.3s, color.3s;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
.container { max-width: 1200px; margin: 0 auto; padding: 0 12px; }
    body:before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: linear-gradient(rgba(185,100,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(185,100,0,0.03) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: -1;
    }
    [data-partner="true"] body:before {
      background-image: linear-gradient(rgba(0,102,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,102,255,0.03) 1px, transparent 1px);
    }
    header {
      padding: 16px 0;
      position: sticky;
      top: 0;
      background: color-mix(in srgb, var(--bg) 80%, transparent);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      z-index: 100;
    }
    nav { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.logo { font-size: 1.5rem; font-weight: 700; text-shadow: 0 0 20px var(--primary); }
.logo span { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: all.3s; }
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 10px var(--primary); }
.theme-toggle,.menu-btn {
      color: #FFFFFF; width: 44px; height: 44px; border-radius: 50%; border: 2px solid #b96400;
      background: #b96400; cursor: pointer; display: flex; align-items: center; justify-content: center;
      font-size: 24px; transition: all.3s; padding-bottom: 2px;
    }
.theme-toggle:hover { border-color: var(--primary); box-shadow: 0 0 15px var(--primary); }
.menu-btn { color: #FFFFFF; display: none; flex-direction: column; gap: 5px; padding: 0 10px; }
.menu-btn span { color: #FFFFFF; width: 100%; height: 2px; background: #FFFFFF; transition: all.3s; }
.menu-btn.active span:nth-child(1) { color: #FFFFFF; transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active span:nth-child(2) { color: #FFFFFF; transform: rotate(-45deg) translate(5px, -5px); }
.btn {
      display: inline-block; padding: 14px 32px; border-radius: var(--radius); text-decoration: none;
      font-weight: 600; transition: all.3s; cursor: pointer; border: none;
    }
.btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary));
      color: white; box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 40%, transparent);
    }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.hero-slider { position: relative; height: 85vh; min-height: 450px; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; z-index: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, color-mix(in srgb, var(--primary) 20%, transparent), transparent 70%); z-index: 1; }
.slide-content { position: relative; z-index: 2; max-width: 1090px; margin-top: -40px;}
.slide-badge { display: inline-block; padding: 8px 16px; background: color-mix(in srgb, var(--primary) 10%, transparent); border: 1px solid #FFFFFF; border-radius: 50px; color: #FFFFFF; font-size: 0.875rem; font-weight: 600; margin-bottom: 20px; }
.slide h1 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 20px; background: linear-gradient(135deg, var(--text), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 1px #ffffff, 5px 5px 10px var(--primary);}
.slide p { font-size: 1.25rem; color: #FFFFFF; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.slider-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 3; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all.3s; }
.dot.active { background: var(--primary); box-shadow: 0 0 15px var(--primary); width: 40px; border-radius: 6px; }
    section { padding: 100px 0; position: relative; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; background: linear-gradient(135deg, var(--text), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-title p { color: var(--text-muted); max-width: 98%; margin: 0 auto; }
h3 {
    display: block;
    font-size: 1.2em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
.dp-calc { max-width: 600px; margin: 0 auto; padding: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(20px); }
.dp-calc input { width: 100%; padding: 16px; margin: 12px 0 24px; border: 2px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--text); font-size: 18px; text-align: center; }
.dp-result { padding: 24px; background: color-mix(in srgb, var(--primary) 10%, transparent); border: 1px solid var(--primary); border-radius: var(--radius); text-align: center; margin-top: 20px; display: none; }
.dp-result.show { display: block; animation: fadeIn.5s; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.measurements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; perspective: 1000px; }
.measure-card { padding: 40px 32px; border-radius: var(--radius); background: var(--bg-card); backdrop-filter: blur(20px); border: 1px solid var(--border); transition: transform.4s; transform-style: preserve-3d; }
.measure-card:hover { transform: rotateY(5deg) rotateX(5deg) translateY(-10px); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.carousel-3d { position: relative; width: 100%; height: 500px; perspective: 1000px; overflow: hidden; }
.carousel-track { display: flex; gap: 30px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); transition: transform.6s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-item { min-width: 300px; height: 400px; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); transition: all.4s; position: relative; }
.carousel-item.active { transform: scale(1.1); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.carousel-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: white; }
.carousel-controls { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }
.carousel-btn { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--primary); background: var(--bg-card); color: var(--primary); cursor: pointer; font-size: 24px; transition: all.3s; }
.carousel-btn:hover { background: var(--primary); color: white; box-shadow: 0 0 20px var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid var(--border); transition: all.4s; }
.gallery-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-glow); border-color: var(--primary); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform.6s; }
.gallery-item:hover img { transform: scale(1.1); }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 999; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: var(--radius); box-shadow: 0 0 60px var(--primary); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; background: var(--bg-card); border: 2px solid var(--primary); border-radius: 50%; cursor: pointer; font-size: 24px; color: var(--primary); }
.faq-search { max-width: 500px; margin: 0 auto 40px; position: relative; }
.faq-search input { width: 100%; padding: 16px 20px 16px 50px; border: 2px solid var(--border); border-radius: 50px; background: var(--bg-card); color: var(--text); font-size: 16px; }
.faq-search:before { content: '??'; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); backdrop-filter: blur(20px); overflow: hidden; transition: border-color.3s; }
.faq-item:hover { border-color: var(--primary); }
.faq-question { width: 100%; padding: 24px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.125rem; color: var(--text); text-align: left; transition: all.3s; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 28px; font-weight: 300; line-height: 1; transition: all.3s; flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.faq-question[aria-expanded="true"].faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-question[aria-expanded="true"] +.faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.8; }
    @media (max-width: 768px) {
  .nav-links { position: fixed; top: 90px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); transform: translateY(-150%); transition: transform.3s; }
  .nav-links.active { transform: translateY(0); }
  .menu-btn { display: flex; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .carousel-item { min-width: 250px; height: 350px; }
  .nav-right { gap: 8px; }
    }
	
@media (max-width: 768px) {
  #call-to-action > div:first-child {
    background-attachment: scroll !important; /* iOS não suporta fixed direito */
  }
  #call-to-action {
    padding: 80px 0 !important;
  }
}

@media (max-width: 768px) {
.tip-slide { min-width: 100%!important; }
}

@media (max-width: 768px) {
  .faq-wrapper {
    grid-template-columns: 1fr !important;
  }
}
.faq-item.active {
  border-color: var(--primary) !important;
}
.faq-question:hover {
  color: var(--primary) !important;
}


@media (max-width: 968px) {
  .quem-somos-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .video-wrapper {
    order: -1; /* Vídeo fica em cima no mobile */
  }
  .texto-wrapper h3 {
    font-size: 1.6rem !important;
  }
}	



@media (max-width: 968px) {
  .dev-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .dev-image {
    order: -1;
  }
}


@media (max-width: 968px) {
  #dev-sites {
    padding: 80px 0 !important;
  }
  
  #dev-sites .dev-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    margin-top: 40px !important;
  }
  
  #dev-sites .dev-content {
    margin-top: 0 !important;
    text-align: center;
  }
  
  #dev-sites .dev-content h3 {
    font-size: 1.6rem !important;
  }
  
  #dev-sites .dev-features {
    gap: 24px !important;
  }
  
  #dev-sites .dev-feature {
    flex-direction: column !important;
    text-align: center;
    align-items: center !important;
  }
  
  #dev-sites .dev-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  
  #dev-sites .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  #dev-sites .section-title h2 {
    font-size: 2rem !important;
  }
  
  #dev-sites .dev-content h3 {
    font-size: 1.4rem !important;
  }
  
  #dev-sites .dev-feature div:first-child {
    width: 48px !important;
    height: 48px !important;
  }
  
  #dev-sites .dev-feature svg {
    width: 24px !important;
    height: 24px !important;
  }
}


@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .9; }
}

.dashboard-mockup {
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 1024px) {
  #live-results > div > div {
    grid-template-columns: 1fr !important;
    gap: 60px !important;
  }
  
  .dashboard-mockup {
    transform: none !important;
  }
  
  #live-results h2 {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 640px) {
  #live-results {
    padding: 80px 0 !important;
  }
  
  #live-results h2 {
    font-size: 1.8rem !important;
  }
  
  .dashboard-mockup > div > div:last-child {
    padding: 20px !important;
  }
}


@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -40px) rotate(180deg); }
}

@keyframes glassesSwap {
  0%, 30% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  33%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
}

@keyframes showMeasures {
  0%, 25% { opacity: 0; }
  30%, 95% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes cursorMove {
  0%, 5% { left: 70%; top: 50%; }
  10%, 30% { left: 85%; top: 30%; }
  35%, 60% { left: 85%; top: 50%; }
  65%, 90% { left: 85%; top: 70%; }
  95%, 100% { left: 70%; top: 50%; }
}

@keyframes modelActive {
  0%, 30% { 
    background: color-mix(in srgb, var(--primary) 15%, transparent) !important;
    border-color: var(--primary) !important;
  }
  33%, 100% { 
    background: var(--bg) !important;
    border-color: var(--border) !important;
  }
}

.laptop-mockup {
  transform: perspective(1200px) rotateX(5deg);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.laptop-mockup:hover {
  transform: perspective(1200px) rotateX(0deg);
}

@media (max-width: 1024px) {
  #live-demo {
    padding: 80px 0 !important;
  }
  
  #live-demo h2 {
    font-size: 2.4rem !important;
  }
  
  .laptop-mockup {
    transform: none !important;
  }
  
  .provador-screen > div:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  #live-demo h2 {
    font-size: 2rem !important;
  }
  
  #live-demo > div > div:last-of-type {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}



@keyframes float {
  0%, 100% { transform: translateY(0) scale(1) }
  50% { transform: translateY(-20px) scale(1.05) }
}

@keyframes modelActive {
  0%, 30% { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 15%, transparent) }
  33%, 100% { border-color: var(--border); background: var(--bg) }
}

@keyframes showMeasures {
  0%, 80% { opacity: 0; transform: translateY(10px) }
  85%, 100% { opacity: 1; transform: translateY(0) }
}

/* Troca Desktop/Mobile */
@media (max-width: 768px) {
  .desktop-mockup { display: none !important; }
  .mobile-mockup { display: block !important; }
  .features-grid { grid-template-columns: 1fr !important; }
  .feature-item { display: flex !important; gap: 16px !important; align-items: start !important; text-align: left !important; padding: 20px !important; background: color-mix(in srgb, var(--bg-elevated) 50%, transparent) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; }
}

@media (min-width: 769px) {
  .desktop-mockup { display: block !important; }
  .mobile-mockup { display: none !important; }
}


/* Troca Desktop/Mobile nas Features */
@media (max-width: 768px) {
  .features-desktop { display: none !important; }
  .features-mobile { display: flex !important; }
}

@media (min-width: 769px) {
  .features-desktop { display: grid !important; }
  .features-mobile { display: none !important; }
  .feature-card:hover { transform: translateY(-4px); }
  .feature-card:hover > div { transform: scale(1.1); }
}





.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--card-bg);
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  transition: all .3s;
  
  /* Setinha que muda de cor junto com o tema */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%236c757d' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

/* Setinha pro tema escuro */
[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%2394a3b8' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select:hover {
  border-color: var(--primary);
}

.form-select option {
  background: var(--card-bg);
  color: #0f0a00;
  padding: 10px;
}


.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Mensagem de erro nativa do navegador */
input[type="checkbox"]:invalid {
  outline: 2px solid var(--primary);
}


.pricing {
  padding: 80px 20px;
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}



.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start;
}

.price-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all .3s;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
}

.currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.features li {
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.features li:before {
  content: "+";
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.btn-plan:hover {
  background: var(--primary);
  color: white;
}

.featured-btn {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .price-card.featured {
    transform: scale(1);
  }
}

/* Controle das imagens por tema */
.measure-card .theme-img-dark { 
  display: none; 
}

html[data-theme="dark"] .measure-card .theme-img-light { 
  display: none; 
}

html[data-theme="dark"] .measure-card .theme-img-dark { 
  display: inline-block; 
}

/* Botão do idioma en */
.lang-toggle {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  color: var(--primary);
  cursor: pointer;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all.3s;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--primary) 25%, transparent);
}

.lang-toggle:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--primary) 45%, transparent);
  background: var(--primary);
  color: white;
}



/* Botão theme Dark Light */
.botao-theme-toggle-floating {
  position: fixed;
  right: 20px;
  bottom: 140px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  background: var(--bg-card);
  color: var(--primary);
  padding: 0; /* zera o padding */
  line-height: 0; /* remove altura da linha */
}


.botao-theme-toggle-floating:hover {
      transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--primary) 45%, transparent);
    background: var(--primary);
    color: white;
}


/* Força centralização do SVG */
.botao-theme-toggle-floating svg {
  display: block;
  margin: 0 auto;
  flex-shrink: 0;  
}

/* Controle dos ícones Sol/Lua */
.botao-theme-toggle-floating .icon-sun { display: block; }
.botao-theme-toggle-floating .icon-moon { display: none; }

[data-theme="dark"] .botao-theme-toggle-floating .icon-sun { display: none; }
[data-theme="dark"] .botao-theme-toggle-floating .icon-moon { display: block; }