.elementor-220 .elementor-element.elementor-element-e061bd9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-220 .elementor-element.elementor-element-6893665{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-220 .elementor-element.elementor-element-cd67e95{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-220 .elementor-element.elementor-element-cd67e95.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-220 .elementor-element.elementor-element-24663f9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-220 .elementor-element.elementor-element-418b961{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-220 .elementor-element.elementor-element-cd67e95{--width:99.627%;}}/* Start custom CSS for html, class: .elementor-element-33462e1 *//* ================================
   MOSTRAR MOBILE / ESCONDER DESKTOP
   (AJUSTE SE NECESSÁRIO)
================================ */
@media (max-width: 1024px){
  /* se seu header desktop tiver classe diferente, me diga que eu ajusto */
  .nav{ display:none !important; } /* esconde nav desktop */
  .mobile-header{ display:flex !important; } /* mostra header mobile */
}

@media (min-width: 1025px){
  .mobile-header{ display:none !important; }
  #mobileMenu{ display:none !important; }
}

/* ================================
   HEADER MOBILE
================================ */
.mobile-header{
  background:#000;
  padding:16px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.mobile-header .logo img{
  height:38px;
}

.hamburger{
  font-size:28px;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
}

/* ================================
   OVERLAY MOBILE
================================ */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: #061a1f;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  padding: 24px;

  transform: translateY(100%);
  transition: transform .35s ease;
  pointer-events: none;
}

.mobile-menu.active{
  transform: translateY(0);
  pointer-events: auto;
}

/* CLOSE */
.close-menu{
  align-self: flex-start;
  font-size: 28px;
  background: none;
  border: none;
  color: #a7d8dc;
  cursor:pointer;
}

/* LOGO */
.mobile-logo{
  text-align: right;
  margin: 10px 0 30px;
}

.mobile-logo img{
  height: 36px;
}

/* ================================
   LINKS MOBILE (COM UNDERLINE)
================================ */
.mobile-nav a,
.mobile-sub-toggle{
  display:block;
  width:100%;
  padding: 16px 0;
  color:#fff;
  text-decoration:none;
  font-size:18px;

  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;

  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* listra animada embaixo */
.mobile-nav a::after,
.mobile-sub-toggle::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:0%;
  height:2px;
  background:#2cffc6;
  transition: width .25s ease;
}

.mobile-nav a:hover::after,
.mobile-sub-toggle:hover::after{
  width:100%;
}

.mobile-nav a:hover{
  color:#a7d8dc;
}

/* ================================
   SUBMENU (ACORDEÃO)
================================ */
.mobile-sub-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight:700;
}

.mobile-sub-toggle .arrow{
  display:inline-block;
  font-size: 14px;
  transition: transform .25s ease;
  opacity:.9;
}

/* conteúdo do submenu */
.mobile-submenu{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding-left: 10px;
}

/* quando abre */
.mobile-submenu.open{
  max-height: 1200px; /* suficiente pra caber tudo */
}

/* gira setinha quando abre */
.mobile-sub-toggle.open .arrow{
  transform: rotate(180deg);
}

/* blocos internos */
.sub-block{
  padding: 12px 0 6px;
}

.sub-block h4{
  margin: 10px 0 8px;
  color:#a7d8dc;
  font-size: 12px;
  letter-spacing:.6px;
}

/* links internos */
.sub-block a{
  display:block;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sub-block a:last-child{
  border-bottom:none;
}

/* BOTÕES */
.btn-outline{
  margin-top: 16px;
  border: 1px solid #a7d8dc;
  color: #a7d8dc;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  border-radius: 10px;
}

.btn-fill{
  margin-top: 12px;
  background: #2cffc6;
  color: #000;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
}
/* Remove highlight azul padrão mobile */
.mobile-nav a,
.mobile-sub-toggle {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Remove fundo azul ao clicar */
.mobile-nav a:focus,
.mobile-nav a:active,
.mobile-sub-toggle:focus,
.mobile-sub-toggle:active {
  background: transparent;
  outline: none;
}

/* Quando estiver ativo/clicado */
.mobile-nav a:active,
.mobile-sub-toggle:active {
  color: #2cffc6;
}

/* Quando submenu estiver aberto, deixa texto azul */
.mobile-sub-toggle.open {
  color: #2cffc6;
}

/* Listra sempre animada */
.mobile-nav a::after,
.mobile-sub-toggle::after {
  background: #2cffc6;
}
/* Remove highlight azul padrão mobile */
.mobile-nav a,
.mobile-sub-toggle {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Remove fundo azul ao clicar */
.mobile-nav a:focus,
.mobile-nav a:active,
.mobile-sub-toggle:focus,
.mobile-sub-toggle:active {
  background: transparent;
  outline: none;
}

/* Quando clicar (texto fica verde) */
.mobile-nav a:active,
.mobile-sub-toggle:active {
  color: #91c09d;
}

/* Quando submenu estiver aberto */
.mobile-sub-toggle.open {
  color: #91c09d;
}

/* Listra animada com nova cor */
.mobile-nav a::after,
.mobile-sub-toggle::after {
  background: #91c09d;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-87d21d4 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
.header-custom {
  background: #000;
  display: flex;
  align-items: center;
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  position: relative;
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 40px;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 40px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

/* MENU ITEM */
.menu-item {
  position: relative;
}

/* LINK CARREIRAS */
.menu-link {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* SETA */
.arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 100vw;
  background: #061c24;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ZONA DE SEGURANÇA */
.menu-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25px;
}

/* HOVER */
.menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-item:hover .arrow {
  transform: rotate(180deg);
}

/* CONTEÚDO CENTRAL */
.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* COLUNAS */
.mega-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: #8fe6ff;
  margin-bottom: 14px;
}

/* LINKS */
.mega-col a {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}

.mega-col a:hover {
  color: #2cffc3;
}
/* BOTÃO PORTAL DO ALUNO */
.btn-portal {
  padding: 8px 16px;
  border: 1px solid #a7d8dc;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-portal:hover {
  background: #a7d8dc;
  color: #000;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f21ed2d *//* =========================
   TESLA PORTAL - TECH STYLE
   Fundo preto + cores do site
   (#34687c / #b3d7db / #3b81a6)
========================= */

.tesla-portal{
  background:#000;
  padding: clamp(24px, 4vw, 64px) 0;
  overflow:hidden;
}

.tesla-portal__wrap{
  width: min(1050px, calc(100% - 32px));
  margin: 0 auto;
}

.tesla-portal__head{
  display:flex;
  gap: 22px;
  align-items:center;
  margin-bottom: 18px;
}

.tesla-portal__logo{
  width: 92px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(52,104,124,.65);
  background: radial-gradient(circle at 50% 20%, rgba(59,129,166,.16), rgba(0,0,0,.88));
  display:grid;
  place-items:center;
  box-shadow: 0 0 0 1px rgba(179,215,219,.06), 0 20px 60px rgba(0,0,0,.6);
  flex: 0 0 auto;
}

.tesla-portal__logo img{
  max-width: 64px;
  height: auto;
  display:block;
}

.tesla-portal__title{
  margin: 0 0 8px;
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: .6px;
  color: #b3d7db;
  font-size: clamp(22px, 2.3vw, 34px);
  text-shadow: 0 0 14px rgba(59,129,166,.22);
}

.tesla-portal__desc{
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(179,215,219,.9);
  max-width: 80ch;
}

.tesla-portal__accent{
  display:flex;
  gap:8px;
  margin-top: 14px;
  align-items:center;
}

.tesla-portal__accent span{
  display:block;
  height:6px;
  border-radius: 999px;
  background:#34687c;
}
.tesla-portal__accent span:nth-child(1){ width:20px; opacity:.65; }
.tesla-portal__accent span:nth-child(2){ width:10px; opacity:.55; }
.tesla-portal__accent span:nth-child(3){ width:34px; opacity:.9; }
.tesla-portal__accent span:nth-child(4){ width:14px; opacity:.7; }

/* CARD */
.tesla-portal__card{
  border-radius: 18px;
  border: 1px solid rgba(52,104,124,.7);
  background: radial-gradient(circle at 50% 20%, rgba(59,129,166,.16), rgba(0,0,0,.9));
  box-shadow: 0 0 0 1px rgba(179,215,219,.06), 0 24px 80px rgba(0,0,0,.65);
  overflow:hidden;
  position:relative;
}

.tesla-portal__card::before{
  content:"";
  position:absolute;
  inset:-120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(179,215,219,.10), transparent 60%),
    radial-gradient(circle at 80% 10%, rgba(59,129,166,.14), transparent 60%);
  pointer-events:none;
}

.tesla-portal__cardTop{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(52,104,124,.55);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  position:relative;
  z-index:1;
}

.tesla-portal__badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-family:"Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing:.6px;
  color: rgba(179,215,219,.92);
  text-transform: uppercase;
}

.tesla-portal__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background:#26f7c6;
  box-shadow: 0 0 16px rgba(38,247,198,.45);
}

.tesla-portal__hint{
  font-family:"Inter", system-ui, sans-serif;
  font-size: 12.5px;
  color: rgba(179,215,219,.75);
}

/* FORM */
.tesla-portal__form{
  padding: 18px 16px 14px;
  position:relative;
  z-index:1;
}

.tesla-portal__label{
  display:block;
  margin-bottom: 8px;
  font-family:"Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing:.4px;
  color: rgba(179,215,219,.9);
}

.tesla-portal__field{
  display:flex;
  align-items:center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(52,104,124,.65);
  background: rgba(0,0,0,.55);
  padding: 10px 10px 10px 12px;
  box-shadow: inset 0 0 0 1px rgba(179,215,219,.04);
}

.tesla-portal__icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(59,129,166,.45);
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.35);
  flex: 0 0 auto;
}

.tesla-portal__icon svg{
  width: 20px;
  height: 20px;
  stroke: #b3d7db;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#cpfInput{
  flex:1;
  border:none;
  outline:none;
  background: transparent;
  color:#eaf4ff;
  font-family:"Inter", system-ui, sans-serif;
  font-size: 15px;
  padding: 10px 8px;
}

#cpfInput::placeholder{
  color: rgba(179,215,219,.55);
}

#btnConsultar{
  border:none;
  cursor:pointer;
  font-family:"Inter", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing:.6px;
  color:#001015;
  background:#26f7c6;
  padding: 12px 16px;
  border-radius: 14px;
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
}
#btnConsultar:hover{ transform: translateY(-1px); filter: brightness(1.05); }
#btnConsultar:disabled{ opacity:.6; cursor:not-allowed; }

/* mini note */
.tesla-portal__mini{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 12px;
  font-family:"Inter", system-ui, sans-serif;
  font-size: 12.5px;
  color: rgba(179,215,219,.72);
}

.tesla-portal__shield{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(52,104,124,.55);
  background: rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.tesla-portal__shield svg{
  width: 18px;
  height: 18px;
  stroke:#3b81a6;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* status */
.tesla-portal__status{
  padding: 0 16px 12px;
  font-family:"Inter", system-ui, sans-serif;
  font-size: 12.5px;
  color: rgba(179,215,219,.8);
  position:relative;
  z-index:1;
}

.tesla-portal__loader{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(179,215,219,.25);
  border-top-color: #26f7c6;
  display:inline-block;
  margin-right: 8px;
  animation: teslaSpin .9s linear infinite;
  vertical-align: -2px;
}

@keyframes teslaSpin{
  to{ transform: rotate(360deg); }
}

/* result area */
.tesla-portal__result{
  padding: 0 16px 18px;
  position:relative;
  z-index:1;
}

/* table */
.tesla-result{
  border-radius: 16px;
  border: 1px solid rgba(52,104,124,.6);
  background: rgba(0,0,0,.45);
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(179,215,219,.04);
}

.tesla-result__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(52,104,124,.45);
}

.tesla-result__ok{
  display:flex;
  align-items:center;
  gap: 10px;
  font-family:"Inter", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing:.4px;
  color: rgba(179,215,219,.92);
}

.tesla-ok__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background:#26f7c6;
  box-shadow: 0 0 16px rgba(38,247,198,.45);
}

.tesla-result__pill{
  font-family:"Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing:.8px;
  text-transform: uppercase;
  color:#001015;
  background:#b3d7db;
  padding: 6px 10px;
  border-radius: 999px;
  opacity:.9;
}

.tesla-table{
  width: 100%;
  border-collapse: collapse;
  font-family:"Inter", system-ui, sans-serif;
  font-size: 14px;
}

.tesla-table th,
.tesla-table td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(52,104,124,.35);
}

.tesla-table th{
  width: 34%;
  color: rgba(179,215,219,.9);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: 12px;
  background: rgba(0,0,0,.25);
}

.tesla-table td{
  color: #eaf4ff;
}

.tesla-result__foot{
  padding: 10px 14px 14px;
  color: rgba(179,215,219,.72);
  font-family:"Inter", system-ui, sans-serif;
  font-size: 12.5px;
}

/* alerts */
.tesla-alert{
  display:flex;
  align-items:center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  font-family:"Inter", system-ui, sans-serif;
  font-weight: 700;
  border: 1px solid rgba(52,104,124,.55);
  background: rgba(0,0,0,.45);
  color: rgba(179,215,219,.92);
}

.tesla-alert__icon{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 900;
  background: rgba(179,215,219,.10);
  color: #b3d7db;
}

.tesla-alert--error{
  border-color: rgba(255,70,70,.35);
  color: rgba(255,170,170,.95);
}
.tesla-alert--error .tesla-alert__icon{
  background: rgba(255,70,70,.12);
  color: rgba(255,170,170,.95);
}

.tesla-alert--warn{
  border-color: rgba(255,210,80,.35);
  color: rgba(255,230,160,.95);
}
.tesla-alert--warn .tesla-alert__icon{
  background: rgba(255,210,80,.12);
  color: rgba(255,230,160,.95);
}

/* Responsive */
@media (max-width: 820px){
  .tesla-portal__head{
    flex-direction: column;
    text-align:center;
    align-items:center;
  }
  .tesla-portal__logo{
    width: 88px;
    height: 88px;
  }
  .tesla-portal__field{
    flex-direction: column;
    align-items: stretch;
  }
  .tesla-portal__icon{
    width: 44px;
    height: 44px;
  }
  #btnConsultar{
    width: 100%;
    padding: 14px 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f4e80ec *//* =========================
   CSS BLOCO WHATSAPP TESLA
   Cole no Elementor > CSS adicional
========================= */

.tesla-wpp{
  background:#000;
  padding: clamp(28px, 4.5vw, 78px) 0;
  overflow:hidden;
}

.tesla-wpp__wrap{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 4vw, 56px);
  align-items:center;
}

/* LEFT */
.tesla-wpp__kicker{
  margin: 0 0 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .5px;
  color: rgba(179,215,219,.75);
  text-transform: uppercase;
}

.tesla-wpp__title{
  margin: 0 0 14px;
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: .6px;
  line-height: 1.05;
  font-size: clamp(32px, 4.2vw, 60px);
  color: #eaf4ff;
  text-shadow: 0 0 18px rgba(59,129,166,.18);
}

.tesla-wpp__title span{ color:#3b81a6; }

.tesla-wpp__desc{
  margin: 0 0 22px;
  max-width: 58ch;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.65;
  color: rgba(179,215,219,.92);
}

.tesla-wpp__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:"Inter", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing:.6px;
  text-decoration:none;
  color:#001015;
  background:#26f7c6;
  padding: 14px 24px;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  transition: transform .15s ease, filter .15s ease;
}
.tesla-wpp__btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

/* RIGHT */
.tesla-wpp__right{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 420px;
}

/* bubble */
.tesla-wpp__bubble{
  position:absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(52,104,124,.7);
  background: rgba(0,0,0,.55);
  padding: 10px 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  box-shadow: 0 0 0 1px rgba(179,215,219,.06);
}

.tesla-wpp__bubbleText{
  font-family:"Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: rgba(179,215,219,.92);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* typing dots animation */
.tesla-wpp__typing{
  display:inline-flex;
  gap: 4px;
  margin-left: auto;
}

.tesla-wpp__typing i{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3b81a6;
  opacity: .55;
  animation: teslaTyping 1s infinite ease-in-out;
}
.tesla-wpp__typing i:nth-child(2){ animation-delay: .15s; }
.tesla-wpp__typing i:nth-child(3){ animation-delay: .30s; }

@keyframes teslaTyping{
  0%, 100% { transform: translateY(0); opacity:.45; }
  50% { transform: translateY(-4px); opacity:1; }
}

/* card */
.tesla-wpp__card{
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: 1px solid rgba(52,104,124,.75);
  background: radial-gradient(circle at 50% 20%, rgba(59,129,166,.18), rgba(0,0,0,.9));
  box-shadow: 0 0 0 1px rgba(179,215,219,.07), 0 26px 90px rgba(0,0,0,.65);
  position:relative;
  overflow:hidden;
  animation: teslaFloat 4.2s ease-in-out infinite;
}

@keyframes teslaFloat{
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* BIG ICON AREA */
.tesla-wpp__bigicon{
  position:absolute;
  inset: 0;
  display:grid;
  place-items:center;
  padding: 34px;
}

/* HUD container */
.tesla-hud{
  position:relative;
  width: 280px;
  height: 280px;
  display:grid;
  place-items:center;
}

/* pulse background */
.tesla-hud__pulse{
  position:absolute;
  width: 100%;
  height: 100%;
  border-radius:50%;
  background: radial-gradient(circle, rgba(38,247,198,.22), transparent 62%);
  animation: teslaPulse 3s infinite ease-in-out;
  filter: blur(.2px);
}

@keyframes teslaPulse{
  0%,100%{ transform: scale(1); opacity:.65; }
  50%{ transform: scale(1.16); opacity:1; }
}

/* icon */
.tesla-hud svg{
  width: 128px;
  height: 128px;
  stroke: #26f7c6;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 20px rgba(38,247,198,.55));
  z-index: 3;
}

.tesla-hud svg circle{
  fill: rgba(179,215,219,.10);
  stroke: none;
}

/* orbit rings */
.tesla-hud__orbit{
  position:absolute;
  width: 100%;
  height: 100%;
  border-radius:50%;
  border: 1px solid rgba(59,129,166,.55);
  animation: teslaRotate 8s linear infinite;
  z-index: 1;
}

.tesla-hud__orbit--2{
  width: 78%;
  height: 78%;
  border-color: rgba(179,215,219,.35);
  animation-duration: 12s;
  animation-direction: reverse;
}

@keyframes teslaRotate{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* scan line */
.tesla-hud__scan{
  position:absolute;
  width: 72%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(38,247,198,.95), transparent);
  opacity:.9;
  animation: teslaScan 2.8s ease-in-out infinite;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(38,247,198,.35));
}

@keyframes teslaScan{
  0%{ transform: translateY(-70px); opacity:.25; }
  50%{ opacity: 1; }
  100%{ transform: translateY(70px); opacity:.25; }
}

/* mini icons */
.tesla-wpp__miniicons{
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-10%);
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.tesla-wpp__mini{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(52,104,124,.6);
  background: rgba(0,0,0,.45);
  display:grid;
  place-items:center;
  box-shadow: 0 0 20px rgba(59,129,166,.14);
}

.tesla-wpp__mini svg{
  width: 20px;
  height: 20px;
  stroke: #b3d7db;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* lines */
.tesla-wpp__lines{
  position:absolute;
  bottom: 18px;
  right: 18px;
  display:flex;
  gap: 10px;
  opacity:.9;
}
.tesla-wpp__lines span{
  height: 5px;
  border-radius: 999px;
  background:#3b81a6;
}
.tesla-wpp__lines span:nth-child(1){ width: 54px; opacity:.85; }
.tesla-wpp__lines span:nth-child(2){ width: 34px; opacity:.65; }

/* Mobile */
@media (max-width: 920px){
  .tesla-wpp__wrap{
    grid-template-columns: 1fr;
  }
  .tesla-wpp__right{
    order: -1;
    min-height: 360px;
  }
  .tesla-wpp__bubble{
    max-width: 92%;
  }
  .tesla-hud{
    width: 240px;
    height: 240px;
  }
  .tesla-hud svg{
    width: 112px;
    height: 112px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eb10faa *//* =========================
   RODAPÉ FUTURISTA TESLA
========================= */

.tesla-footer{
  background:#000;
  padding: 40px 0 28px;
  position:relative;
  overflow:hidden;
}

.tesla-footer__wrap{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  text-align:center;
  position:relative;
}

/* linha neon animada */
.tesla-footer__topline{
  width: 100%;
  height: 2px;
  margin-bottom: 28px;
  background: linear-gradient(
    90deg,
    transparent,
    #3b81a6,
    #26f7c6,
    #3b81a6,
    transparent
  );
  background-size: 200% 100%;
  animation: teslaFooterLine 4s linear infinite;
  opacity:.9;
}

@keyframes teslaFooterLine{
  from{ background-position: 200% 0; }
  to{ background-position: -200% 0; }
}

/* textos */
.tesla-footer__content{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.tesla-footer__copyright{
  font-family:"Inter", system-ui, sans-serif;
  font-size: 13px;
  color: rgba(179,215,219,.7);
  letter-spacing:.4px;
}

.tesla-footer__future{
  font-family:"Orbitron", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing:.6px;
  font-size: clamp(14px, 1.1vw, 16px);
  color:#b3d7db;
  text-shadow: 0 0 12px rgba(59,129,166,.25);
}

.tesla-footer__dev{
  font-family:"Inter", system-ui, sans-serif;
  font-size: 13px;
  color: rgba(179,215,219,.6);
}

.tesla-footer__dev span{
  color:#3b81a6;
  font-weight:700;
  letter-spacing:.4px;
}

/* leve brilho de fundo */
.tesla-footer::before{
  content:"";
  position:absolute;
  inset:-100px;
  background:
    radial-gradient(circle at 50% 0%, rgba(59,129,166,.12), transparent 60%);
  pointer-events:none;
}

/* responsivo */
@media (max-width:768px){
  .tesla-footer{
    padding: 32px 0 24px;
  }
}
.tesla-wpp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9999;
  font-family:"Inter", sans-serif;
}

/* BALÃO WHATSAPP */
.tesla-wpp-label{
  position:absolute;
  right:75px;
  bottom:18px;
  background:rgba(0,0,0,.85);
  color:#26f7c6;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
  border:1px solid rgba(38,247,198,.5);
  box-shadow:0 0 15px rgba(38,247,198,.3);
  animation: teslaFloatLabel 2.5s ease-in-out infinite;
}

@keyframes teslaFloatLabel{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

/* BOTÃO */
.tesla-wpp-trigger{
  width:64px;
  height:64px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background: radial-gradient(circle, #26f7c6, #3b81a6);
  display:grid;
  place-items:center;
  box-shadow: 0 0 25px rgba(38,247,198,.4);
  transition:.3s;
  animation: teslaPulse 2s infinite;
}

.tesla-wpp-trigger svg{
  width:30px;
  height:30px;
  stroke:#001015;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.tesla-wpp-trigger:hover{
  transform:scale(1.08);
}

@keyframes teslaPulse{
  0%,100%{ box-shadow: 0 0 20px rgba(38,247,198,.4); }
  50%{ box-shadow: 0 0 35px rgba(38,247,198,.8); }
}

/* POPUP */
.tesla-wpp-popup{
  position:absolute;
  bottom:80px;
  right:0;
  width:300px;
  background:#000;
  border:1px solid rgba(59,129,166,.6);
  border-radius:18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  overflow:hidden;
  display:none;
  flex-direction:column;
}

.tesla-wpp-popup.active{
  display:flex;
}

/* HEADER */
.tesla-wpp-header{
  background:linear-gradient(90deg,#3b81a6,#26f7c6);
  color:#001015;
  font-weight:700;
  padding:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.tesla-wpp-close{
  cursor:pointer;
  font-size:18px;
}

/* MENSAGENS */
.tesla-wpp-messages{
  padding:14px;
}

.tesla-wpp-msg{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  line-height:1.4;
  background:rgba(59,129,166,.2);
  color:#b3d7db;
}

/* INPUT */
.tesla-wpp-input{
  display:flex;
  border-top:1px solid rgba(59,129,166,.4);
}

.tesla-wpp-input input{
  flex:1;
  border:none;
  padding:10px;
  font-size:13px;
  background:#000;
  color:#eaf4ff;
  outline:none;
}

.tesla-wpp-input button{
  border:none;
  background:#26f7c6;
  color:#001015;
  font-weight:700;
  padding:0 14px;
  cursor:pointer;
  transition:.3s;
}

.tesla-wpp-input button:hover{
  background:#3b81a6;
  color:#fff;
}

/* MOBILE */
@media(max-width:768px){
  .tesla-wpp-popup{
    width:260px;
  }
}/* End custom CSS */