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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}


/* Variáveis principais */
:root {
  --purple: #6C1AA6;           
  --purple-600: #5a1490;
  --bg: #f6f7fb;              
  --card-bg: rgba(255,255,255,0.85);
  --glass-alpha: 0.75;
  --muted: #6b6f77;
  --accent: linear-gradient(90deg,var(--purple),#8e44ff);
  --radius: 12px;
  --shadow-1: 0 6px 20px rgba(18,18,30,0.06);
  --shadow-2: 0 14px 50px rgba(18,18,30,0.08);
  color-scheme: light;

  /* reserva de espaço para header fixo */
  --header-h: 95px;
}

/* Evita que o header fixe sobreponha o conteúdo */
body {
  padding-top: var(--header-h);
}

/* opção para telas pequenas */
@media (max-width: 840px) {
  :root { --header-h: 72px; }
}

/* Base: html/body */
html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container central */
.container {
  max-width: 1150px;
  margin: 28px auto;
  padding: 0 20px;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.menu li a:hover {
  color: #d4a5ff;
}

/* ===== CABEÇALHO ===== */
#cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  z-index: 10;
  background: transparent;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

#cabecalho.scrolled {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

#cabecalho.scrolled .menu li a {
  color: white;
}

#navegacao {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#iconeempresa {
  max-height: 70px;
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #d4a5ff;
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   HERO / PRINCIPAL
=========================== */
.card-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
  margin-top: 18px;
}

.card-hero a {
  color: inherit;
}

.hero-left h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 18px;
}

.quick-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-1);
  transition: transform .16s ease, box-shadow .16s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(17,17,17,0.06);
  color: var(--purple);
  font-weight: 700;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 0;
}

/* ===========================
   FORM GLASS-CARD
=========================== */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.92));
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 30px rgba(18,18,30,0.06);
  border: 1px solid rgba(17,17,17,0.04);
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(18,18,30,0.09);
}

.glass-card h2 { margin-bottom: 6px; }

.form-compact label {
  display: block;
  margin: 10px 0 6px 0;
  font-size: 13px;
  color: var(--muted);
}

.form-compact input,
.form-compact textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  border: 1px solid rgba(17,17,17,0.06);
  background: white;
  font-size: 14px;
  color: #111;
  transition: box-shadow .12s, border-color .12s;
}

.form-compact input:focus,
.form-compact textarea:focus {
  outline: none;
  box-shadow: 0 6px 30px rgba(108,26,166,0.06);
  border-color: var(--purple);
}

.form-actions { display: flex; gap: 10px; margin-top: 12px; }
.btn-wa { background: #25D366; color: white; border-radius: 10px; padding: 11px 14px; font-weight: 800; }

/* ===========================
   CONTACT CARDS + MAP
=========================== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  margin: 28px 0 60px;
}

.contact-cards { display: flex; flex-direction: column; gap: 12px; }

.contact-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: white;
  border: 1px solid rgba(17,17,17,0.04);
  box-shadow: var(--shadow-1);
}

.cc-left {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(108,26,166,0.06), transparent);
  display: grid;
  place-items: center;
}

.cc-left .icon { width: 24px; height: 24px; stroke: var(--purple); fill: none; }

.cc-right h3 { margin: 0; font-size: 16px; }
.cc-right p { margin: 6px 0 0 0; color: var(--muted); font-weight: 600; }
.cc-right a { color: var(--purple-600); text-decoration: none; }

.card-map { background: white; border-radius: 12px; padding: 14px; border: 1px solid rgba(17,17,17,0.04); box-shadow: var(--shadow-1); }
.card-map h3 { margin-bottom: 10px; }
.map-frame { height: 220px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(17,17,17,0.04); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===========================
   Floating CTA / footer / toast
   =========================== */

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(99,34,145,0.16);
}
.floating-cta:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(99,34,145,0.2); }

/* ===== RODAPÉ ===== */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-contact h3 {
  color: #6a0dad;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-contact p, 
.footer-contact a {
  font-size: 1rem;
  margin: 10px 0;
  color: #ddd;
}

.footer-contact a.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}

.footer-contact a.whatsapp img {
  width: 20px;
  height: 20px;
}

.footer-contact a.whatsapp:hover {
  background-color: #1ebe54;
}

.footer-info {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  background: #111;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ===========================
   Responsive
   =========================== */

@media (max-width:1080px) {
  .card-hero { grid-template-columns: 1fr 380px; }
  .contact-section { grid-template-columns: 1fr 360px; }
}

@media (max-width:840px) {
  .card-hero { grid-template-columns: 1fr; gap: 18px; }
  .contact-section { grid-template-columns: 1fr; gap: 18px; }
  .hero-right { order: 2; }
  .hero-left { order: 1; }
  #iconeempresa { max-height: 56px; }
  .floating-cta { right: 14px; bottom: 14px; }
}

/* impressão */
@media print {
  body { padding-top: 0; }
  #cabecalho { position: static; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 200px;
    height: 100vh;
    background: linear-gradient(180deg, #6a0dad, #2c003e);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px;
    gap: 25px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.4);
    transition: right 0.3s ease-in-out;
    z-index: 15;
  }

  .menu li a {
    color: #fff;
    font-size: 18px;
  }

  .menu.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .text-overlay h1 {
    font-size: 2.5rem;
  }

  .modern-info-container {
    flex-direction: column;
    margin: 20px;
    padding: 30px;
  }
}

