/* ==========================================================================
   Bullbo Comércio de Brinquedos
   Paleta: 60% branco | 30% azul céu | 10% laranja
   Fonte: Baloo 2 (títulos) + Inter (texto)
   ========================================================================== */

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-deep: #075985;
  --primary-light: #e0f2fe;
  --primary-soft: #f0f9ff;
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --accent-light: #ffedd5;
  --wa: #25d366;
  --wa-dark: #1da851;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(2, 132, 199, 0.08);
  --shadow-md: 0 12px 32px rgba(2, 132, 199, 0.14);
  --radius: 20px;
  --header-h: 76px;
}

/* ---------- Reset e base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", "Inter", sans-serif;
  line-height: 1.15;
  color: var(--ink);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--primary-deep);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Botões (contraste WCAG AA) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease, box-shadow 0.2s ease;
}

.btn svg {
  flex-shrink: 0;
}

.btn:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  background: var(--wa);
  color: var(--ink);
  border-color: var(--wa-dark);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: var(--wa-dark);
  color: var(--ink);
  border-color: #166534;
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-deep);
  color: var(--white);
  border-color: var(--primary-deep);
}

.btn-nav {
  padding: 10px 18px;
  font-size: 14.5px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14.5px;
}

/* ---------- Header fixo ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--primary-dark);
}

.nav-link:hover {
  background: var(--primary-light);
  color: var(--primary-deep);
}

.nav-link.active {
  background: var(--primary-light);
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-dark);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 48px;
  background: var(--primary-light);
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -80px;
  background: url("../hero.png") center bottom / cover no-repeat;
  pointer-events: none;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--primary-soft) 30%,
    rgba(240, 249, 255, 0.9) 52%,
    rgba(240, 249, 255, 0.3) 100%
  );
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-bg::before {
  width: 460px;
  height: 460px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.14) 0%, rgba(234, 88, 12, 0) 70%);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  width: 520px;
  height: 520px;
  bottom: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.16) 0%, rgba(2, 132, 199, 0) 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(26px, 20px) scale(1.07);
  }
}

.hero .container {
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: 24px;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  text-align: left;
  gap: 56px;
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-content {
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.04em;
  margin-top: -40px;
  margin-bottom: 12px;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.85), 0 1px 3px rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.7s ease both;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.hero-title {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 800;
  color: #0080ff;
  margin-bottom: 18px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title-logo {
  display: block;
  width: min(500px, 100%);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(2, 132, 199, 0.28));
}

.hero-subtitle {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 36px;
  text-shadow: 0 2px 22px rgba(255, 255, 255, 0.9), 0 1px 4px rgba(255, 255, 255, 0.95);
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-text {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 8px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border-color: var(--ink);
}

.hero-actions .btn-outline:hover,
.hero-actions .btn-outline:focus {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero-media {
  position: relative;
  animation: fadeInUp 0.8s ease 0.45s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-media-card {
  border-radius: 28px;
}

.hero-mascot-main {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
  animation: float 6s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.2;
}

.hero-float-card span:last-child {
  font-size: 13px;
  color: var(--muted);
}

.hero-float-card-top {
  top: -58px;
  right: -46px;
}

.hero-float-card-bottom {
  bottom: -90px;
  left: -46px;
  animation-delay: -3s;
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.float-icon-blue {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.float-icon-orange {
  background: var(--accent-light);
  color: var(--accent-dark);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Formas decorativas do hero ---------- */
.hero-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-shape-star {
  top: 18%;
  left: 6%;
  font-size: 34px;
  color: var(--accent);
  opacity: 0.55;
  animation: spin 22s linear infinite;
}

.hero-shape-blob {
  width: 120px;
  height: 120px;
  bottom: 12%;
  right: 38%;
  border-radius: 62% 38% 55% 45% / 45% 58% 42% 55%;
  background: rgba(234, 88, 12, 0.12);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-shape-block {
  width: 54px;
  height: 54px;
  top: 12%;
  right: 24%;
  border-radius: 12px;
  border: 3px solid rgba(2, 132, 199, 0.4);
  transform: rotate(14deg);
  animation: float 8s ease-in-out 1s infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Produtos / galeria ---------- */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.product-card {
  flex: 0 0 calc(50% - 14px);
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover,
.product-card:has(.product-link:focus-visible) {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.product-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  outline: none;
}

.product-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 38, 61, 0.92) 0%, rgba(7, 38, 61, 0.55) 42%, rgba(7, 38, 61, 0.05) 75%);
  transition: background 0.3s ease;
}

.product-card:hover .product-overlay {
  background: linear-gradient(to top, rgba(234, 88, 12, 0.85) 0%, rgba(7, 38, 61, 0.55) 45%, rgba(7, 38, 61, 0.05) 78%);
}

.product-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  color: #fff;
}

.product-label-title {
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.product-label-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-label-cta svg {
  transition: transform 0.25s ease;
}

.product-card:hover .product-label-cta,
.product-link:focus-visible .product-label-cta {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

.product-card:hover .product-label-cta svg {
  transform: translateX(3px);
}

/* ---------- CTA Vitrine ---------- */
.showcase-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 32px;
}

.showcase-cta h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.showcase-cta p {
  color: var(--muted);
  font-size: 15px;
}

.vitrine-cta {
  padding: 64px 0;
}

.section-transition-img {
  width: 100%;
  line-height: 0;
}

.section-transition-img img {
  display: block;
  width: 100%;
  height: auto;
}

.vitrine-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--white);
}

.vitrine-cta-inner .section-title {
  color: var(--white);
  margin-bottom: 8px;
}

.vitrine-cta-inner .section-lead {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

@media (max-width: 560px) {
  .showcase-cta,
  .vitrine-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .showcase-cta .btn,
  .vitrine-cta-inner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Tour pela loja ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.tour-media {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  background: var(--ink);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(2, 132, 199, 0.22), inset 0 0 0 2px var(--primary-dark);
}

.phone-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  border-radius: 32px;
  background: var(--ink);
}

.tour-bubble {
  position: absolute;
  top: -18px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.tour-bubble-icon {
  font-size: 18px;
}

.tour-content .section-tag {
  margin-bottom: 18px;
}

.tour-content .section-title {
  margin-bottom: 14px;
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.tour-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tour-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 2px solid var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.tour-item strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.tour-item p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Seções ---------- */
.section {
  padding: 96px 0;
}

.hero + .section {
  padding-top: 48px;
}

.section-blue {
  background:
    linear-gradient(160deg, rgba(7, 89, 133, 0.82) 0%, rgba(2, 132, 199, 0.82) 100%),
    url("../img/bg-proposito.jpg") center / cover no-repeat;
}

.section-soft {
  background:
    linear-gradient(rgba(240, 249, 255, 0.82), rgba(240, 249, 255, 0.82)),
    url("../img/bg-publico.jpg") center / cover no-repeat;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head-light .section-title {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.section-tag-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.about-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-text {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 12px;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-welcome {
  background: var(--accent-light);
  border: 2px solid var(--accent);
  border-left-width: 8px;
  border-radius: 16px;
  padding: 22px 28px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-dark);
  text-align: center;
}

/* ---------- Missão, visão e valores ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 34px;
}

.mv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  margin-bottom: 20px;
}

.mv-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.values-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  flex-shrink: 0;
}

/* ---------- Diferencial / habilidades ---------- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}

.skill-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-light);
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.skill-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}

.skill-card p {
  color: var(--muted);
  font-size: 15.5px;
}

.diff-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-left: 8px solid var(--accent);
  border-radius: var(--radius);
  padding: 34px;
}

.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--white);
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.diff-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}

.diff-box p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Público ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.audience-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.audience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  flex-shrink: 0;
}

.audience-item strong {
  display: block;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}

.audience-item p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item address,
.contact-item p {
  color: var(--muted);
  font-size: 15px;
}

.contact-item a {
  font-weight: 600;
  color: var(--primary-dark);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contact-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.btn-map-link {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-map-link:hover,
.btn-map-link:focus {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

/* ---------- Rodapé ---------- */
.footer {
  background:
    linear-gradient(rgba(7, 89, 133, 0.86), rgba(12, 74, 110, 0.88)),
    url("../img/bg-footer.jpg") center / cover no-repeat;
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(2, 132, 199, 0.35));
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40ch;
  margin-bottom: 22px;
}

.footer-brand .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.footer-brand .btn-outline:hover,
.footer-brand .btn-outline:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Botão flutuante WhatsApp (fixo e discreto) ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--ink);
  border: 2px solid var(--wa-dark);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.whatsapp-float:hover {
  background: var(--wa-dark);
  color: var(--ink);
  transform: scale(1.04);
}

.whatsapp-float:active {
  transform: scale(0.97);
}

/* ---------- Animações de reveal no scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head.reveal {
  transform: translateY(22px);
}

/* Reaparecimento em cascata dos itens dos grids (só opacidade, não interfere no hover) */
.about-grid.visible > *,
.mv-grid.visible > *,
.skills-grid.visible > *,
.audience-grid.visible > *,
.values-grid.visible > *,
.products-grid.visible > * {
  animation: revealItem 0.55s cubic-bezier(0.2, 0.6, 0.2, 1) backwards;
}

.about-grid.visible > *:nth-child(2),
.mv-grid.visible > *:nth-child(2),
.skills-grid.visible > *:nth-child(2),
.audience-grid.visible > *:nth-child(2),
.values-grid.visible > *:nth-child(2),
.products-grid.visible > *:nth-child(2) {
  animation-delay: 0.06s;
}

.skills-grid.visible > *:nth-child(3),
.audience-grid.visible > *:nth-child(3),
.values-grid.visible > *:nth-child(3),
.products-grid.visible > *:nth-child(3) {
  animation-delay: 0.12s;
}

.skills-grid.visible > *:nth-child(4),
.audience-grid.visible > *:nth-child(4),
.values-grid.visible > *:nth-child(4),
.products-grid.visible > *:nth-child(4) {
  animation-delay: 0.18s;
}

.audience-grid.visible > *:nth-child(5),
.values-grid.visible > *:nth-child(5),
.products-grid.visible > *:nth-child(5) {
  animation-delay: 0.24s;
}

.audience-grid.visible > *:nth-child(6),
.values-grid.visible > *:nth-child(6),
.products-grid.visible > *:nth-child(6) {
  animation-delay: 0.3s;
}

.audience-grid.visible > *:nth-child(7),
.values-grid.visible > *:nth-child(7),
.products-grid.visible > *:nth-child(7) {
  animation-delay: 0.36s;
}

.audience-grid.visible > *:nth-child(8),
.values-grid.visible > *:nth-child(8) {
  animation-delay: 0.42s;
}

@keyframes revealItem {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- Micro-interações ---------- */
.about-icon,
.mv-icon,
.skill-icon,
.audience-icon,
.contact-icon,
.diff-icon {
  transition: transform 0.3s ease;
}

.about-card:hover .about-icon,
.skill-card:hover .skill-icon {
  transform: rotate(-8deg) scale(1.1);
}

.audience-item:hover .audience-icon {
  transform: scale(1.12);
}

.contact-item:hover .contact-icon {
  transform: rotate(-8deg);
}

.nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  border-radius: 3px;
  margin: 3px auto 0;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.skill-card:hover .skill-title,
.about-card:hover .about-title {
  color: var(--primary-dark);
}

.skill-title,
.about-title {
  transition: color 0.25s ease;
}

/* ---------- Responsividade ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-float-card-top {
    right: 8px;
  }

  .hero-float-card-bottom {
    left: 8px;
  }

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

  .contact-map {
    min-height: 380px;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-label {
    padding: 20px 18px;
  }

  .product-label-title {
    font-size: 21px;
  }

  .tour-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .tour-media {
    order: 2;
  }

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

@media (max-width: 760px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 22px 24px 28px;
    box-shadow: 0 16px 28px rgba(2, 132, 199, 0.14);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    display: block;
    font-size: 17px;
    padding: 12px 14px;
  }

  .nav-link::after {
    display: none;
  }

  .btn-nav {
    justify-content: center;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 40px;
  }


  .hero-bg {
    background: linear-gradient(
      180deg,
      rgba(248, 252, 255, 0.75) 0%,
      rgba(240, 249, 255, 0.65) 45%,
      rgba(224, 242, 254, 0.55) 100%
    );
  }

  .hero-bg-img {
    bottom: -48px;
  }

  .about-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .diff-box {
    flex-direction: column;
    gap: 18px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .hero-float-card {
    display: none;
  }

  .hero-shape-blob,
  .hero-shape-block {
    display: none;
  }

  .hero-shape-star {
    top: 10%;
    left: 4%;
    font-size: 26px;
  }

  .products-grid {
    gap: 14px;
  }

  .product-card {
    flex-basis: calc(50% - 7px);
  }

  .tour-bubble {
    right: -4px;
    top: -14px;
  }

  .phone-frame {
    padding: 8px;
    border-radius: 34px;
  }

  .phone-frame video {
    border-radius: 26px;
    max-height: 460px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-info {
    padding: 26px 22px;
  }

  .product-card {
    flex-basis: 100%;
  }

}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
