:root {
  --bg: #0b0d12;
  --card: #0f1720;
  --muted: #9aa3b2;
  --text: #e8ecf3;
  --brand1: #7c5cff;
  --brand2: #23d5ab;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Noto Sans, sans-serif;
  background: linear-gradient(180deg, #06070a, #0b0d12);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 10, 14, .55);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  padding: 20px 0;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

h1, h2, h3 {
  font-family: 'Calisto MT', serif;
  font-weight: 700;
  text-align: center;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 40px;
}

h3 {
  font-size: 1.5rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

section {
  width: 100%;
  padding: 40px 0;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.full-width-section {
  width: 100%;
  text-align: center;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 70px;
 margin-bottom: 150px;
}

.button {
  background-color: var(--brand1);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #5d42c3;
}

.main-image-placeholder {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 12px;
}

.services-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 45%;
  text-align: center;
}

.why-hire-section .why-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.full-width-gallery {
  width: 100%;
  padding: 0;
  position: relative;
}

.gallery-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0;
}

.instagram-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-post {
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.instagram-media {
  margin-top: 15px;
  overflow: hidden;
  border-radius: 12px;
}

.instagram-media img, .instagram-media iframe {
  width: 100%;
  height: auto;
  display: block;
}

.instagram-meta {
  margin-top: 10px;
}

.likes {
  font-weight: bold;
}

.logo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-top: 20px;
}

.logo-gallery img {
  width: 100%;
  height: auto;
  max-width: 150px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo-gallery img:hover {
  transform: scale(1.1);
}

.list-container {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.list-container ul {
  list-style: none;
  padding: 0;
}

.list-container li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-item {
  text-align: center;
}

.feedback-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 380px;
}

.feedback-box {
  background: var(--card);
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feedback-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.footer-links .large-link {
  font-size: 1.2rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links .large-link:hover {
  color: var(--brand2);
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  .service-card {
    max-width: 100%;
  }
}
/* ===== Adições mínimas (colar no final de style.css) ===== */

/* centraliza textos e caixas sem substituir nada */
body, html {
  box-sizing: border-box;
}
.container, main, section, .content-container, .service-card, .why-card, .feedback-box, .contact-item {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* garante que as caixas fiquem centradas e com largura confortável */
.service-card, .why-card, .feedback-box, .contact-item {
  max-width: 760px;
  width: calc(100% - 40px);
  margin: 14px auto;
}

/* textos centralizados onde for necessário */
.container * { text-align: inherit; }

/* MENU FLUTUANTE (pequeno, não quebra seu layout) */
.nav-menu {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 8px 22px rgba(2,6,12,0.6);
}
.nav-menu ul { list-style: none; margin: 0; padding: 0; display:flex; gap:8px; align-items:center; }
.nav-menu a {
  display:inline-block;
  padding:7px 10px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.04);
  background: transparent;
  transition: transform .12s ease, background .12s ease;
}
.nav-menu a:hover { transform: translateY(-3px); background: rgba(255,255,255,0.04); }

/* VARIANTES DE BOTÕES (apenas adicionar classes .green .red .outline onde quiser) */
.button.green {
  background: linear-gradient(90deg,#23d5ab,#06b48f);
  color: #042018;
  box-shadow: 0 10px 20px rgba(35,213,171,0.12);
}
.button.red {
  background: linear-gradient(90deg,#ff6b6b,#ff3b3b);
  color: #3b0505;
  box-shadow: 0 10px 20px rgba(255,107,107,0.12);
}
.button.outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.08);
  color: inherit;
  padding:10px 14px;
}

/* responsividade simples para o menu (mobile) */
@media (max-width:720px) {
  .nav-menu { right:10px; top:10px; padding:6px; }
  .nav-menu ul { gap:6px; }
  .nav-menu a { padding:6px 8px; font-size:0.95rem; }
  .service-card, .why-card, .feedback-box { width: calc(100% - 28px); }
}
.logo-gallery { display:grid; grid-template-columns:repeat(auto-fit, minmax(120px, 1fr)); gap:18px; align-items:center; justify-items:center; padding:6px; }
.logo-item { max-width:140px; max-height:90px; width:100%; height:90px; object-fit:contain; background:transparent; padding:8px; border-radius:8px; box-shadow: 0 6px 18px rgba(0,0,0,0.25); 
}


.section-texta {
margin-top: 250px;
  margin-bottom: 1px;
}



.section-text {
  margin-bottom: 1px;
}

.section-texti {
  margin-top: -80px;
  margin-bottom: 300px;
}

.main-image-placeholder {
  display: block;
  margin: 40px auto; /* mais espaço entre a foto e os outros elementos */
  max-width: 100%;
  height: auto;
}
.video-wrapper{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
}
.video-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
 margin-top: -273px;
}
.author-figure {
  margin: 40px 0;
  text-align: center;
 margin-top: -373px
}
.author-figure img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px; /* opcional */
}
.author-figure figcaption{
  margin-top: 8px;
  font-size: .95rem;
  color: #666;
}

.video-wrapper{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  margin: 30px 0; 
}
.video-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.video-fallback { text-align:center; margin:30px 0; }
.video-fallback img { max-width:100%; height:auto; display:block; margin:0 auto; cursor:pointer; border-radius:6px; }
.video-fallback figcaption { margin-top:8px; color:#666; font-size:.95rem; }

.author-figure {
  margin: 40px 0;
  text-align: center;
 margin-top: -130px;
}
.author-figure img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}
.author-figure figcaption{
  margin-top: 15px;
  font-size: .95rem;
  color: #666;
}

.services-section .service-card + .service-card {
  margin-top: 30px;
}


.services-section .service-card p {
  margin-bottom: 30px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 28px;
}

/* miniaturas */
.photo-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.photo-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* lightbox (modal) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none; /* mostrado via JS */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.lightbox.active { display: flex; }

.lightbox .lb-img {
  max-width: 95%;
  max-height: 85%;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: white;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 8px 12px;
  opacity: .9;
}

/* posição dos botões */
.lightbox .lb-close { top: 18px; right: 24px; font-size: 2.8rem; }
.lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 2.6rem; }
.lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 2.6rem; }

/* caption opcional (pequeno texto abaixo) */
.lb-caption {
  margin-top: 12px;
  color: #eee;
  font-size: .95rem;
  text-align: center;
}
/* 1) Regra geral para todas as imagens da página (segurança) */
img {
  max-width: 150%; /* nunca ultrapassa o container */
  height: auto;    /* mantém proporção */
  display: block;
}

/* 2) Galeria de fotos (cards / imagens grandes) */
.photo-gallery,
.gallery-block .photo-gallery { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: start;
}

/* imagens dentro da galeria de palestras */
.photo-gallery img,
figure img {
  width: 100%;         /* ocupa o espaço da coluna */
  max-height: 420px;   /* controla altura máxima para não ficar gigante */
  object-fit: cover;   /* corta bordas mantendo centralidade */
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* legenda */
figure figcaption {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #eee;
}

/* 3) Galeria de logos (deixar logos pequenas e uniformes) */
.logo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 14px;
  align-items: center;
  justify-items: center;
  padding: 8px 0;
}

.logo-gallery .logo-item {
  width: 360%;
  max-width: 150px;  /* controla o tamanho máximo do logo */
  height: auto;     /* altura uniforme */
  object-fit: contain; /* preserva proporção do logo */
  display: inline-block;
  filter: none;       /* por padrão colorido; use grayscale(1) se preferir */
  transition: transform .14s ease;
  margin: 8px;
  object-fit: contain; /* preserva proporção dentro da caixa */
  vertical-align: middle;
}
.logo-gallery a:hover .logo-item,
.logo-gallery .logo-item:hover {
  transform: translateY(-4px);
}

/* 4) Mobile tweak (opcional) */
@media (max-width: 520px) {
  .photo-gallery img,
  figure img { max-height: 220px; }
  .logo-gallery .logo-item { height: 48px; max-width: 110px; }
}
.page-palestras .video-wrapper {
  max-width: 560px;        /* largura máxima do player nesta página */
  margin: 24px auto;       /* centraliza e cria espaço */
  position: relative;
  padding-bottom: 25%;  /* 16:9 */
  height: 0;
}
.page-palestras .video-wrapper.small {
  max-width: 420px;        /* versão ainda menor, se usar a classe .small */
}
.page-palestras .video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ícone WhatsApp no footer / menu */
.whatsapp-link {
 position: relative;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  transition: transform .12s ease, box-shadow .12s ease;
}

.icon-whatsapp {
  width: 36px;    /* ajuste para 32/40/48 conforme preferir */
  height: 36px;
  display: block;
}

.icon-instagram {
  width: 30px;    /* ajuste para 32/40/48 conforme preferir */
  height: 35px;
  display: inline-flex;
}
/* se quiser manter o texto ao lado (opcional) */
.large-link instagram-link {
  gap: 8px;
  padding: 6px 10px;
}
large-link instagram-link .label {
  font-weight: 200;
  color: var(--text);
}


/* se quiser manter o texto ao lado (opcional) */
.whatsapp-link.with-text {
  gap: 8px;
  padding: 6px 10px;
}
.whatsapp-link.with-text .label {
  font-weight: 300;
  color: var(--text);
}

/* Footer — ícones sociais uniformes */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 50px 270px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* estilo comum para cada link do footer */
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

/* ícone (WhatsApp / Instagram) — mesmo tamanho para ambos */
.icon-social {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

/* texto ao lado do ícone — se quiser esconder em mobile, veja nota abaixo */
.link-text {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--text);
}

/* hover igual para ambos */
.footer-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(2,6,12,0.35);
  background: rgba(255,255,255,0.02);
}

/* se quiser o ícone colorido diferente no hover (opcional) */
/* .footer-link:hover .icon-social { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); } */

/* comportamento em telas pequenas */
@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-links {
    gap: 10px;
  }
  /* opcional: ocultar o texto deixando só o ícone no mobile */
  /* .link-text { display: none; } */
}

/* ----- Top socials (menu) ----- */
.top-socials {
  position: fixed;             /* mantém no topo junto com o menu */
  top: 14px;                   /* mesmo top da .nav-menu */
  right: 110px;                /* afasta das opções do menu — ajuste conforme precisar */
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10000;
  pointer-events: auto;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-decoration: none;
}

.top-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

/* hover idêntico ao footer */
.top-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(2,6,12,0.45);
  background: rgba(255,255,255,0.03);
}

/* pequena quebra para telas menores — esconde texto e reduz tamanho */
@media (max-width: 720px) {
  .top-socials {
    right: 12px;   /* alinhado com o menu móvel */
    top: 10px;
    gap: 8px;
  }
  .top-icon { width: 24px; height: 24px; }
}

/* classe de acessibilidade (visível só para screen readers) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}


/* CTA Agendar Voo */
.schedule-cta {
  display: flex;
  justify-content: center;
  margin: 28px 16px; /* espaço ao redor */
}

.btn-schedule {
  display: inline-block;
  width: 100%;
  max-width: 820px;         /* largura máxima do botão em telas grandes */
  text-align: center;
  padding: 16px 20px;
  border-radius: 14px;
  background: #22c55e;      /* verde (pode trocar) */
  color: #ffffff;
  font-weight: 700;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.18);
  transition: transform .16s ease, filter .16s ease;
}

/* Efeito hover / foco (acessibilidade) */
.btn-schedule:hover,
.btn-schedule:focus {
  transform: translateY(-3px);
  filter: brightness(0.96);
  outline: none;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.22);
}

/* Responsividade: manter legível em telas pequenas */
@media (max-width: 420px) {
  .btn-schedule {
    padding: 14px 12px;
    font-size: 1.05rem;
    border-radius: 10px;
  }
}

