:root{
  --accent:#ffd91a;
  --accent-2:#ffd91a;
  --dark:#0f1724;
  --muted:#6b7280;
  --card:#ffffff;
  --radius:14px;
  --container:1100px;
  --glass: rgba(255,255,255,0.06);
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,Arial,Helvetica,sans-serif;color:var(--dark);-webkit-font-smoothing:antialiased}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.container.narrow{max-width:900px}
/* ===== NAV DESKTOP ===== */
.navbar {
background: linear-gradient(to right, #180454, #3a0ca3);
}

.navbar nav {
  max-width: 1400px;
  height: 80px;
  padding: 0 20px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

/* MENU DESKTOP */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav-links li a:hover {
  opacity: 0.8;
}

/* BOTÃO CTA */
.cta-menu {
  background: var(--accent);
  padding: 10px 18px;
  border-radius: 12px;
  color: #000 !important;
  font-weight: 700;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
}

/* ===== OVERLAY ===== */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 9990;
  opacity: 0;
  transition: opacity .3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 850px) {

  /* some o menu desktop */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 18px;
    background: white;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 25px;
    position: fixed;
    right: 20px;
    top: 100px;
    width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all .35s ease;
    z-index: 9999;
  }

  /* quando abrir */
  .nav-links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* texto dos links */
  .nav-links li a {
    font-size: 17px;
    color: #fff;
  }

  .cta-menu {
    margin-top: 10px;
    padding: 14px;
    text-align: center;
  }

  /* mostra o hamburger */
  .menu-toggle {
    display: block;
  }
}

/* Esconde overlay e hamburger no desktop */
@media (min-width: 851px) {
  .menu-overlay {
    display: none !important;
  }
}

/* ================== MOBILE ================== */
@media (max-width: 900px) {

  /* esconde links desktop */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 86px;
    right: 5%;
    width: 260px;

    background: var(white);
    backdrop-filter: blur(25px);

    border-radius: 16px;
    padding: 1.2rem 0;
    text-align: left;

    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  }

  /* exibir links quando clicado */
  .nav-links.active {
    display: flex;
    animation: fadeIn 0.35s ease;
  }

  /* estiliza links dentro do menu mobile */
  .nav-links li a {
    color: var(--dark)!important;
    font-size: 1.1rem;
    padding: 12px 22px;
    display: block;
  }

  .cta-menu {
    background: var(--accent);
    color: #000 !important;
    margin: 10px 20px 0;
    text-align: center;
    border-radius: 12px;
    padding: 14px;
  }

  /* exibe hambúrguer */
  .menu-toggle {
    display: block;
  }

  /* Reduz tamanho da logo no mobile */
  .logo-img {
    height: 200px;
  }
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* SEÇÃO HERO */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(to right,#180454,#3a0ca3);
  padding: 40px 0;
}

/* GRID INTERNO */
.hero-inner {
  width: 95%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 100px;
}

/* LOGO */
.hero-logo {
  width: 350px; 
  height: 350px;
  display: flex;
  justify-content: flex-start;
  margin-right: 90px;
}

/* CAIXA SOBRE */
.hero-sobre {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 450px;
  width: 100%;
}

/* TÍTULO */
.hero-sobre h2 {
  margin-bottom: 15px;
  font-size: 32px;
}

/* ÁREA DOS BOTÕES */
.sobre-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #0055ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn:hover { background: #003fcc; }

.btn-alt {
  background: #eaeaea;
  color: #333;
}

.btn-alt:hover { background: #d5d5d5; }

/* 🔥 RESPONSIVO — LOGO some, apenas a caixa permanece */
@media (max-width: 768px) {

  /* adiciona espaço do menu de navegação */
  .hero {
    padding-top: 120px; /* ajuste o valor conforme a altura real da sua nav */
  }

  .hero-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px; /* reduz espaço vertical */
  }

  /* ⛔ REMOVE a logo no mobile */
  .hero-logo {
    display: none;
  }

  /* caixa ocupa o centro da tela */
  .hero-sobre {
    max-width: 90%;
    width: 100%;
  }

  .sobre-buttons {
    justify-content: center;
  }
}

/* SEÇÃO AMARELA */
.sobre-founder {
background: var(--accent);
padding: 80px 0;
color: #000;
}


.founder-title {
text-align: center;
font-size: 32px;
font-weight: 700;
margin-bottom: 50px;
width: 100%;
}


/* CAIXA BRANCA AO REDOR */
.founder-card {
background: #fff;
padding: 40px;
border-radius: 16px;
box-shadow: 0 8px 22px rgba(0,0,0,0.15);
max-width: 1100px;
margin: 0 auto;
}


.founder-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}


/* FOTO E NOME */
.founder-left {
text-align: center;
}


.founder-photo img {
width: 260px;
height: auto;
border-radius: 12px;
display: block;
margin: 0 auto 20px auto;
}


.founder-name {
font-size: 22px;
font-weight: 700;
}


/* TEXTO DA DIREITA */
.founder-right p {
margin-bottom: 18px;
line-height: 1.6;
font-size: 17px;
}


.founder-right ul {
margin: 15px 0;
padding-left: 20px;
}


.founder-right li {
margin-bottom: 8px;
font-size: 17px;
}


/* CARD AZUL DESTACADO */
.blue-card-center {
background: #3a0ca3;
color: white;
padding: 20px 24px;
border-radius: 14px;
font-size: 18px;
font-weight: 600;
text-align: center;
margin: 45px auto 0 auto;
max-width: 500px;
box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}


/* RESPONSIVO — APENAS MOBILE */
@media (max-width: 650px) {

  /* Caixa branca menor */
  .founder-card {
    max-width: 100%;
    padding: 24px;
  }

  /* Grid vira 1 coluna */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Foto reduzida */
  .founder-photo img {
    width: 170px;
  }

  /* Nome menor */
  .founder-name {
    font-size: 18px;
  }

  /* Textos menores */
  .founder-right p,
  .founder-right li {
    font-size: 15px;
    line-height: 1.55;
  }

  /* Card azul reduzido */
  .blue-card-center {
    max-width: 90%;
    padding: 14px 18px;
    font-size: 15px;
    margin-top: 35px;
  }
}


/* SEÇÃO CONFIAR */
.confiar-section {
background: white;
color: black;
padding: 60px 0;
text-align: center;
}


.confiar-inner p {
max-width: 700px;
margin: 20px auto;
font-size: 18px;
line-height: 1.7;
}


.btn-whats {
display: inline-block;
margin-top: 25px;
padding: 14px 24px;
background: #25d366;
color: #fff;
font-weight: 700;
border-radius: 10px;
text-decoration: none;
font-size: 18px;
transition: 0.2s ease;
}


.btn-whats:hover {
background: #1ebe5c;
}
.footer {
  background: linear-gradient(to right, #180454, #3a0ca3);
  color: #fff;
  padding: 30px 20px 20px;
  font-family: sans-serif;
}

/* CONTAINER PRINCIPAL (LOGO + MENU) */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* logo à esquerda, menu à direita */
  align-items: center; /* alinha verticalmente logo e links */
  gap: 20px;
}

/* LOGO */
.footer-logo img {
  width: 200px;   /* largura fixa */
  height: 150px;  /* altura fixa */
  object-fit: cover; /* preenche a área da logo */
  display: block;
}

/* MENU */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s;
}

.footer-menu a:hover {
  color: #ffd91a;
}

/* COPYRIGHT */
.copy {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column; /* logo acima, menu abaixo */
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-logo img {
    width: 150px;
    height: 112px; /* mantém proporção aproximada */
  }

  .footer-menu {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}