/*
Theme Name: Yoo Power Mobility
Theme URI: https://yoobikes.com.br/
Author: OCLAB - Laboratório Criativo
Author URI: https://somos-oclab.com.br
Description: Tema básico focado em header fixo vermelho e menu responsivo com painel de modelos.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-yoo
*/

/* ======================================
   1. VARIÁVEIS & RESET
   ====================================== */

:root {
  --vermelho: #ff0100;
  --preto: #000000;
  --cinza-escuro: #111111;
  --cinza-medio: #444444;
  --branco: #ffffff;
  --radial-cinza-degrade: radial-gradient(circle at top left, #333 0%, #111 60%, #000 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  margin:0;
  padding:0;
  overflow-x: hidden;
}

body {
  font-family: "Prompt", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: var(--branco);
  overflow-x: hidden;
  
}

body.no-scroll {
  overflow: hidden;
}

/* Imagens nunca estouram o container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ======================================
   2. HEADER / BARRA VERMELHA
   ====================================== */

header {
  width: 100%;
  height: auto;
}

.top-bar {
  width: 100%;
  height: 80px;
  background-color: var(--vermelho);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 50;
}

.logo img {
  height: 42px;
  width: auto;
}

/* Ícone hamburguer animado (desktop = escondido) */
.menu-toggle {
  width: 32px;
  height: 32px;
  display: none;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--branco);
  position: absolute;
  left: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
  border-radius: 2px;
}

/* linha central */
.menu-toggle .hamburger {
  top: 50%;
  transform: translateY(-50%);
}

/* linha superior */
.menu-toggle .hamburger::before {
  top: -9px;
}

/* linha inferior */
.menu-toggle .hamburger::after {
  top: 9px;
}

/* ESTADO ABERTO = vira X */
.menu-toggle.is-open .hamburger {
  transform: rotate(45deg);
}

.menu-toggle.is-open .hamburger::before {
  transform: rotate(-90deg) translateX(0);
  top: 0;
}

.menu-toggle.is-open .hamburger::after {
  transform: rotate(-90deg);
  top: 0;
}

/* ======================================
   3. MENU PRINCIPAL (DESKTOP)
   ====================================== */

.main-menu {
  justify-self: right;
}

.menu-items {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.menu-item a {
  color: var(--branco);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* MODELOS com setinha */
.menu-item-modelos {
  position: relative;
}

.modelos-toggle {
  background: none;
  border: none;
  color: var(--branco);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.modelos-arrow {
  font-size: 0.7rem;
}

/* Seta vira para cima quando aberto */
.modelos-toggle.is-open .modelos-arrow {
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

/* ======================================
   4. PAINEL MODELOS – DESKTOP
   ====================================== */

.modelos-panel {
  position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    background: radial-gradient(50% 50% at 50% 50%, #3F3F3F 0%, #272727 100%);
    padding: 3rem 8vw;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-around;
    min-height: calc(100vh - 80px);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease;
    z-index: 40;
}

.modelos-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  max-height: 100vh;
}

/* garante que o conteúdo do painel fique acima do SVG */
.modelos-panel > * {
  position: relative;
  z-index: 1;
}

.modelos-panel.is-open::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('imgs/raio-el-bg.svg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 55%;
  opacity: 0.4; /* ajuste fino de intensidade */
  mix-blend-mode: add;
  pointer-events: none;
  z-index: 0;
}

.modelo-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  justify-content: flex-start;
  width:80%;
}

.modelo-item img {
  max-width: 518px;
}

.modelo-nome, .modelo-nome a {
  padding-left:2rem;
  font-weight: 900;
  font-size: 3rem;
  color: var(--branco);
  text-shadow: 2px 2px 0 var(--vermelho);
  transition: scale .2s ease;
}

.modelo-nome:hover{
  scale: 1.1;
}

/* ======================================
   5. HERO COM VÍDEO E LOADING
   ====================================== */

.hero {
  position: relative;
  min-height: clamp(480px, 80vh, 800px);
  overflow: hidden;
  color: #ffffff;
  z-index:2;
}

.hero__video-wrapper {
  position: relative;
  width: 100%;
  /* 100vh menos a barra vermelha de 80px no desktop */
  height: calc(100vh - 80px);
}

/* Poster borrado cobrindo o vídeo */
.hero__video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  transform: scale(1.05); /* pra não aparecer borda no blur */
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Vídeo começa invisível, só aparece quando estiver pronto */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Quando o vídeo estiver pronto (classe adicionada via JS) */
.hero--video-ready .hero__video {
  opacity: 1;
}

.hero--video-ready .hero__video-poster {
  opacity: 0;
  pointer-events: none;
}

/* Conteúdo por cima */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2rem, 6vw, 5rem);
  box-sizing: border-box;
}

.hero__inner {
  max-width: 540px;
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin: 0 0 1.5rem;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  background: #000000;
  color: #e4ff00;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Botão de áudio */
.hero__audio-toggle {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__audio-toggle:hover {
  opacity: .5;
  transform: translateY(-1px);
}

.hero__audio-toggle[aria-pressed="true"] {
  background: var(--vermelho);
  color: #000;
}

/* ======================================
   6. SECTION BEM_VINDO
   ====================================== */

.bem-vindo {
  width:100vw;
  height:190vh;
  
  background: radial-gradient(circle at top left, #333 0%, #111 60%, #000 100%);
}

.bem-vindo-conteudo {
  position:relative;
  width:100%;
  height:100%;
  

}

.bg-bolas {
  position:absolute;
  top:0;
  z-index:0;
}

.box-models {
position: absolute;
display:flex;
flex-direction: column;
width: 95%;
height: 1091px;
top: 35vw;
align-items: center;
justify-content: center;
align-self: center;
justify-self: center;
background: radial-gradient(50% 50% at 50% 50%, #3F3F3F 0%, #272727 100%);
box-shadow: -11px 1px 32.4px 23px rgba(0, 0, 0, 0.25);
border-radius: 120px;
gap:3rem;
}

.tit-box-models {
  font-size: 1rem;
  font-style: medium;
}

.box-models-botoes {
  display:flex;
  flex-direction: row;
  gap: 3rem;
}

.bt-model {
font-style: normal;
font-weight: 900;
font-size: 48px;
line-height: 100%;
/* identical to box height, or 48px */
text-align: center;
color: #FFFFFF;
text-shadow: 2px 2px 0px #FF0100;
opacity: 0.3;
  transition: opacity .3s ease, transform .3s ease;
  cursor: pointer;
}
/* Botão ativo */
.bt-model.active {
  opacity: 1;
}

/* Hover só aumenta se estiver ativo (para não confundir o usuário) */
.bt-model.active:hover {
  transform: scale(1.1);
}

/* SELETOR DE CORES */
.box-models-cores {
  display: flex;            /* sempre presente no layout */
  gap: 1.5rem;
  margin-top: 0;
  align-items: center;
  justify-content: center;

  /* escondido visualmente */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .3s ease;
}

/* Quando Y200 estiver ativo */
.box-models-cores.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bt-cor {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 6px solid transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform .2s ease, border-color .2s ease;
}

.bt-cor.active {
  border-color: #FF6B35;      /* destaca a cor ativa */
  transform: scale(1.1);
}

.botaoVermelho {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.8rem;
  font-size: 1rem;
  border-radius: 999px;  
  background: #ff0100;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;  
  width:20vw;
  transition: color, .3s;
}

.botaoVermelho:hover {
background-color: #fff;
color: #FF0100;
}

/* Conteúdo dentro do círculo */
.circulo-vermelho__conteudo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  text-align: left;
  padding: 3rem;  
  left:4%;
  top:3%;
  z-index:1;
}

.circulo-vermelho__titulo {
  font-size: clamp(1.6rem, 3.5vw, 7rem);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
}

.circulo-vermelho__botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.8rem;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #ffffff;
  color: #ff0100;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width:20vw;
}

.circulo-vermelho__botao:hover {
  opacity: 0.5;
}

/* ======================================
   SECTION DEMOCRÁTICA E VERSATIL
   ====================================== */

.democratica-versatil {
  position:relative;
  width:100vw;
  height:100vh;
  background-image: url('imgs/bg-girl-bike.jpg');
}

.sectionTitleWhite {
  /* + DEMOCRÁTICA E versÁTIL */

position: absolute;
width: 660px;
height: 198px;
left: 5%;
top: 29%;
font-style: normal;
font-weight: 900;
font-size: 80px;
line-height: 124%;
/* or 99px */
text-transform: uppercase;

color: #FFFFFF;
}

.fabricada-no-brasil {
  position:relative;
  width:100vw;
  height:100vh;  
}

.sectionTitleRed {
position: relative;
font-size:5.5rem;
top: 7%;
font-family: 'Prompt';
font-style: normal;
font-weight: 900;

line-height: 94%;
/* identical to box height, or 126px */
text-align: center;
text-transform: uppercase;
/* VERMELHO */
color: #FF0100;
  /* FABRICADA no Brasil */
}

#fabricadaNoBrasil-conteudo {
  position: relative;
  width: 100%;
  height: 90%;
  display:flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top:0;
}

.fabricadaNoBrasil-img-desk {
  width:50%;
  height:auto;
  padding:10%;
}

.fabricadaNoBrasil-vantagens {
  width:50%;
  height:100%;
  gap:3rem;
  display:flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding:0;
  top:0;
}

.titVantagens {
font-style: normal;
font-size: 24px;
color: #FF0100;
gap:0;
}

.itemVantagem {
  font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 100%;
color: #FF0100;
display:flex;
flex-direction: row;
align-items: center;
gap:2rem;
}



.hero-modelo {
  width:100%;
  height: 75%;
  position:relative;
}

.hero-modelo-content {
  position: absolute;
  width:100%;
  height:100%;
  z-index: 2;  
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.hero-modelo-content-y200 {
  flex-direction: row-reverse;
}

.hero-modelo-content-y200 .hero-modelo-content2 {
  padding-right: 0%;
  padding-left: 10%;
}

.hero-modelo-content2 {
  display:flex;
  flex-direction: column;
  padding-right: 10%;
  padding-left: 0;
  gap:2rem;  
}

.txt-hero {
  text-align: left;
  font-weight: 900;
font-size: 4rem;
line-height: 100%;
/* or 80px */
text-transform: uppercase;
}

.subTxt-hero {
  width:70%;
  font-size: 1.5rem;
}

.img-hero-fleek250 {
  width:100%;
  height: auto;  
  padding:2rem;
}

.img-hero-y200 {
  width:100%;
  height: auto;  
  
}

.maisVelocidade-content-y200{
  flex-direction: row-reverse;
}

.img-hero-maisVelocidade {
  width:100%;
}

.cestinhoContent {
  flex-direction: row!important;
}

.maisVelocidade-content .maisVelocidade-content1 {
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  width:50%;
  padding-left:10%;
}

.maisPraticidadeContent {
  flex-direction: row-reverse;
}

.maisPraticidade-content2 {
  margin-left: 10%;
  margin-right: 0;
}



.maisLeveza {  
  background-color: #fff;
}

.maisLevezaContent {
  position:relative;
}

.maisLeveza-content1 {
  display:flex;
  justify-content: center;
  align-items: center;
  width:50%;
}

.maisLeveza-content2 {
  display:flex;
  justify-content: center;
  align-items: flex-start;
  width:50%;
  text-align: left;
  padding-right: 0;
}

.maisLeveza-content1 img{
  width:634px;
  height:auto;
  padding:2rem;
  align-self: center;
}

.sliderImgsFleek250 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 24px!important;
    height: 24px!important;
    border-radius: 50%;
    background-color: #cccccc!important;
    cursor: pointer;
    transition: background-color 0.3s ease!important;
    opacity: 1!important;
}

.swiper-pagination-bullet.active,
.swiper-pagination-bullet-active {
    background-color: #e63946!important;
}

.hero-modelo-bt-vermelho {
  background-color: #ff0100;
  color: #ffffff;
  border-width: 0;
}

 
.formSejaRevendedorDesk {
  background: url('/wp-content/uploads/2025/12/bg-yoo-seja-revendedor.jpg') no-repeat center center;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-colEsq {
  width: 50%;
  align-self: center;
  justify-content: center;
  height: 100%;
  display:flex;
  flex-direction: column;
}

.container-colEsq {
  width:50%;
  display:flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;  
  gap:2rem;
  padding-top:10%;
}

.container-colEsq h2 {
  font-size: 3rem;
  line-height: 1.1;  
  text-transform: uppercase;
  font-weight: 900;
}

.bullets-colEsq {
  display: flex;
  flex-direction: column;
  gap:1rem;
  color: white;
}

img.wp-smiley,
img.emoji {
    filter: invert(100%) hue-rotate(180deg); /* Isso as transforma em branco */
    /* ou para preto: */
    /* filter: invert(0%) hue-rotate(180deg); */
}

.form-colDir {
  width: 50%;
  align-items: center;
  justify-content: center;
  height: 100%;
  display:flex;
  padding:2rem 6rem;
}

.srForm-container {
  width: 100%;
  max-width: 700px;
  display:flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height:fit-content;
   
}

.srForm-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--vermelho);
  margin-bottom: 25px;
  line-height: 1.4;
}

.srForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.srForm input[type="text"],
.srForm input[type="email"],
.srForm input[type="number"],
.srForm input[type="tel"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--vermelho);
  padding: 10px 5px;
  color: #000000;
  font-size: 14px;
  outline: none;
}

.srForm input::placeholder {
  color: #aaa;
}

.srForm-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #000000;
  flex-wrap: wrap;
}

.srForm-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.srForm input[type="checkbox"] {
  background: #00000000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: clamp(18px, 10vw, 20px);
  height: clamp(18px, 10vw, 20px);
  border: 1px solid var(--vermelho);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.srForm input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff0000;
  font-size: 15px;
  font-weight: bold;
}

.srForm button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.8rem;
  font-size: 1rem;
  border-radius: 999px;  
  background: #ff0100;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;  
  width:20vw;
  transition: color, .3s;
  border-width: 0;
  cursor: pointer;
  align-self: center;
}

.srForm button:hover {
  opacity:.5;
}

.srForm-erro {
  color: #ff4444;
  font-size: 13px;
  margin-top: -12px;
}

/* ======================================
   7. FOOTER
   ====================================== */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;


}

.main-footer {
  width: 100vw;
  background: radial-gradient(50% 50% at 50% 50%, #3F3F3F 0%, #272727 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 2rem 0;
  min-height: 300px;

}

.conteudo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  height: 90%;
  gap: 2rem;
}

.tit-footer {
  width: 100%;
  text-align: left;  
  font-style: bold;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-top: 2rem;
}

.nomeEmail {
  width: 100%;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  gap: 2rem;
  width: 100%;
  height: 100%;
}

.formFooterInputs {
  width: 100%;
  padding: 0.5rem 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--vermelho);
  gap: 2rem;
}

#form-footer .inputs-footer input {
  width: 100%;
  background-color: transparent !important;
  background: transparent !important;
  border: none;
  color: var(--branco);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

#form-footer .inputs-footer input:focus,
#form-footer .inputs-footer input:active,
#form-footer .inputs-footer input:hover,
#form-footer .inputs-footer input:focus-visible {
  outline: none;
  background-color: transparent !important;
  background: transparent !important;
}

.inputs-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
  width: 100%;
  margin-top: 2rem;
  height: 100%;
}

.checkbox-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
}

.item-checkbox {
  display: inline-block;
  flex-direction: row;
  gap: 0.7rem;
  align-items: center;
  justify-content: flex-start;
  width:100%;
}

.item-checkbox label {
  font-size: clamp(0.8rem, 1vw, 0.6rem);
}

.item-checkbox input[type="checkbox"] {
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: clamp(18px, 10vw, 20px);
  height: clamp(18px, 10vw, 20px);
  border: 1px solid var(--branco);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}

.item-checkbox input[type="checkbox"]:checked {
  background: #000;
  border-color: var(--color-primary);
}

.item-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
}

.item-checkbox u {
  color: var(--color-primary);
}

#abrir-politica-privacidade{
color: var(--vermelho);
}

#mensagem-erro {
  transition: all 0.3s ease;
}

input:invalid {
  border-color: #ff0000;
}

#mensagem-obrigado {
  text-align: center;
  font-family: var(--font-family-primary);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-primary);
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.enviar {
  border: none;
}

hr {
  border: 0;
  border-top: 1px solid var(--branco) !important;
  width: 100%;
}

.links-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10vw;
  width: 100%;
}

.menu-footer-columns ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 40px; /* espaçamento entre linhas e colunas */
  list-style: none;
  margin: 0;
  padding: 0;
  padding:2rem;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-footer-item a {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: color 0.3s ease;
}

.menu-footer-item a:hover {
  color: var(--color-primary);
}

.links-uteis {
  width: 50%;
}

.right-footer {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  gap: 2rem;
}

.links-redes-footer {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  justify-content: flex-start;
  width: 100%;
}

.links-redes-footer img {
  width: clamp(24px, 2.5vw, 28px);
  height: clamp(24px, 2.5vw, 28px);
}

.info-contato {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.mail-footer {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 16px);
  line-height: 250%;
  text-align: left;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.info-footer {
  position:relative;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  bottom:-10%;
}

/* ===== MODAL POLÍTICA DE PRIVACIDADE ===== */
.politica-privacidade {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(15, 16, 17, 0.9);
  z-index: 9999999999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  transition: opacity 0.3s ease;
}

/* Caixa principal */
.politica-privacidade-conteudo {
  
  background-color: #fff;
  color: #0F1011;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  max-height: 75vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: "Archivo", Arial, sans-serif;
  line-height: 1.6;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

/* Rolagem interna do texto */
.politica-privacidade-conteudo p {
  overflow-y: auto;
  margin-top: 1rem;
  padding-right: 1rem;
  height: 100%;
  scrollbar-width: thin;
  scrollbar-color: #ff0100 #ffd3d3;
}

.politica-privacidade-conteudo p::-webkit-scrollbar {
  width: 8px;
}
.politica-privacidade-conteudo p::-webkit-scrollbar-thumb {
  background-color: #ff0100;
  border-radius: 10px;
}
.politica-privacidade-conteudo p::-webkit-scrollbar-track {
  background-color: #ffd3d3;
}

/* Botão de fechar */
.politica-privacidade-fechar {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  color: #ff0000;
  transition: color 0.2s;
}
.politica-privacidade-fechar:hover {
  color: #ffbbbb;
}

/* Animações */
.politica-privacidade.show {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
.politica-privacidade.hide {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.97); }
}

/* Desktop (padrão) */
.bg-bolas {
  display: block;
}
.bg-bolas-mobile {
  display: none;
}

/* ======================================
   SLIDER CORES Y200
   ====================================== */
.sliderImgsCoresY200 {
  position: relative;
  width: 100%;  
  display:flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  padding:4rem;
}

.cores-disponiveis {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width:50%;
  justify-content: center;
  align-items: center;
  
}

.titulo-cores {
  font-family: "Prompt", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--preto);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cores-menu {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cor-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.cor-btn:hover {
  transform: scale(1.1);
}

.cor-btn.active .cor-circle {
  box-shadow: 0 0 0 3px rgba(255, 1, 0, 0.3),
              0 0 0 6px rgba(255, 1, 0, 0.2);
  transform: scale(1.15);
}

.cor-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--branco);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: block;
}

.swiper-container-cores {
  width: 50%;
  height: auto;
  overflow: hidden;
  position: relative;
  
}

.swiper-container-cores .swiper-wrapper {
  display: flex;
}

.swiper-container-cores .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-container-cores .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Paginação do Swiper */
.sliderImgsCoresY200 .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.sliderImgsCoresY200 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sliderImgsCoresY200 .swiper-pagination-bullet.active {
  background: var(--vermelho);
  width: 12px;
  height: 12px;
}

.garantiaContent1 {
  gap:2rem;
}

.txt-garantia {
  font-size:2em;
  font-style: italic;
}

.subTxt-garantia {
  font-size:1em;  
}

.faixa-vermelha {
  width:100%;
  height:auto;
  background-color: var(--vermelho);
  display:flex;
  justify-content: center;
  align-items: center;
  font-size: 5em;
  text-transform: uppercase;
  font-weight:900;
  letter-spacing: .08em;
}

.hero-quem-somos img{
  width:100%;
}



.hero-quem-somos-content {
  flex-direction: row;
}

.hero-quem-somos-content .hero-quem-somos-content2 {
  padding-right: 0%;
  padding-left: 15%;
  width:50%;
}

.subTit-hero {
  font-size:1.5em;
  font-weight: 700;
}

.tradicao {
  width: 100%;
  height: 100%;
}

.tradicaoContent {
flex-wrap: wrap;
position:relative;

}

.tradicaoContent1 {
  width:50%;
  
}

.tradicaoContent1 img{
  width:100%;
  height:auto;
  margin-bottom:30%; 
}

.tradicaoContent2 {
  width:50%;
  margin-left:0;
  padding-left:10%;
  height:600px;
  justify-content: flex-start;
}

.tradicaoContent2 .subTxt-hero {
  font-size:2.5em;
  text-transform: uppercase;
  font-weight:700;
}

.faixa-assistencia {
  position:absolute;
  bottom:0;
    
}

.txtAssistencia {
  position: absolute;
  bottom:20%;
  text-align: center;
  width:100%;
  color: white;
  font-size: 3em;
  line-height: 1em;
  font-weight: 600;
}

.hero-faq-content {
  flex-direction: row-reverse;
}

.hero-faq-content2 {
  padding-left:10%;
  width:45%;
}

.hero-faq-content2 h3 {
  font-size:1.4em;
  font-weight: 500;
}

.faq-section {
  width:100vw;
  height: auto;
  
  align-items: center;
  display:flex;
  flex-direction: column;
}

.faq-general-container {
  display:flex;
  flex-direction: column;
  padding: 0 10rem;
  justify-content: flex-start;
  width:80%;
  gap:2rem;
}

.faq-tit {
  font-size: 2em;
  color: var(--vermelho);
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 1.2rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 800;
  font-size: 1.2rem;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: url("/wp-content/uploads/2025/12/setinha-acordeon.svg");
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  color:#000;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 2rem;  
}

.faq-answer.open {
  max-height: 400px;
  opacity: 1;
  margin-top: 0.6rem;
  padding: 0 2rem;  
}

.legislacao {
  width:100vw;
  height:100vh;  
  background-image: url('/wp-content/uploads/2025/12/bg-modulo-legislacao.jpg');
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.legislacao-tit {
  font-size: 3em;
  font-weight: bold;
  color: var(--branco);
  margin-bottom: 3rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 800;
}

.legislacao-cards {
  display:flex;
  flex-direction: row;
  gap:3rem;
}

.links-uteis {
  width:100%;
}

.menu-footer-columns {
  display:flex;
  flex-direction: row;
  width:100%;
  gap:1rem;
  
}

.coluna-footer {
  width:50%;
  display:flex;
  flex-direction: column;
  color:white;
  font-size: 1.3em;
  white-space: nowrap;
}

.coluna-footer a {
  color:white;
  text-decoration: none;
}


/* Responsivo */
@media (max-width: 768px) {
  .sliderImgsCoresY200 {
    margin: 40px auto;
    padding: 20px 10px;
  }

  .cores-disponiveis {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .titulo-cores {
    font-size: 20px;
  }

  .cores-menu {
    gap: 10px;
  }

  .cor-circle {
    width: 35px;
    height: 35px;
  }

  .cor-btn.active .cor-circle {
    box-shadow: 0 0 0 2px rgba(255, 1, 0, 0.3),
                0 0 0 4px rgba(255, 1, 0, 0.2);
  }
}
