﻿/* Páginas: carregar antes de estilo-tema-br.css — paleta marfim / marinha (público maduro BR). */

/* index.html */
body {
            background-color: var(--surface-top, #faf6f0);
            color: #2a2118;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #243b55;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #c9a84c;
            color: #ffffff;
        }

        .btn-success {
            background-color: #416a55;
            color: #fff;
        }

        .btn-success:hover {
            background-color: #355a44;
            color: #fff;
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #faf6f0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: rgba(255, 255, 255, 0.58);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid rgba(36, 59, 85, 0.22);
        }

        .faq-question {
            color: #2a2118;
            font-size: 1.25rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .faq-answer {
            color: #5c5348;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

/* login.html */
body {
            background-color: var(--surface-top, #faf6f0);
            color: #2a2118;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #243b55;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #c9a84c;
            color: #ffffff;
        }

        .btn-success {
            background-color: #416a55;
            color: #fff;
        }

        .btn-success:hover {
            background-color: #355a44;
            color: #fff;
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #faf6f0;
        }
        
        .login-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .login-method-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(36, 59, 85, 0.22);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .login-method-card:hover {
            transform: translateY(-5px);
            border-color: #243b55;
            box-shadow: 0 8px 20px rgba(65, 106, 85, 0.22);
        }
        
        .login-method-icon {
            font-size: 42px;
            margin-bottom: 15px;
            display: block;
        }
        
        .login-method-card h3 {
            color: #2a2118;
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .login-method-card p {
            color: #5c5348;
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 14px;
        }
        
        .guest-login-box {
            background-color: rgba(232, 220, 198, 0.35);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
        }
        
        .guest-login-box h3 {
            color: #416a55;
            margin-bottom: 20px;
        }
        
        .guest-login-box p {
            color: #2a2118;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .login-methods-grid {
                grid-template-columns: 1fr;
            }
        }

/* cadastro.html */
body {
            background-color: var(--surface-top, #faf6f0);
            color: #2a2118;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #243b55;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #c9a84c;
            color: #ffffff;
        }

        .btn-success {
            background-color: #416a55;
            color: #fff;
        }

        .btn-success:hover {
            background-color: #355a44;
            color: #fff;
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #faf6f0;
        }
        
        .registration-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .registration-method-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(36, 59, 85, 0.22);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .registration-method-card:hover {
            transform: translateY(-5px);
            border-color: #416a55;
            box-shadow: 0 8px 20px rgba(65, 106, 85, 0.2);
        }
        
        .registration-method-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .registration-method-card h3 {
            color: #2a2118;
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .registration-method-card p {
            color: #5c5348;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .registration-details {
            background-color: rgba(232, 220, 198, 0.35);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .registration-details p {
            color: #2a2118;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .registration-details strong {
            color: #416a55;
        }
        
        .registration-steps {
            background-color: rgba(232, 220, 198, 0.35);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
        }
        
        .registration-steps h3 {
            color: #416a55;
            margin-bottom: 20px;
        }
        
        .registration-steps ol {
            color: #2a2118;
            line-height: 2;
            padding-left: 20px;
        }
        
        .registration-steps li {
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            .registration-methods-grid {
                grid-template-columns: 1fr;
            }
        }

/* feedback.html */
body {
            background-color: var(--surface-top, #faf6f0);
            color: #2a2118;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #243b55;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #c9a84c;
            color: #ffffff;
        }

        .btn-success {
            background-color: #416a55;
            color: #fff;
        }

        .btn-success:hover {
            background-color: #355a44;
            color: #fff;
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #faf6f0;
        }
        
        .feedback-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feedback-category-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(36, 59, 85, 0.22);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feedback-category-card:hover {
            transform: translateY(-5px);
            border-color: #243b55;
            box-shadow: 0 8px 20px rgba(65, 106, 85, 0.22);
        }
        
        .feedback-category-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .feedback-category-card h3 {
            color: #2a2118;
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .feedback-category-card p {
            color: #5c5348;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .contact-info-box {
            background-color: rgba(232, 220, 198, 0.35);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }
        
        .contact-info-box h3 {
            color: #416a55;
            margin-bottom: 20px;
        }
        
        .contact-info-box p {
            color: #2a2118;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .feedback-categories-grid {
                grid-template-columns: 1fr;
            }
        }

/* ajuda-online.html */
body {
            background-color: var(--surface-top, #faf6f0);
            color: #2a2118;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #243b55;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #c9a84c;
            color: #ffffff;
        }

        .btn-success {
            background-color: #416a55;
            color: #fff;
        }

        .btn-success:hover {
            background-color: #355a44;
            color: #fff;
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #faf6f0;
        }
        
        .contact-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .contact-method-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(36, 59, 85, 0.22);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .contact-method-card:hover {
            transform: translateY(-5px);
            border-color: #243b55;
            box-shadow: 0 8px 20px rgba(65, 106, 85, 0.22);
        }
        
        .contact-method-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .contact-method-card h3 {
            color: #2a2118;
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .contact-method-card p {
            color: #5c5348;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .contact-details {
            background-color: rgba(232, 220, 198, 0.35);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .contact-details p {
            color: #2a2118;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .contact-details strong {
            color: #416a55;
        }
        
        @media (max-width: 768px) {
            .contact-methods-grid {
                grid-template-columns: 1fr;
            }
        }
/* Extracted inline attribute utilities */
.page-intro {
  margin: 30px 0;
}

.lead-copy {
  font-size: 18px;
  line-height: 1.8;
}

.lead-copy--accent,
.text-accent-bold {
  color: #416a55;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading--compact {
  margin-bottom: 30px;
}

.narrow-prose {
  max-width: 800px;
  margin: 0 auto;
}

.ordered-steps {
  max-width: 700px;
  margin: 0 auto;
}

.prose-copy {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.mt-20 {
  margin-top: 20px;
}

.themed-link {
  color: #416a55;
  text-decoration: none;
}

.feedback-examples {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(232, 220, 198, 0.35);
  text-align: left;
}

.example-title {
  margin-bottom: 5px;
  color: #2a2118;
  font-size: 14px;
}

.example-line {
  margin-bottom: 3px;
  color: #5c5348;
  font-size: 13px;
}

.example-line--last {
  margin-bottom: 0;
}

.map-frame {
  border: 0;
}

/* index.html — layout estilo landing de download (P999-like) */
.download-hero .hero-lead {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.hero-cta-wrap {
  margin: 1.25rem 0 1.5rem;
  text-align: center;
}

.hero-banner {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.25rem;
}

.download-hero .hero-banner img,
.download-hero .hero-banner img.img-fluid,
.hero-banner img,
.hero-banner img.img-fluid {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

.app-spec-table {
  width: 100%;
  margin: 0 auto 1rem;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(36, 59, 85, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.app-spec-table th,
.app-spec-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(36, 59, 85, 0.14);
  text-align: left;
}

.app-spec-table th {
  width: 38%;
  font-weight: 700;
  color: #2a2118;
  background: rgba(232, 220, 198, 0.45);
}

.app-spec-table tr:last-child th,
.app-spec-table tr:last-child td {
  border-bottom: 0;
}

.page-toc-wrap {
  margin-bottom: 1.25rem;
  padding: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(228, 252, 250, 0.88) 100%);
  border: 1px solid rgba(36, 59, 85, 0.2);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(26, 38, 53, 0.08);
  overflow: hidden;
}

.page-toc-details summary {
  list-style: none;
}

.page-toc-details summary::-webkit-details-marker {
  display: none;
}

.page-toc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 1.1rem;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border-bottom: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.page-toc-summary:hover,
.page-toc-summary:focus-visible {
  background: rgba(232, 220, 198, 0.35);
  outline: none;
}

.page-toc-details[open] .page-toc-summary {
  border-bottom-color: rgba(65, 106, 85, 0.35);
  background: rgba(232, 220, 198, 0.2);
}

.page-toc-summary__text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #2a2118;
}

.page-toc-summary__hint {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c9a84c;
  opacity: 0.9;
}

.page-toc-details[open] .page-toc-summary__hint {
  display: none;
}

.page-toc-summary::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-left: 0.25rem;
  border-right: 2.5px solid #243b55;
  border-bottom: 2.5px solid #243b55;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.page-toc-details[open] .page-toc-summary::after {
  transform: rotate(-135deg) translateY(2px);
}

.page-toc {
  margin: 0;
  padding: 0.65rem 1rem 1.1rem 1.85rem;
  line-height: 1.85;
}

.page-toc li {
  margin-bottom: 0.2rem;
}

.page-toc li::marker {
  color: #416a55;
  font-weight: 700;
}

.page-toc a {
  color: #243b55;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.page-toc a:hover,
.page-toc a:focus-visible {
  color: #c9a84c;
  border-bottom-color: rgba(65, 106, 85, 0.45);
  outline: none;
}

/* Blocos de conteúdo após o sumário — cartões empilhados */
.content-section {
  position: relative;
  margin-bottom: 0.75rem;
  padding: 1.15rem 1.05rem 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 59, 85, 0.18);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(26, 38, 53, 0.06);
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #004f4c, #416a55, #c9a84c);
  opacity: 0.85;
}

.content-section h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  margin-top: 0.15rem;
  padding-left: 0.35rem;
  border-left: 4px solid #416a55;
  line-height: 1.3;
  color: #2a2118;
}

.content-section h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-top: 1.1rem;
  margin-bottom: 0.35rem;
  color: #243b55;
}

.content-section h3:first-child {
  margin-top: 0;
}

.content-section p {
  margin-bottom: 0.75rem;
  line-height: 1.72;
  color: #2d4a42;
  font-size: 0.97rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section .themed-link {
  font-weight: 700;
}

/* Lista de recursos — faixas alternadas */
.feature-list {
  margin-top: 0.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(36, 59, 85, 0.12);
}

.feature-list h3 {
  margin: 0;
  padding: 0.65rem 0.75rem;
  background: rgba(232, 220, 198, 0.35);
  border-bottom: 1px solid rgba(36, 59, 85, 0.1);
  font-size: 0.98rem;
}

.feature-list h3:nth-of-type(odd) {
  background: rgba(228, 252, 250, 0.55);
}

.feature-list p {
  margin: 0;
  padding: 0.55rem 0.75rem 0.75rem;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(36, 59, 85, 0.08);
  font-size: 0.92rem;
  color: #5c5348;
}

.feature-list p:last-child {
  border-bottom: 0;
}

/* Promoções do app — grade 2×2; moldura cola na imagem, sem folga */
.promo-grid-lead {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5c5348;
}

.promo-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.55rem, 2vw, 0.85rem);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-photo-cell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
}

.promo-photo-frame {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  min-height: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}

.promo-photo-frame picture {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  background: rgba(244, 252, 251, 0.95);
  border: 1px solid rgba(36, 59, 85, 0.14);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
  box-sizing: border-box;
}

.promo-photo-frame picture img,
.promo-photo-frame > img {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0;
  padding: 0;
  vertical-align: top;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}

.promo-photo-frame figcaption {
  margin: 0;
  padding: 0.4rem 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #243b55;
  line-height: 1.25;
  word-break: break-word;
}

/* Galeria de capturas (legado) */
.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.85rem;
}

.screenshot-grid figure {
  margin: 0;
  padding: 0.65rem;
  text-align: center;
  background: rgba(244, 252, 251, 0.95);
  border: 1px solid rgba(36, 59, 85, 0.14);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.screenshot-grid img {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(26, 38, 53, 0.12);
}

.screenshot-grid figcaption {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #243b55;
}

/* Depoimentos */
.review-quote {
  margin: 0.85rem 0;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(65, 106, 85, 0.22);
  border-left: 4px solid #416a55;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(228, 252, 250, 0.5));
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(26, 38, 53, 0.05);
}

.review-quote p {
  margin-bottom: 0.45rem;
  font-style: italic;
  color: #2d4a42;
}

.review-quote cite {
  display: block;
  font-size: 0.86rem;
  font-style: normal;
  color: #c9a84c;
}

/* Passos numerados */
.step-list {
  margin: 0.65rem 0 1rem;
  padding: 0.5rem 0.5rem 0.5rem 2.35rem;
  list-style: decimal;
  line-height: 1.8;
  background: rgba(232, 220, 198, 0.22);
  border-radius: 10px;
  border: 1px dashed rgba(36, 59, 85, 0.2);
}

.step-list li {
  padding-left: 0.25rem;
  margin-bottom: 0.35rem;
  color: #2d4a42;
}

.step-list li::marker {
  color: #416a55;
  font-weight: 800;
}

/* Dicas de segurança */
.safety-list {
  margin: 0.65rem 0 0;
  padding: 0.75rem 0.85rem 0.85rem 2.2rem;
  line-height: 1.75;
  background: rgba(255, 243, 205, 0.35);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 10px;
}

.safety-list li {
  margin-bottom: 0.4rem;
  color: #4a3d1a;
}

.safety-list li:last-child {
  margin-bottom: 0;
}

/* Imagem solta dentro de seção (ex.: guia download) — moldura segue tamanho da imagem */
.content-section picture {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto 0;
  text-align: center;
}

.content-section picture img,
.content-section > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26, 38, 53, 0.1);
}

.content-section picture img.img-fluid,
.content-section > img.img-fluid,
.content-section .img-fluid {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Promo 四宫格 — 覆盖 .content-section picture 的 margin / width */
#promo-app .promo-photo-frame picture {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  text-align: left;
}

#promo-app .promo-photo-frame picture img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

/* CTA duplicado dentro do card */
.content-section .hero-cta-wrap {
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-grid figure:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .content-section {
    padding: 1.25rem 1.35rem 1.35rem;
  }

  .content-section h2 {
    font-size: 1.28rem;
  }
}

.me-2 {
  margin-right: 0.5rem !important;
}

/* Política + Termos: sem py-5 — só um pouco de respiro, escala com a viewport */
#politica-privacidade.container {
  padding-top: clamp(0.45rem, 1.4vw, 0.7rem);
  padding-bottom: clamp(0.18rem, 0.7vw, 0.32rem);
}

#termos-condicoes.container {
  padding-top: clamp(0.18rem, 0.7vw, 0.32rem);
  padding-bottom: clamp(0.5rem, 1.6vw, 0.85rem);
}