:root {
  color-scheme: light;
  --font-main: "Gabarito", sans-serif;
  --ink: #0b1a3a;
  --muted: #4b5563;
  --primary: #1553E2;
  --secondary: #4B76E2;
  --accent: #fbd30b;
  --bg: #f5f7fb;
  --card: #ffffff;
  --border: #e4e8f2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  padding-top: 76px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

html,
body {
  height: 100%;
}

main {
  touch-action: pan-y;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

.nav a.active {
  color: var(--primary);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}


.site-header.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, transform 0.4s ease;
  border-top: 1px solid var(--border);
  background: #ffffff;
  position: absolute;
  right: 16px;
  top: 100%;
  width: 220px;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  padding: 0 16px;
  pointer-events: none;
}

.site-header.open .mobile-nav {
  max-height: 320px;
  opacity: 1;
  padding: 10px 16px calc(28px + env(safe-area-inset-bottom));
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav::after {
  content: "";
  display: block;
  height: 10px;
}


.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(21, 83, 226, 0.2);
}

.btn-ghost {
  background: #ffffff;
  border-color: var(--border);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-1px);
}


.hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 90px 0 40px;
}

.hero--image {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  background-image: url("assets/banner.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 24, 0.6), rgba(11, 16, 24, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-hashtag {
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}

.hero-copy h1 {
  font-size: clamp(36px, 4.6vw, 54px);
  margin: 14px 0 16px;
  line-height: 1.05;
}

.typing-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 6px;
  background: rgba(255, 255, 255, 0.9);
  animation: caretBlink 0.9s steps(2, start) infinite;
  vertical-align: baseline;
}

.hero-copy p {
  color: var(--muted);
  font-size: 17px;
}

.hero-content h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  margin: 14px 0 16px;
  line-height: 1.05;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hero-highlights strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 15px;
}

.hero-highlights--light span {
  color: rgba(255, 255, 255, 0.75);
}

@keyframes caretBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.btn-ghost--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.hero-visual {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.page-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 80px 0 50px;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  font-size: 17px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d9e6;
}

.hero-dots .dot.active {
  background: var(--primary);
}

.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
}

.services .section-head h2,
.services .section-head p {
  color: #ffffff;
}

.about {
  background: #ffffff;
}

.about-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-copy ul {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  padding-left: 18px;
}

.about-copy p {
  font-size: 17px;
}

.about-copy li {
  font-size: 16px;
}

.about-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: transparent;
}

.about-page {
  background: #ffffff;
}

.about-page-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.4fr 0.9fr;
  align-items: start;
}

.about-page-content p + p {
  margin-top: 16px;
}


.owner-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: #f8f9ff;
  display: grid;
  gap: 16px;
  text-align: center;
}

.owner-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #1553E2;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(21, 83, 226, 0.18);
}

.owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.owner-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.owner-info p {
  color: var(--muted);
  font-size: 14px;
}

.owner-note {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

.gallery {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.services {
  background: var(--primary);
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  display: grid;
  gap: 12px;
}

.service-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(21, 83, 226, 0.12);
  aspect-ratio: 4 / 3;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features {
  background: #ffffff;
}

.features-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
}

.blog {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.blog-card {
  border: 1px solid rgba(21, 83, 226, 0.18);
  border-radius: 16px;
  padding: 20px;
  background: #f6f8ff;
  display: grid;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.blog-card .blog-thumb {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.blog-card .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team {
  background: #ffffff;
}

.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  display: grid;
  gap: 12px;
  text-align: center;
}

.registered {
  background: var(--bg);
}

.logo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.logo-placeholder {
  height: 70px;
  border: none;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--muted);
  background: transparent;
}

.logo-placeholder img {
  max-height: 42px;
  max-width: 120px;
  width: auto;
  height: auto;
  display: block;
}

.contact {
  background: #ffffff;
}

.blog-page {
  background: var(--bg);
}

.blog-page-grid {
  display: grid;
  gap: 18px;
}

.blog-item {
  display: grid;
  gap: 16px;
  grid-template-columns: 160px 1fr;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.blog-item-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.blog-page .blog-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(21, 83, 226, 0.12);
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
}

.blog-page .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.article h2 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 22px;
}

.article p {
  color: var(--muted);
  margin-bottom: 12px;
}

.article ul {
  margin: 10px 0 16px 18px;
  color: var(--muted);
}

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}

.article th,
.article td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.article th {
  background: #f6f8ff;
  font-weight: 700;
}

.article-hero {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(21, 83, 226, 0.12);
  margin-bottom: 16px;
}

.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-item h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.blog-item p {
  color: var(--muted);
}

.partners {
  background: var(--bg);
}

.partners-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.partner-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f3f4f6;
}

.partner-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}

.partner-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  align-content: start;
}

.partner-card h2 {
  font-size: 22px;
}

.partner-card p {
  color: var(--muted);
}

.partner-card ul {
  display: grid;
  gap: 8px;
  color: var(--muted);
  padding-left: 18px;
}

.partner-download {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.partner-download span {
  white-space: nowrap;
  font-weight: 600;
}

.partner-download-logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
}

.partner-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none;
}

.partner-store-badge img {
  height: 56px;
  width: auto;
  display: block;
}

.store-badge {
  height: 56px;
  width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
}

.store-badge img {
  height: 56px;
  width: auto;
  display: block;
}

.partner-card .image-placeholder.store-badge {
  width: 160px;
  height: 48px;
  border-radius: 12px;
}

.partner-card .partner-download-logos {
  min-width: 0;
}

@media (max-width: 1024px) {
  .partner-download {
    align-items: flex-start;
  }

  .partner-download-logos {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .partner-download {
    flex-wrap: wrap;
    gap: 8px;
  }

  .partner-download-logos {
    flex-wrap: wrap;
  }

  .store-badge {
    min-width: 0;
    width: auto;
    height: auto;
  }

  .store-badge--link img {
    height: 50px;
  }

  .partner-store-badge img {
    height: 50px;
  }
}

.image-placeholder--partner {
  height: 0;
  padding-top: 56.25%;
}
.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.contact-page {
  background: var(--bg);
}

.contact-page-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.contact-page-grid--single {
  grid-template-columns: 1fr;
}

.contact-card,
.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.contact-card h2,
.contact-info-card h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: var(--font-main);
  font-size: 14px;
  resize: vertical;
}

.contact-info-card {
  display: grid;
  gap: 18px;
}

.contact-info-list {
  display: grid;
  gap: 12px;
}

.contact-info-list span {
  color: var(--muted);
  font-size: 14px;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-info span {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  background: var(--bg);
}

.cta-inner {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.store-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
  background: transparent;
  padding: 0;
  min-width: 0;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.store-badge--link {
  padding: 0;
  border: none;
  background: transparent;
}

.store-badge--link img {
  height: 56px;
  width: auto;
  display: block;
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 30px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-copy {
  color: var(--muted);
  font-size: 15px;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.image-placeholder {
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(21, 83, 226, 0.12), rgba(75, 118, 226, 0.12));
  border: 1px dashed rgba(21, 83, 226, 0.3);
  display: grid;
  place-items: center;
  color: #5a6aa2;
  font-size: 13px;
  text-align: center;
}

.image-placeholder--hero {
  height: 320px;
  width: 100%;
}

.image-placeholder--about {
  height: 280px;
}

.image-placeholder--card {
  height: 140px;
}

.image-placeholder--avatar {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  margin: 0 auto;
}

.image-placeholder--map {
  height: 260px;
  width: 100%;
}

.privacy {
  background: #ffffff;
  padding: 70px 0;
}

.privacy-content {
  max-width: 860px;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  font-size: 15px;
}

.privacy-content ul {
  margin: 8px 0 16px 18px;
}

.privacy-content strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink);
}

.privacy-content hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .about-page-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: start;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-highlights strong {
    font-size: 15px;
  }

  .hero-highlights span {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-item {
    grid-template-columns: 120px 1fr;
  }

  .service-card {
    padding: 14px;
    gap: 10px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
