.elementor-225 .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-225 .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-225 .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-225 .elementor-element.elementor-element-cd67e95.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-225 .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-225 .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 *//* =========================
   CADASTRO TESLA TECH
========================= */

.tesla-cadastro{
  background:#000;
  padding: clamp(28px, 4vw, 70px) 0;
}

.tesla-cadastro__wrap{
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.tesla-cadastro__header{
  text-align:center;
  margin-bottom: 30px;
}

.tesla-cadastro__header h2{
  font-family:"Orbitron", sans-serif;
  font-weight:900;
  letter-spacing:.6px;
  color:#b3d7db;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom:10px;
  text-shadow:0 0 14px rgba(59,129,166,.25);
}

.tesla-cadastro__header p{
  font-family:"Inter", sans-serif;
  color:rgba(179,215,219,.85);
  font-size:15px;
}

.tesla-cadastro__accent{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}
.tesla-cadastro__accent span{
  height:6px;
  border-radius:999px;
  background:#34687c;
}
.tesla-cadastro__accent span:nth-child(1){ width:22px; opacity:.7;}
.tesla-cadastro__accent span:nth-child(2){ width:12px; opacity:.5;}
.tesla-cadastro__accent span:nth-child(3){ width:34px; opacity:.9;}

/* Form Card */
.tesla-form{
  border-radius:18px;
  border:1px solid rgba(52,104,124,.7);
  background: radial-gradient(circle at 50% 20%, rgba(59,129,166,.15), rgba(0,0,0,.92));
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(179,215,219,.05), 0 24px 80px rgba(0,0,0,.7);
}

/* Grid */
.tesla-form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tesla-form__group{
  display:flex;
  flex-direction:column;
}

.tesla-form__group--full{
  grid-column: span 2;
}

.tesla-form label{
  font-family:"Inter", sans-serif;
  font-weight:700;
  font-size:12px;
  letter-spacing:.6px;
  color:rgba(179,215,219,.9);
  margin-bottom:8px;
}

/* Inputs */
.tesla-form input{
  border-radius:14px;
  border:1px solid rgba(52,104,124,.6);
  background:rgba(0,0,0,.55);
  color:#eaf4ff;
  padding:12px 14px;
  font-size:14px;
  font-family:"Inter", sans-serif;
  outline:none;
  transition:.3s;
}

.tesla-form input:focus{
  border-color:#26f7c6;
  box-shadow:0 0 0 2px rgba(38,247,198,.2);
}

/* Button */
.tesla-form__footer{
  margin-top: 28px;
  text-align:center;
}

.tesla-btn{
  font-family:"Inter", sans-serif;
  font-weight:900;
  letter-spacing:.6px;
  background:#26f7c6;
  color:#001015;
  border:none;
  padding:14px 28px;
  border-radius:999px;
  cursor:pointer;
  transition:.3s;
  box-shadow:0 0 18px rgba(38,247,198,.35);
}

.tesla-btn:hover{
  transform: translateY(-2px);
  background:#3b81a6;
  color:#fff;
}

/* Responsive */
@media (max-width:768px){
  .tesla-form__grid{
    grid-template-columns:1fr;
  }
  .tesla-form__group--full{
    grid-column: span 1;
  }
}/* 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 */