.elementor-345 .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-345 .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-345 .elementor-element.elementor-element-7757e65{--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-345 .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-345 .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;}/* 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-f22e08f */.tesla-robotica{
  background:#000;
  color:#eaf4ff;
  padding:60px 0;
}

.robot-wrap{
  width:min(1200px, calc(100% - 30px));
  margin:0 auto;
}

.robot-hero{
  text-align:center;
  margin-bottom:60px;
}

.robot-badge{
  background:#26f7c6;
  color:#001015;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  display:inline-block;
  margin-bottom:20px;
}

.robot-hero h1{
  font-family:"Orbitron";
  font-size:clamp(30px,4vw,60px);
  margin-bottom:20px;
}

.robot-hero h1 span{
  color:#3b81a6;
}

.robot-hero p{
  max-width:700px;
  margin:0 auto 25px;
  line-height:1.6;
}

.robot-cta{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.robot-btn{
  background:#26f7c6;
  color:#001015;
  padding:14px 26px;
  text-decoration:none;
  font-weight:700;
  border-radius:30px;
  transition:.3s;
}

.robot-btn:hover{
  background:#3b81a6;
  color:#fff;
}

.robot-btn.ghost{
  background:transparent;
  border:1px solid #34687c;
  color:#b3d7db;
}

.robot-section{
  margin-bottom:60px;
}

.robot-section h2{
  text-align:center;
  font-family:"Orbitron";
  margin-bottom:30px;
}

.robot-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}

.robot-card{
  border:1px solid #34687c;
  padding:20px;
  border-radius:15px;
  background:rgba(59,129,166,.1);
  text-align:center;
}

.modules-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.module{
  border:1px solid #34687c;
  padding:20px;
  border-radius:15px;
  background:rgba(0,0,0,.6);
}

.module h3{
  color:#3b81a6;
  margin-bottom:8px;
}

.robot-final{
  text-align:center;
  padding:40px;
  border:1px solid #34687c;
  border-radius:20px;
  background:rgba(59,129,166,.1);
}/* 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 */