/*
Theme Name: Zuhri
Theme URI: https://zuhri.com.br
Author: Zuhri Robótica
Author URI: https://zuhri.com.br
Description: Tema oficial da Zuhri – Robótica & Programação Educacional
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zuhri
Tags: education, technology, robotics
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Orbitron:wght@700;800&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
p,
a,
button,
span,
li,
input,
textarea,
select {
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color: #333;
}

/* ---------- UTILITÁRIOS ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn-azul {
  background: #00d4f5;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-azul:hover {
  background: #0d2461;
  transform: translateY(-2px);
}

.btn-ciano {
  background: #00d4f5;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-ciano:hover {
  background: #00bcd4;
  transform: translateY(-2px);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Barra de admin do WordPress desloca a navbar fixa */
body.admin-bar #navbar      { top: 0; }
body.admin-bar .nav-mobile  { top: 70px; }
@media screen and (max-width: 782px) {
  /* Fix para a barra do WP não sumir e deixar um buraco no topo */
  body.admin-bar #wpadminbar { position: fixed !important; top: 0 !important; }
  body.admin-bar #navbar     { top: 46px; }
  body.admin-bar .nav-mobile { top: calc(70px + 46px); }
}

/* Navbar com fundo escuro APENAS em páginas sem hero (blog index, 404, busca).
   Em todas as outras (home, páginas internas com hero) fica transparente como na home. */
body.blog #navbar,
body.search #navbar,
body.error404 #navbar {
  background: rgba(10, 26, 62, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(10, 26, 62, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 72px;
}

.nav-logo {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 65vw;
}
.nav-logo img {
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #00d4f5;
}
.nav-links .active,
.nav-links .current-menu-item > a {
  color: #00d4f5;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links .active::before,
.nav-links .current-menu-item > a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d4f5;
  display: inline-block;
}

/* Menu gerado pelo WordPress */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Animação hamburger → X */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay escurecido */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease;
}

/* Scroll lock quando o menu mobile está aberto */
body.menu-open { overflow: hidden; }

.nav-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #0a1a3e;
  padding: 20px 40px 28px;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* Transição suave (substitui display:none) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: #00d4f5;
}
.nav-mobile a.active {
  font-weight: 600;
}
.nav-mobile .btn-azul {
  margin-top: 18px;
  width: 100%;
  text-align: center;
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 62, 0.55);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding-top: 70px;
}
.hero-content .container {
  width: 100%;
}
.hero-text {
  max-width: 500px;
}
.hero-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  color: #00d4f5;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title .hl {
  color: #00d4f5;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 34px;
}
.hero-desc strong {
  color: #fff;
  font-weight: 600;
}
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #29abe2;
  z-index: 20;
}

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
  will-change: box-shadow;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- SEÇÃO PROPÓSITO ---------- */
#proposito {
  background: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 0;
}
#proposito .container {
  display: flex;
  justify-content: center;
}
.proposito-grid {
  display: grid;
  grid-template-columns: 420px 480px;
  gap: 44px;
  align-items: center;
}
.proposito-img-wrap {
  position: relative;
  display: inline-block;
}
.proposito-img-wrap > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.proposito-certificado {
  position: absolute;
  right: -150px;
  bottom: -90px;
  width: 430px;
  border-radius: 0;
  box-shadow: none;
}
.proposito-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.proposito-content h2 {
  font-family: Orbitron, sans-serif;
  font-size: 2.2rem;
  color: #222;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}
.proposito-content h2 span {
  color: #29abe2;
}
.proposito-content p {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0;
}
.proposito-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-box {
  background: #f7fafd;
  border-radius: 16px;
  padding: 6px 16px;
  text-align: start;
  min-width: 120px;
}
.stat-box-num {
  font-family: Orbitron, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #29abe2;
}
.stat-box-label {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #62687c;
}
.proposito-btn {
  margin-top: 12px;
  display: inline-block;
  background: #00d4f5;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 40px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(41, 171, 226, 0.12);
  transition: background 0.2s;
  align-self: flex-start;
  position: relative;
  z-index: 3;
}
.proposito-btn:hover {
  background: #00bcd4;
}

.sec-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
  line-height: 1.3;
}
.sec-title .hl {
  color: #00d4f5;
}
.sec-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
}
.sec-subtitle {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
}

/* ---------- SEÇÃO PROPORCIONA ---------- */
#proporciona {
  background: #ffffff;
  padding: 90px 0;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 18px;
  max-width: 860px;
  margin: 32px auto;
  text-align: left;
}
.card-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(90, 120, 177, 0.05);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  transition: transform 0.19s, box-shadow 0.19s;
}
.card-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #19bcfa;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(25, 188, 250, 0.1);
}
.card-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 100;
  color: #222;
  line-height: 1.31;
  margin: 0;
}

/* ---------- SEÇÃO BENEFÍCIOS ---------- */
/* background-image injetado via wp_add_inline_style() em functions.php */
#beneficios {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.beneficios-circuit { display: none; }
.beneficios-inner {
  position: relative;
  z-index: 2;
  padding: 0 90px;
}
.ben-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ben-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ben-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 40px 32px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ben-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.ben-icon {
  background: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.ben-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.ben-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

/* ---------- SEÇÃO IMPLEMENTAÇÃO ---------- */
#implementacao {
  background: #fff;
  padding: 90px 0;
  text-align: center;
}
.impl-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.impl-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 44px;
}
.impl-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  margin-right: -30px;
}
.impl-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  margin-left: -30px;
}
.impl-img-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0);
}
.impl-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.impl-step {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  width: 230px;
}
.impl-step.left {
  flex-direction: row;
  text-align: left;
}
.impl-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #00d4f5;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.impl-step-text {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

/* ---------- SEÇÃO DEPOIMENTOS ---------- */
#depoimentos {
  background: #fff;
  padding: 90px 0;
}
.dep-box {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.dep-left {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.dep-left-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10%;
}
.dep-left-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 100, 0.62);
}
.dep-left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}
.dep-left-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
}
.dep-right {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  margin-left: -60px;
  margin-top: 60px;
  width: 550px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.dep-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dep-name {
  font-size: 15px;
  font-weight: 700;
  color: #29abe2;
  font-family: "Orbitron", sans-serif;
}
.dep-cargo {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  font-family: "Poppins", sans-serif;
}
.dep-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.dep-quote {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  font-family: "Poppins", sans-serif;
}
.dep-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dep-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #29abe2;
  cursor: pointer;
}
.dep-dot.off {
  width: 8px;
  height: 8px;
  background: #d0e8f5;
}
.dep-slider {
  position: relative;
  min-height: 160px;
}
.dep-slide {
  display: none;
}
.dep-slide.active {
  display: block;
  animation: depFadeIn 0.4s ease;
}
@keyframes depFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- SEÇÃO FUTURO ---------- */
#futuro {
  background: #fff;
  padding: 90px 0;
}
.futuro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.futuro-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 18px;
}
.futuro-p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}
.futuro-img {
  width: 100%;
  border-radius: 0;
  display: block;
  object-fit: cover;
  box-shadow: none;
  height: 360px;
}

/* ---------- FOOTER ---------- */
/* background-image injetado via wp_add_inline_style() em functions.php */
#footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-circuit { display: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  max-width: 900px;
  margin: 0 auto;
}
/* Fix para a logomarca do footer não vazar no mobile */
.footer-grid > div:first-child img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 80px;
  object-position: left center;
}
.footer-col-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-top: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #00d4f5;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-row svg {
  width: 16px;
  height: 16px;
  fill: #00d4f5;
  flex-shrink: 0;
}
.footer-contact-row span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.social-ico:hover {
  background: #00d4f5;
}
.social-ico svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom-bar span,
.footer-bottom-bar a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
}
.footer-bottom-bar a:hover {
  color: #00d4f5;
}

/* ==========================================================
   RESPONSIVO — TODAS AS PÁGINAS
   Organizado por breakpoint, sem duplicações.
========================================================== */

/* ── Tablet grande (≤1024px) ── */
@media (max-width: 1024px) {
  .container, .impl-inner { padding: 0 32px; }

  /* Propósito: exibe imagem com largura ajustada em vez de ocultar */
  .proposito-grid     { grid-template-columns: 1fr; gap: 40px; }
  .proposito-img-wrap { display: block; max-width: 600px; margin: 0 auto; text-align: center; }
  .proposito-img-wrap > img { border-radius: 16px; }
  .proposito-certificado { right: -10px; bottom: -30px; width: 240px; }

  /* Futuro: exibe imagem em vez de ocultar */
  .futuro-grid { grid-template-columns: 1fr; gap: 40px; }
  .futuro-img  { display: block; height: auto; max-height: 360px; border-radius: 16px; margin: 0 auto; }

  /* Cards: 2 colunas */
  .cards-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  /* Footer: 2 colunas */
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-bar { padding: 20px 32px; }
}

/* ── Tablet / Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* ---- Navbar ---- */
  #navbar { height: 70px; }
  .nav-inner {
    padding: 0 20px;
    gap: 0;
    justify-content: space-between;
  }
  .nav-logo img   { max-height: 56px; }
  .nav-links      { display: none; }
  .nav-inner > .btn-azul, .nav-inner > .btn-ciano { display: none; }
  .nav-hamburger  { display: flex; }
  .nav-mobile     { top: 70px; padding: 16px 20px 24px; }

  /* ---- Containers ---- */
  .container, .impl-inner { padding: 0 20px; }

  /* ---- Hero Home ---- */
  #hero {
    min-height: auto;
    padding: 130px 0 60px;
    background: #0a1a3e;
    text-align: center;
  }
  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-content { position: relative; padding-top: 0; display: flex; justify-content: center; }
  .hero-text    { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-title   { font-size: 32px; line-height: 1.25; margin-bottom: 16px; }
  .hero-desc    { font-size: 15px; max-width: 100%; margin-bottom: 28px; text-align: center; }
  .hero-tagline { font-size: 10px; letter-spacing: 2px; }

  /* ---- Hero páginas internas ---- */
  #hero-empresa,
  #hero-metod,
  #hero-escolas,
  #hero-contato { padding: 130px 0 56px; text-align: center; }

  .hero-empresa-title,
  .hero-metod-title,
  .hero-escolas-title,
  .hero-contato-title { font-size: 32px; }

  /* ---- Seções home — padding ---- */
  #proposito, #proporciona, #beneficios,
  #implementacao, #depoimentos, #futuro { padding: 60px 0; }
  #footer { padding: 48px 0 0; }

  /* ---- Tipografia geral ---- */
  .sec-title  { font-size: 26px; }
  .sec-subtitle br { display: none; }
  .futuro-title { font-size: 26px; }

  /* ---- Propósito ---- */
  .proposito-content    { text-align: center; align-items: center; }
  .proposito-content h2 { font-size: 1.8rem; }
  .proposito-stats      { grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
  .stat-box             { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .stat-box-num         { font-size: 32px; }
  .proposito-btn        { font-size: 15px; padding: 14px 32px; align-self: center; }

  /* ---- Proporciona cards ---- */
  .cards-grid   { grid-template-columns: 1fr; max-width: 100%; margin: 24px auto; }

  /* ---- Benefícios ---- */
  .beneficios-inner { padding: 0 !important; text-align: center; }
  .beneficios-inner > div { justify-content: center; }
  .ben-title        { font-size: 26px; }
  .ben-sub          { font-size: 15px; margin-bottom: 32px; }
  .ben-sub br       { display: none; }
  .ben-grid         { grid-template-columns: 1fr; gap: 20px; }
  .ben-card         { padding: 24px 20px; text-align: left; }

  /* ---- WhatsApp Float ---- */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  /* ---- Implementação ---- */
  .impl-grid      { flex-direction: column; gap: 32px; }
  .impl-img-circle { display: block; width: 180px; height: 180px; margin: 0 auto; border-width: 4px; box-shadow: 0 0 0 10px rgba(0, 212, 245, 0.1); }
  .impl-col-left,
  .impl-col-right { margin: 0; gap: 16px; width: 100%; }
  .impl-step      { width: 100%; justify-content: flex-start; }

  /* ---- Depoimentos ---- */
  .dep-box         { flex-direction: column; align-items: center; }
  .dep-left        { width: 100%; height: 320px; border-radius: 16px; }
  .dep-left-content { padding: 24px 20px; }
  .dep-left-title  { font-size: 22px; margin-bottom: 16px; }
  .dep-right       { width: 92%; margin-left: 0; margin-top: -60px; padding: 24px 20px; }

  /* ---- Futuro ---- */
  .futuro-grid { text-align: center; }
  .futuro-p { font-size: 15px; }
  .futuro-grid .btn-ciano { margin: 16px auto 0; }

  /* ---- Footer ---- */
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px 16px; text-align: left; }
  .footer-grid > div:first-child { display: block; padding-top: 150px; }
  .footer-grid > div:first-child img { display: none !important; }
  .footer-desc       { display: none; }
  .footer-contact-row { justify-content: flex-start; }
  .footer-social     { justify-content: flex-start; }
  .footer-bottom-bar { flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 12px; text-align: left; padding: 24px 20px; }

  /* Ajuste para o botão caber na coluna dupla do mobile */
  .footer-grid .btn-ciano {
    padding: 12px 16px !important;
    font-size: 13px !important;
    width: 100%;
  }

  /* ---- Páginas internas — seções ---- */
  #ferramentas, #quem-somos, #numeros,
  #diferenciais, #muito-alem, #escolas-section,
  #cta-escolas, .segmento, #porque, #contato-section { padding: 60px 0; }

  /* Empresa */
  .quem-somos-grid           { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .quem-somos-grid > div:first-child { padding-left: 0; display: flex; flex-direction: column; align-items: center; }
  .quem-somos-p               { text-align: center; }
  .fotos-grid img             { height: 300px; }
  .numeros-grid               { grid-template-columns: 1fr 1fr; gap: 16px; }
  .numeros-title              { font-size: 24px; margin-bottom: 32px; }
  .diferenciais-inner         { grid-template-columns: 1fr; text-align: center; }
  .diferenciais-title         { font-size: 26px; margin-bottom: 24px; }
  .muito-alem-grid            { grid-template-columns: 1fr; text-align: center; }
  .muito-alem-title           { font-size: 26px; }
  .items-grid                 { margin-right: 0; grid-template-columns: 1fr; text-align: left; }
  .muito-alem-img             { width: 100% !important; margin-top: 32px; }

  /* Metodologia */
  .ferramentas-grid  { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .ferramentas-title { font-size: 26px; }
  .ferramentas-grid .btn-ciano { margin: 0 auto; }
  .numeros-list      { width: 100%; text-align: left; }
  .segmento-grid     { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .segmento-img-wrap img { height: 280px; }
  .segmento-badge    { display: none; }
  .segmento-list     { text-align: left; }
  .segmento-grid .btn-ciano { margin: 0 auto; }
  .porque-title      { font-size: 26px; }

  /* Escolas */
  .cta-title       { font-size: 22px; }

  /* Fale conosco */
  .contato-grid    { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .contato-title   { font-size: 26px; }
  .contato-desc    { font-size: 15px; }
  .contato-info-item { font-size: 15px; gap: 10px; justify-content: center; }
  .contato-redes   { margin-top: 32px; }
  .form-box        { padding: 24px 20px 0; text-align: left; }
  .form-intro      { text-align: center; }
  .btn-submit      { width: calc(100% + 40px); margin: 0 -20px -1px; }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {

  /* Navbar */
  .nav-logo img { max-height: 50px; }

  /* Hero home */
  .hero-title { font-size: 22px; }
  .hero-desc  { font-size: 13px; }
  .btn-ciano  { padding: 12px 26px; font-size: 14px; }

  /* Hero interno */
  #hero-empresa, #hero-metod,
  #hero-escolas, #hero-contato { padding: 90px 0 44px; }
  .hero-empresa-title, .hero-metod-title,
  .hero-escolas-title, .hero-contato-title { font-size: 24px; }

  /* Seções home */
  #proposito, #proporciona, #beneficios,
  #implementacao, #depoimentos, #futuro { padding: 52px 0; }

  /* Propósito */
  .proposito-content h2 { font-size: 1.4rem; }
  .stat-box-num         { font-size: 24px; }
  .stat-box-label       { font-size: 12px; }

  /* Depoimentos */
  .dep-left         { height: 240px; }
  .dep-header       { flex-wrap: wrap; }
  .dep-stars        { width: 100%; margin-top: 6px; }
  .dep-name         { font-size: 13px; }
  .dep-cargo        { font-size: 11px; }
  .dep-quote        { font-size: 12px; line-height: 1.7; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; }

  /* Empresa */
  .numeros-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .numero-card   { padding: 20px 12px; }
  .numero-val    { font-size: 22px; }
  .numero-desc   { font-size: 11px; }
  .items-grid    { grid-template-columns: 1fr; margin-right: 0; }
  .diferenciais-cards { grid-template-columns: 1fr; }

  /* Metodologia */
  .segmento-img-wrap img { height: 200px; }
  .segmento-title { font-size: 18px; }
  .num-item { margin-left: 16px; padding-left: 8px; }
  .num-circle { width: 36px; height: 36px; font-size: 15px; margin-left: -16px; }

  /* Escolas */
  .logo-card img  { height: 56px; max-width: 130px; }
  .logos-row      { gap: 10px; }
  .cidades-par    { gap: 20px; flex-direction: column; align-items: center; }
  .cidade-nome    { font-size: 18px; margin-bottom: 20px; }
  .cidade-par-nome { font-size: 16px; }
  .cidade-bloco   { margin-bottom: 40px; }

  /* Fale conosco */
  .contato-title   { font-size: 18px; }
  .contato-sub     { font-size: 16px; }
  .contato-info-item { font-size: 13px; }
  .form-intro      { font-size: 16px; }
  .form-group input,
  .form-group textarea { font-size: 14px; padding: 10px 12px; }
  .form-check label { font-size: 12px; }
}

/* ── Mobile pequeno (≤375px) ── */
@media (max-width: 375px) {

  .container, .impl-inner { padding: 0 16px; }

  /* Hero home */
  .hero-tagline { display: none; }
  .hero-title   { font-size: 20px; }

  /* Hero interno */
  #hero-empresa, #hero-metod,
  #hero-escolas, #hero-contato { padding: 80px 0 36px; }
  .hero-empresa-title, .hero-metod-title,
  .hero-escolas-title, .hero-contato-title { font-size: 20px; }

  /* Tipografia */
  .sec-title    { font-size: 18px; }
  .ben-title    { font-size: 18px; }
  .futuro-title { font-size: 18px; }

  /* Stats */
  .stat-box-num   { font-size: 22px; }
  .stat-box-label { font-size: 11px; }

  /* Cards */
  .ben-card       { padding: 20px 16px; }
  .ben-card-title { font-size: 15px; }

  /* Logos escolas */
  .logo-card img  { height: 44px; max-width: 110px; }

  /* Diferenciais */
  .dif-card  { padding: 10px 8px; gap: 8px; }
  .dif-text  { font-size: 11px; }
  .dif-icon  { width: 30px; height: 30px; }

  /* Números empresa */
  .numeros-grid  { grid-template-columns: 1fr 1fr; }
  .numero-val    { font-size: 20px; }
  .numero-icon   { width: 40px; height: 40px; }

  /* Depoimento */
  .dep-left-title { font-size: 16px; }
  .dep-right      { padding: 16px 14px; }

  /* Implementação */
  .impl-step-num  { width: 36px; height: 36px; font-size: 15px; }
  .impl-step-text { font-size: 12px; }
}

/* ==========================================================
   PÁGINA EMPRESA
========================================================== */

/* Hero empresa */
#hero-empresa {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 160px 0 80px;
}
.hero-empresa-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-empresa-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 62, 0.65);
}
.hero-empresa-content {
  position: relative;
  z-index: 2;
}
.hero-empresa-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.hero-empresa-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #29abe2;
  z-index: 3;
}

/* Quem somos */
#quem-somos {
  background: #fff;
  padding: 90px 0;
}
.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quem-somos-grid > div:first-child {
  padding-left: 100px;
}
.quem-somos-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a4bbd;
  margin-bottom: 18px;
}
.quem-somos-p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}
.fotos-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Números */
#numeros {
  background: #f5f7fa;
  padding: 80px 0;
  text-align: center;
}
.numeros-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 48px;
}
.numeros-title .hl { color: #00d4f5; }
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.numero-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
}
.numero-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.numero-icon svg { width: 26px; height: 26px; fill: #00d4f5; }
.numero-val {
  font-size: 28px;
  font-weight: 800;
  color: #00d4f5;
  font-family: "Orbitron", sans-serif;
  line-height: 1;
}
.numero-desc {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}

/* Diferenciais — background injetado via functions.php */
#diferenciais {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.diferenciais-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.diferenciais-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.diferenciais-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.3;
}
.diferenciais-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dif-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.dif-card:hover { background: rgba(255, 255, 255, 0.15); }
.dif-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 212, 245, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dif-icon svg { width: 18px; height: 18px; fill: #00d4f5; }
.dif-text {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  font-family: "Poppins", sans-serif;
}

/* Muito além */
#muito-alem {
  background: #fff;
  padding: 90px 0;
}
.muito-alem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.muito-alem-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #00d4f5;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}
.muito-alem-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 14px;
}
.muito-alem-title .hl { color: #00d4f5; }
.muito-alem-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
  font-family: "Poppins", sans-serif;
}
.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  align-items: stretch;
  margin-right: -60px;
  position: relative;
  z-index: 2;
}
.item-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.item-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00d4f5;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.item-text {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
.muito-alem-img {
  width: 75%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 32px rgba(26, 75, 189, 0.12);
}

/* ==========================================================
   PÁGINA METODOLOGIA
========================================================== */
#hero-metod { position:relative; overflow:hidden; background:#fff; padding:160px 0 80px; }
.hero-metod-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-metod-overlay { position:absolute; inset:0; background:rgba(10,26,62,.65); }
.hero-metod-content { position:relative; z-index:2; }
.hero-metod-title { font-size:40px; font-weight:800; color:#fff; line-height:1.2; }
.hero-metod-bar { position:absolute; bottom:0; left:0; right:0; height:8px; background:#29abe2; z-index:3; }

#ferramentas { background:#fff; padding:80px 0; }
.ferramentas-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.ferramentas-title { font-size:24px; font-weight:700; color:#1a4bbd; line-height:1.3; margin-bottom:20px; }
.ferramentas-title .hl { color:#00d4f5; }
.ferramentas-p { font-size:13px; color:#555; line-height:1.8; margin-bottom:12px; font-family:"Poppins",sans-serif; }

.numeros-list { display:flex; flex-direction:column; gap:20px; width:60%; }
.num-item { display:flex; align-items:center; gap:0; border:3px solid #f4f8fc; border-radius:12px; padding:16px 18px 16px 10px; margin-left:22px; position:relative; }
.num-circle { width:44px; height:44px; border-radius:50%; background:#00d4f5; color:#fff; font-size:18px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-family:"Orbitron",sans-serif; box-shadow:0 4px 14px rgba(0,212,245,0.3); margin-left:-22px; margin-right:14px; }
.num-text { font-size:13px; color:#444; line-height:1.55; font-family:"Poppins",sans-serif; }
.num-text .hl { color:#00d4f5; font-weight:600; }

.segmento { padding:70px 0; }
.segmento-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.segmento-img-wrap { position:relative; }
.segmento-img-wrap img { width:100%; height:380px; object-fit:cover; display:block; border-radius:16px; }
.segmento-badge { position:absolute; bottom:-60px; left:-240px; width:30px; height:auto; }
.segmento-tag { font-size:10px; letter-spacing:2px; color:#00d4f5; text-transform:uppercase; font-weight:600; margin-bottom:8px; font-family:"Poppins",sans-serif; }
.segmento-title { font-size:22px; font-weight:700; color:#1a4bbd; margin-bottom:14px; line-height:1.3; }
.segmento-desc { font-size:13px; color:#555; line-height:1.8; margin-bottom:20px; font-family:"Poppins",sans-serif; }
.segmento-list { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.segmento-list li { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:#444; font-family:"Poppins",sans-serif; line-height:1.5; }
.segmento-list li::before { content:""; width:8px; height:8px; border-radius:50%; background:#00d4f5; flex-shrink:0; margin-top:6px; }

#porque { background:#fff; padding:80px 0; text-align:center; }
.porque-title { font-size:24px; font-weight:700; color:#1a4bbd; margin-bottom:24px; line-height:1.3; }
.porque-title .hl { color:#00d4f5; }
.porque-p { font-size:14px; color:#555; line-height:1.8; max-width:680px; margin:0 auto 16px; font-family:"Poppins",sans-serif; }

/* ==========================================================
   PÁGINA FALE CONOSCO
========================================================== */
#hero-contato { position:relative; overflow:hidden; background:#fff; padding:160px 0 80px; }
.hero-contato-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-contato-overlay { position:absolute; inset:0; background:rgba(10,26,62,.68); }
.hero-contato-content { position:relative; z-index:2; }
.hero-contato-title { font-size:36px; font-weight:800; color:#fff; line-height:1.2; }
.hero-contato-deco { position:absolute; bottom:0; right:0; width:55%; height:100%; z-index:1; clip-path:polygon(18% 100%, 100% 100%, 100% 0%); background:#29abe2; opacity:.18; }
.hero-contato-bar { position:absolute; bottom:0; left:0; right:0; height:8px; background:#29abe2; z-index:3; }

#contato-section { background:#fff; padding:90px 0; }
.contato-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:80px; align-items:start; }
.contato-title { font-size:22px; font-weight:700; color:#1a4bbd; line-height:1.35; margin-bottom:16px; }
.contato-title .hl { color:#00d4f5; }
.contato-desc { font-size:14px; color:#666; line-height:1.75; margin-bottom:36px; font-family:"Poppins",sans-serif; }
.contato-sub { font-size:22px; font-weight:700; color:#1a4bbd; margin-bottom:16px; font-family:"Orbitron",sans-serif; }
.contato-info-item { display:flex; align-items:center; gap:14px; margin-bottom:16px; font-family:"Poppins",sans-serif; font-size:17px; color:#444; }
.contato-redes { margin-top:32px; }

.form-box { border:1.5px solid #d8e6f0; border-radius:14px; padding:28px 28px 24px; background:#fff; }
.form-intro { font-size:20px; color:#1a4bbd; margin-bottom:24px; line-height:1.4; font-family:"Orbitron",sans-serif; font-weight:700; }
.form-intro .hl { color:#00d4f5; }
.form-group { margin-bottom:10px; }
.form-group input,
.form-group textarea { width:100%; background:#f0f4f8; border:none; border-radius:6px; padding:11px 14px; font-size:13px; color:#444; font-family:"Poppins",sans-serif; outline:none; transition:box-shadow .2s; }
.form-group input:focus,
.form-group textarea:focus { box-shadow:0 0 0 2px #00d4f5; }
.form-group textarea { resize:vertical; min-height:90px; }
.form-check { display:flex; align-items:flex-start; gap:10px; margin-bottom:18px; margin-top:4px; }
.form-check input[type="checkbox"] { width:18px; height:18px; margin-top:3px; accent-color:#00d4f5; flex-shrink:0; }
.form-check label { font-size:14px; color:#666; line-height:1.5; }
.form-check label a { color:#00d4f5; text-decoration:underline; }
.btn-submit { width:calc(100% + 56px); margin:0 -28px -24px -28px; background:#00d4f5; color:#fff; border:none; border-radius:0 0 12px 12px; padding:18px; font-size:15px; font-weight:700; cursor:pointer; font-family:"Poppins",sans-serif; transition:background .2s; letter-spacing:.5px; display:block; }
.btn-submit:hover { background:#00bcd4; }

/* ==========================================================
   FIX CONTACT FORM 7
========================================================== */
.form-box .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}
/* Oculta o ícone de carregando (spinner) para ele não criar espaços invisíveis */
.form-box .wpcf7-spinner {
  display: none !important;
}

/* ==========================================================
   PÁGINA ESCOLAS
========================================================== */
#hero-escolas { position:relative; overflow:hidden; background:#fff; padding:160px 0 80px; }
.hero-escolas-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-escolas-overlay { position:absolute; inset:0; background:rgba(10,26,62,.68); }
.hero-escolas-content { position:relative; z-index:2; }
.hero-escolas-title { font-size:36px; font-weight:800; color:#fff; line-height:1.2; }
.hero-escolas-bar { position:absolute; bottom:0; left:0; right:0; height:8px; background:#29abe2; z-index:3; }

#escolas-section { background:#fff; padding:80px 0 60px; }
.cidade-bloco { margin-bottom:60px; }
.cidade-nome { font-size:22px; font-weight:700; color:#1a4bbd; font-family:"Orbitron",sans-serif; display:block; width:100%; text-align:center; margin-bottom:32px; }
.logos-row { display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; margin-bottom:16px; }
.logo-card { display:flex; align-items:center; justify-content:center; padding:12px 16px; background:#fff; border-radius:8px; }
.logo-card img { height:130px; width:auto; max-width:220px; object-fit:contain; display:block; }
.cidades-par { display:flex; justify-content:center; gap:80px; flex-wrap:wrap; margin-bottom:60px; }
.cidade-par-bloco { text-align:center; }
.cidade-par-nome { font-size:20px; font-weight:700; color:#1a4bbd; margin-bottom:20px; font-family:"Orbitron",sans-serif; }

#cta-escolas { background:#fff; padding:60px 0 80px; text-align:center; border-top:1px solid #f0f0f0; }
.cta-title { font-size:22px; font-weight:700; color:#1a4bbd; line-height:1.4; margin-bottom:28px; }
.cta-title .hl { color:#00d4f5; }

/* Responsivo páginas internas */
@media (max-width: 768px) {
  .ferramentas-grid, .segmento-grid { grid-template-columns:1fr; }
  .numeros-list { width:100%; }
  .contato-grid { grid-template-columns:1fr; }
  .logos-row { gap:16px; }
  .logo-card img { height:60px; }
  .cidades-par { gap:40px; }
}

/* Responsivo empresa */
@media (max-width: 768px) {
  .quem-somos-grid { grid-template-columns: 1fr; }
  .quem-somos-grid > div:first-child { padding-left: 0; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .diferenciais-inner { grid-template-columns: 1fr; }
  .muito-alem-grid { grid-template-columns: 1fr; }
  .items-grid { margin-right: 0; }
  .muito-alem-img { width: 100%; }
}
@media (max-width: 480px) {
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .items-grid { grid-template-columns: 1fr; }
  .diferenciais-cards { grid-template-columns: 1fr; }
}

/* ==========================================================
   RESPONSIVO GLOBAL – PÁGINAS INTERNAS
   Hero, benefícios, formulário, footer em todos os tamanhos
========================================================== */

/* --- Tablet (≤768px) --- */
@media (max-width: 768px) {

  /* Hero das páginas internas */
  #hero-empresa,
  #hero-metod,
  #hero-escolas,
  #hero-contato {
    padding: 110px 0 60px;
  }
  .hero-empresa-title,
  .hero-metod-title,
  .hero-escolas-title,
  .hero-contato-title {
    font-size: 28px;
  }

  /* Benefícios: remove padding lateral inline excessivo no mobile */
  .beneficios-inner {
    padding: 0 !important;
  }
  .ben-sub br { display: none; }

  /* Propósito: stats em coluna única */
  .proposito-stats { grid-template-columns: 1fr 1fr; }
  .proposito-content h2 { font-size: 1.7rem; }

  /* Depoimento */
  .dep-left-content { padding: 24px 20px; }
  .dep-left { min-height: 280px; }

  /* Números (empresa) */
  .numeros-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Ferramentas metodologia */
  .numeros-list { width: 100%; }
  .segmento-img-wrap img { height: 220px; }
  .segmento-badge { display: none; }

  /* Contato */
  .contato-title { font-size: 20px; }
  .contato-sub { font-size: 18px; }
  .contato-info-item { font-size: 14px; gap: 10px; }
  .contato-info-item svg { width: 22px; height: 22px; }

  /* Formulário */
  .form-box { padding: 20px 20px 0; }
  .btn-submit {
    width: calc(100% + 40px);
    margin: 0 -20px -1px -20px;
  }

  /* Seções internas */
  #ferramentas,
  #quem-somos,
  #numeros,
  #diferenciais,
  #muito-alem,
  #escolas-section,
  #cta-escolas,
  .segmento,
  #porque,
  #contato-section {
    padding: 64px 0;
  }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
	
	#objetivos .card h3 {
		max-width: 100% !important;
	}
}

/* --- Mobile (≤480px) --- */
@media (max-width: 480px) {

  /* Hero interno menor */
  #hero-empresa,
  #hero-metod,
  #hero-escolas,
  #hero-contato {
    padding: 90px 0 44px;
  }
  .hero-empresa-title,
  .hero-metod-title,
  .hero-escolas-title,
  .hero-contato-title {
    font-size: 24px;
  }

  /* Nav mobile ajuste */
  .nav-inner { gap: 16px; }
  .nav-logo img { max-height: 60px; }

  /* Propósito */
  .proposito-stats { grid-template-columns: 1fr 1fr; }
  .stat-box-num { font-size: 28px; }

  /* Logos escolas menores */
  .logo-card img { height: 50px; max-width: 140px; }
  .logos-row { gap: 12px; }
  .cidades-par { gap: 24px; }
  .cidade-nome { font-size: 18px; }
  .cidade-par-nome { font-size: 16px; }

  /* Números empresa */
  .numero-val { font-size: 22px; }
  .numero-desc { font-size: 11px; }

  /* Depoimento */
  .dep-right { padding: 20px 16px; }
  .dep-name { font-size: 13px; }
  .dep-cargo { font-size: 11px; }
  .dep-quote { font-size: 12px; }

  /* Muito além */
  .muito-alem-img { width: 100%; }
  .items-grid { margin-right: 0; }

  /* CTA escolas */
  .cta-title { font-size: 18px; }

  /* Formulário */
  .form-intro { font-size: 16px; }
  .form-group input,
  .form-group textarea { font-size: 14px; }

  /* Títulos seção */
  .ferramentas-title { font-size: 20px; }
  .porque-title { font-size: 20px; }
  .segmento-title { font-size: 18px; }
  .quem-somos-title { font-size: 20px; }
  .muito-alem-title { font-size: 20px; }
  .diferenciais-title { font-size: 20px; }
  .numeros-title { font-size: 20px; }
  .contato-title { font-size: 18px; }

  /* Footer coluna única */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- Mobile pequeno (≤375px) --- */
@media (max-width: 375px) {

  #hero-empresa,
  #hero-metod,
  #hero-escolas,
  #hero-contato {
    padding: 80px 0 40px;
  }
  .hero-empresa-title,
  .hero-metod-title,
  .hero-escolas-title,
  .hero-contato-title {
    font-size: 20px;
  }

  .proposito-stats { grid-template-columns: 1fr 1fr; }
  .stat-box-num { font-size: 24px; }
  .stat-box-label { font-size: 12px; }

  .numeros-grid { grid-template-columns: 1fr 1fr; }

  .ben-card { padding: 24px 18px; }
  .ben-card-title { font-size: 15px; }

  .logo-card img { height: 40px; max-width: 110px; }

  .dif-card { padding: 12px 10px; }
  .dif-text { font-size: 12px; }
}

@media (max-width: 575px) { 
	#conteudo-campeonato .lista-campeonato li {
		max-width: 100% !important;
	}
	
	.img-robo {
		max-width: 110px !important;
	}
}

section#campeonato, section#objetivos, section#conteudo-campeonato {
	padding: 110px 0;
}

#campeonato h2 {
	max-width: 480px;
	font-family: "Orbitron", sans-serif;
	color: #064b76;
}

#campeonato p {
	color: #6a6a6a;
}

#campeonato .card {
	width: auto;
	border-radius: 33px;
    background-color: rgb(254, 254, 254);
    box-shadow: 0px 0px 7px 0px rgba(11, 8, 11, 0.22);
	padding: 20px;
}

#campeonato .card img {
	max-width: 420px;
}

section#objetivos {
	background-image: url('https://ambiente.clientemarcasite.com.br/Zuhri/wp-content/uploads/2026/07/banner-objetivos.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#objetivos h2 {
	font-family: "Orbitron", sans-serif;
	font-size: 30px;
	line-height: 36px;
	font-weight: 600;
	color: white;
}

#objetivos .card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-radius: 11px;
  	background-color: rgb(71, 114, 157, 0.60);
  	box-shadow: 0px 0px 7px 0px rgba(11, 8, 11, 0.08);
	padding: 20px 30px;
	height: 100%;
}

#objetivos .card img {
	max-width: 65px;
}

#objetivos .card h3 {
	max-width: 210px;
	font-family: "Orbitron", sans-serif;
	font-size: 20px;
	line-height: 26px;
	font-weight: 500;
	color: white;
}


/* ================= Conteudo Campeonato ================= */
#conteudo-campeonato .row {
	align-items: center;
	row-gap: 60px;
}

#conteudo-campeonato h2 {
	max-width: 340px;
	margin-bottom: 25px;
	font-family: "Orbitron", sans-serif;
	font-size: 30px;
	line-height: 36px;
	font-weight: 600;
	color: #064b76;
}

/* Lista com numero */
#conteudo-campeonato .lista-campeonato {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
	padding: 0;
}

#conteudo-campeonato .lista-campeonato li {
	max-width: 350px;
	display: flex;
	align-items: center;
	gap: 15px;
	border-radius: 11px;
	background-color: rgb(254, 254, 254);
	box-shadow: 0px 0px 7px 0px rgba(11, 8, 11, 0.10);
	padding: 14px 20px;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	line-height: 20px;
	color: #6a6a6a;
}

#conteudo-campeonato .lista-campeonato li .numero {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #0b9fe0;
	font-family: "Orbitron", sans-serif;
	font-weight: 600;
	color: white;
}

/* Botao */
#conteudo-campeonato .btn-campeonato {
	display: inline-block;
	border-radius: 30px;
	background-color: #00afef;
	padding: 14px 34px;
	font-family: "Orbitron", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: white;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

#conteudo-campeonato .btn-campeonato:hover {
	background-color: #064b76;
}

/* Imagem */
#conteudo-campeonato img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}

/* Espacamento das colunas do campeonato (evita texto colado na imagem) */
@media (min-width: 992px) {
	#conteudo-campeonato .col-lg-6:has(img),
	#conteudo-campeonato .col-lg-6:has(h2) {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* Mobile: conteudo em cima e imagem embaixo (uniforme em todos os pares) */
@media (max-width: 991.98px) {
	#conteudo-campeonato .row {
		flex-direction: column;
	}
	/* Par 1: texto (col 1) antes da imagem (col 2) */
	#conteudo-campeonato .col-lg-6:nth-child(4n+1) { order: 1; }
	#conteudo-campeonato .col-lg-6:nth-child(4n+2) { order: 2; }
	/* Par 2: texto (col 4) antes da imagem (col 3) */
	#conteudo-campeonato .col-lg-6:nth-child(4n+4) { order: 3; }
	#conteudo-campeonato .col-lg-6:nth-child(4n+3) { order: 4; }
}

.img-robo {
	width: 100%;
    max-width: 180px;
    position: absolute;
    left: 0;
    bottom: -20px;
}
