/* ============================
   VARIÁVEIS GLOBAIS
============================ */
:root {
  --blue: #1E3A5F;
  --blue-50: #E9F3FF;
  --blue-100: #CFE6FF;
  --text: #1b1f23;
  --muted: #637083;
  --white: #fff;
}

/* ============================
   RESET BÁSICO
============================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ============================
   CONTAINER GERAL
============================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   NAVBAR + LOGO + MENU
============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eef2f7;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-topo {
  height: 120px; /* Aumente ou diminua conforme desejar */
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

.menu a:hover {
  color: var(--blue);
}

/* Responsividade Navbar */
@media (max-width: 960px) {
  .nav__inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo-topo {
    height: 90px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .logo-topo {
    height: 70px;
  }

  .menu a {
    font-size: 14px;
  }
}

/* ============================
   HERO
============================ */
.hero {
  background: linear-gradient(180deg, var(--blue-50), #fff);
  padding: 60px 0 30px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--blue);
}

.hero__subline {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 18px;
}

.subtitle {
  color: var(--muted);
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.hero__photo img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(30, 58, 95, 0.25);
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================
   SEÇÕES
============================ */
.section {
  padding: 72px 0;
}

.section--alt {
  background: #f8fbff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.lead {
  font-size: 18px;
  color: #2a3342;
}

/* ============================
   CARDS
============================ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(30, 58, 95, 0.12);
}

.card h3 {
  margin-bottom: 8px;
  color: var(--blue);
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ============================
   CONTATO
============================ */
.section--cta {
  background: linear-gradient(180deg, var(--blue), #244b7a);
  color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.section--cta h2 {
  color: #fff;
}

.section--cta .lead {
  color: #f1f5ff;
}

.section--cta a {
  color: #fff;
  text-decoration: underline;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.map iframe {
  border-radius: 12px;
}

@media (max-width: 960px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   FOOTER
============================ */
.footer {
  background: #102743;
  color: #cbd5e1;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.footer__whats {
  color: #9ecbff;
  text-decoration: none;
}

.footer__whats:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .footer__inner {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================
   BOTÕES FLUTUANTES
============================ */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.floating-buttons a img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.floating-buttons a.whatsapp-button {
  background-color: #25D366;
}

.floating-buttons a.instagram-button {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.floating-buttons a.youtube-button {
  background-color: #FF0000;
}
/* ==== SEÇÃO PARCEIROS ==== */
.parceiros-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.parceiros-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.logos-container img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(20%);
}

.logos-container img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Responsividade */
@media (max-width: 768px) {
  .logos-container {
    gap: 20px;
  }

  .logos-container img {
    max-height: 60px;
    max-width: 140px;
  }
}

