/* Mario Melo SEO - Identidade preto e branco com destaque verde */

:root {
    --black: #050505;
    --near-black: #0f0f0f;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-light: #f5f5f5;
    --green: #00c46c;
    --green-dark: #009856;
    --green-light: #e6f7ed;
    --text: #111111;
    --text-light: #333333;
    --muted: #222222;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --space: 32px;
    --space-sm: 16px;
    --space-lg: 40px;
}

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

html,
body {
    margin: 0;
    padding: 0;
    background: var(--off-white);
}

html {
    min-height: 100%;
    background-color: var(--off-white);
}

[hidden] {
    display: none !important;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: var(--off-white);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100%;
}

body.menu-open {
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    z-index: -1;
}

section > * + * {
    margin-top: var(--space);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-weight: 700;
}

h3, h4 {
    font-weight: 500;
}

p {
    margin-bottom: var(--space);
    color: var(--muted);
}

ul,
ol {
    margin-bottom: var(--space);
}


.section-heading {
    max-width: 740px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.section-heading span {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--green);
    display: inline-block;
    margin-bottom: var(--space);
}

.section-heading h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space);
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 0;
    display: block;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

nav ul li a {
    color: var(--text);
    padding: 0.25rem 0;
    border-radius: 0;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.01em;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--green);
    border-color: var(--green);
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-cta:hover {
    background: var(--green);
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-cta:hover {
    background: var(--green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition);
}

#nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

#nav-menu li a {
    background: transparent;
    color: var(--text);
    padding: 0.25rem 0;
    border-radius: 0;
    font-weight: 500;
    font-size: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: auto;
}

#nav-menu li a:hover,
#nav-menu li a.active {
    color: var(--green);
    border-color: var(--green);
    background: transparent;
}

.has-submenu {
    position: relative;
}

.has-submenu > a::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 0.35rem;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    list-style: none;
    display: none;
    z-index: 1200;
    margin-top: 0.35rem;
}

.submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.submenu li a {
    padding: 0.6rem 1rem 0.6rem 10px !important;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.submenu li a:hover {
    padding-left: 15px !important;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
    display: block;
}

/* Hero */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-grid > * + *,
.video-grid > * + *,
.contact-content > * + * {
    margin-top: var(--space);
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero h2,
.hero p {
    color: var(--white);
}

.service-hero p,
.about-hero p,
.services-hero p,
.quiz-hero p,
.survey-hero p,
.report-hero p {
    color: var(--white);
}

.intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.intro-badges span {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stat {
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 2.1rem;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.lead-panel {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
}

.form-group {
    margin-bottom: var(--space);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(0, 196, 108, 0.2);
}

.primary-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    border-radius: 999px;
    padding: 1rem 2.25rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-button:hover,
.cta-button:hover {
    background: var(--green-dark);
}

.cta-button--ghost {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    box-shadow: none;
}

.cta-button--ghost:hover {
    background: var(--black);
    color: var(--white);
}

.secondary-button {
    color: var(--white);
    font-weight: 600;
    border-bottom: 2px solid var(--green);
    padding-bottom: 0.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.hero-actions .secondary-button {
    color: var(--green);
}

/* Video + Beneficios */
.video-section {
    padding: 4rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.video-frame {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    background: var(--black);
    border: 4px solid var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--white);
}

.benefits-list strong {
    font-weight: 700;
    color: var(--green);
    margin-right: 0.5rem;
}

/* Cards genericos */
.services-preview,
.approach,
.testimonials,
.numbers {
    padding: 4rem 0;
}

.home-section {
    padding: 4.5rem 0;
}

.home-section--alt {
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.section-heading--home {
    margin-bottom: 2.5rem;
}

.section-heading--home h2 {
    color: var(--green);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    margin-bottom: 0.6rem;
    display: inline-block;
    text-transform: uppercase;
}

.section-heading--home h3 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    letter-spacing: -0.02em;
}

.section-heading--home p {
    font-size: 1.02rem;
    max-width: 760px;
}

.section-cta-row {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.section-cta-row--center {
    justify-content: center;
}

.cta-button--whatsapp {
    background: #25d366;
    color: #ffffff;
}

.cta-button--whatsapp:hover {
    background: #1ebe5a;
}

.cta-block {
    flex: 1 1 240px;
    min-width: 240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    border: 2px solid transparent;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.cta-block span {
    font-size: 1.05rem;
}

.cta-block small {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.85;
}

.cta-block--whatsapp {
    background: #25d366;
    color: #ffffff;
}

.cta-block--whatsapp:hover {
    background: #1ebe5a;
}

.cta-block--ghost {
    background: #ffffff;
    color: var(--black);
    border-color: var(--black);
    box-shadow: none;
}

.cta-block--ghost:hover {
    background: var(--black);
    color: var(--white);
}

.hero--home .hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 720px) {
    .cta-block {
        min-width: 100%;
    }
}

.services-grid,
.approach-grid,
.testimonials-grid,
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.home-framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.home-framework-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-framework-card h4 {
    margin: 0;
    font-size: 1.2rem;
}

.home-framework-card p {
    margin: 0;
}

.home-framework-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.home-framework-list li {
    background: var(--off-white);
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-card,
.approach-item,
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.service-card--home {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card--home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--green), #26e07a);
}

.service-card--home h3 a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-card--home a {
    font-weight: 600;
}

.service-card:hover,
.approach-item:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card a {
    color: var(--green);
    font-weight: 600;
}

.numbers-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.number-card {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.number-card strong {
    display: block;
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
}

.number-card span {
    color: var(--white);
}

.service-card > * + *,
.analysis-item > * + *,
.process-step > * + *,
.testimonial-card > * + *,
.contact-form-section > * + *,
.contact-card > * + *,
.contact-info > * + *,
.footer-section > * + * {
    margin-top: var(--space);
}

.testimonial-card::before {
    content: "\201C";
    font-size: 3rem;
    color: var(--green);
    display: block;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--green);
}

/* CTA */
.cta-final,
.service-cta,
.contact-cta {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(120deg, var(--black), var(--near-black));
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box p {
    color: var(--white);
    margin-bottom: 2rem;
}

/* Formularios e contato */
.contact-hero {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 4rem 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.contact-form-section,
.contact-card,
.contact-info {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-consent {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: var(--space);
    color: var(--muted);
}

.form-consent input {
    margin-top: 0.3rem;
}

.alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: var(--space);
    font-weight: 500;
}

.alert.error {
    background: #ffe8e8;
    color: #9f1d1d;
}

.alert.success {
    background: var(--green-light);
    color: var(--green-dark);
}

.utm-result {
    margin-top: var(--space);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.utm-result label {
    font-weight: 600;
    color: var(--black);
}

.utm-generate {
    width: 100%;
}

.utm-result textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: var(--off-white);
    color: var(--text);
    resize: vertical;
    min-height: 110px;
}

.utm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.utm-feedback {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--green-dark);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.table-scroll table {
    min-width: 720px;
}

.table-scroll-hint {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.table-scroll::after {
    content: "↔";
    position: sticky;
    right: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--gray-light);
    border-radius: 999px;
}

.results-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.result-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.result-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.result-title {
    font-weight: 700;
    font-size: 1rem;
    word-break: break-word;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-badge {
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-weight: 600;
    font-size: 0.8rem;
}

.result-badge.warning {
    background: #fff4d6;
    color: #8a5a00;
}

.result-badge.error {
    background: #ffe8e8;
    color: #9f1d1d;
}

.result-rows {
    display: grid;
    gap: 0.75rem;
}

.result-row {
    display: grid;
    gap: 0.25rem;
}

.result-row span {
    display: block;
}

.result-row .label {
    font-weight: 600;
    color: var(--text-light);
}

.result-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.result-list li {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 0.6rem 0.75rem;
    word-break: break-word;
}

.result-details {
    margin-top: 0.75rem;
}

.result-details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--green-dark);
}

.result-details[open] summary {
    margin-bottom: 0.5rem;
}

.link-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 0.75rem;
    background: var(--white);
}

.link-item + .link-item {
    margin-top: 0.75rem;
}

.link-item .link-url {
    font-weight: 600;
    word-break: break-word;
}

.link-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.link-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.link-filter {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.link-filter.is-active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.link-item.is-hidden {
    display: none;
}

.seocamp-page {
    position: relative;
}

.seocamp-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 520px;
    background:
        radial-gradient(circle at top left, rgba(0, 196, 108, 0.14), transparent 34%),
        radial-gradient(circle at top right, rgba(0, 0, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faf8 55%, rgba(250, 250, 250, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

.seocamp-page > * {
    position: relative;
    z-index: 1;
}

.seocamp-page .tool-hero {
    padding: 4.25rem 0 2.5rem;
}

.seocamp-page .tool-hero .container {
    background:
        linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(15, 15, 15, 0.96)),
        var(--black);
    color: var(--white);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    position: relative;
}

.seocamp-page .tool-hero .container::before,
.seocamp-page .tool-hero .container::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.seocamp-page .tool-hero .container::before {
    width: 280px;
    height: 280px;
    right: -60px;
    top: -80px;
    background: radial-gradient(circle, rgba(0, 196, 108, 0.42), rgba(0, 196, 108, 0));
}

.seocamp-page .tool-hero .container::after {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.seocamp-page .tool-hero h1 {
    max-width: 760px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.seocamp-page .tool-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
}

.seocamp-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.08);
    color: #c6ffd5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.seocamp-page .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(0, 196, 108, 0.15);
}

.seocamp-page .service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 0;
}

.seocamp-page .service-badges li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.seocamp-page .service-section {
    padding: 1rem 0 1.3rem;
}

.seocamp-shell,
.seocamp-results-grid,
.seocamp-score-grid {
    display: grid;
    gap: 1.5rem;
}

.seocamp-shell {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
    align-items: start;
}

.seocamp-results-grid,
.seocamp-score-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.seocamp-page .contact-form-section,
.seocamp-page .contact-info,
.seocamp-page .result-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.seocamp-page .contact-form-section {
    padding: 2rem;
}

.seocamp-page .contact-info {
    padding: 1.75rem;
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.seocamp-page .contact-info::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green), #8bf0b9);
}

.seocamp-page .contact-form-section h2,
.seocamp-page .contact-info h3,
.seocamp-page .result-card h3 {
    letter-spacing: -0.02em;
}

.seocamp-page .lead-form .form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.seocamp-page .lead-form input,
.seocamp-page .lead-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: linear-gradient(180deg, #ffffff, #fcfcfc);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.seocamp-page .lead-form textarea {
    min-height: 132px;
    resize: vertical;
}

.seocamp-page .lead-form input:focus,
.seocamp-page .lead-form textarea:focus {
    border-color: rgba(0, 196, 108, 0.5);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 196, 108, 0.12);
    transform: translateY(-1px);
}

.seocamp-page .form-actions {
    margin-top: 1.4rem;
}

.seocamp-page .primary-button,
.seocamp-page .cta-button {
    border-radius: 999px;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.seocamp-page .primary-button:hover,
.seocamp-page .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.seocamp-score-card {
    background: linear-gradient(180deg, #ffffff, #fbfbfb);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 24px;
    padding: 1.7rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.seocamp-score-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #7feaac);
}

.seocamp-score-card.is-primary {
    background: linear-gradient(135deg, #07140d, #0d2118 45%, #111111 100%);
    color: var(--white);
}

.seocamp-score-card.is-primary::after {
    background: linear-gradient(90deg, #6ef2a4, var(--green));
}

.seocamp-score-card span,
.seocamp-score-card small {
    display: block;
}

.seocamp-score-card span {
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.seocamp-score-card strong {
    display: block;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1;
    margin: 0.55rem 0 0.65rem;
    letter-spacing: -0.05em;
}

.seocamp-score-card small {
    opacity: 0.75;
}

.seocamp-field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.seocamp-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    border: 1px solid transparent;
    background: #ffe8e8;
    color: #9f1d1d;
}

.seocamp-counter.is-good {
    background: var(--green-light);
    color: var(--green-dark);
    border-color: rgba(0, 152, 86, 0.15);
}

.seocamp-counter.is-warn {
    background: #fff4d6;
    color: #8a5a00;
    border-color: rgba(138, 90, 0, 0.12);
}

.seocamp-counter.is-bad {
    background: #ffe8e8;
    color: #9f1d1d;
    border-color: rgba(159, 29, 29, 0.12);
}

.seocamp-mini-list {
    display: grid;
    gap: 0.85rem;
}

.seocamp-mini-list span {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f7faf8);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 18px;
    padding: 0.95rem 1rem 0.95rem 1.2rem;
}

.seocamp-mini-list span::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 1.15rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
}

.seocamp-mini-list span {
    padding-left: 2rem;
}

.seocamp-page .result-card {
    padding: 1.6rem;
    transition: var(--transition);
}

.seocamp-page .result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.seocamp-page .result-header {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    margin-bottom: 1rem;
}

.seocamp-page .result-title {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.seocamp-page .result-badge {
    background: linear-gradient(180deg, #ebf9f1, #def5e8);
    color: var(--green-dark);
    border: 1px solid rgba(0, 152, 86, 0.12);
}

.seocamp-page .result-list {
    gap: 0.7rem;
}

.seocamp-page .result-list li {
    background: linear-gradient(180deg, #ffffff, #f7f7f7);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    position: relative;
}

.seocamp-page .result-list li::before {
    content: "";
    position: absolute;
    left: 0.9rem;
    top: 1.12rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
}

.seocamp-page .result-list li {
    padding-left: 1.8rem;
}

.seocamp-page .result-row {
    gap: 0.35rem;
    background: linear-gradient(180deg, #ffffff, #fafafa);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 16px;
    padding: 0.9rem 1rem;
}

.seocamp-page .result-row .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b5a52;
}

.seocamp-serp-preview {
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #fcfcfc);
    padding: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.seocamp-serp-title {
    color: #1a0dab;
    font-size: 1.45rem;
    line-height: 1.32;
    margin-bottom: 0.45rem;
}

.seocamp-serp-url {
    color: #188038;
    font-size: 0.96rem;
    margin-bottom: 0.55rem;
    word-break: break-word;
}

.seocamp-serp-description {
    color: #4d5156;
    line-height: 1.62;
}

.seocamp-copy-area {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.seocamp-copy-feedback {
    margin-top: 0.75rem;
    font-weight: 700;
}

.seocamp-brief-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.seocamp-brief-meta span {
    background: linear-gradient(180deg, #ffffff, #f8faf9);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 16px;
    padding: 0.95rem 1rem;
}

.seocamp-heading-list-h1 li {
    border-left: 4px solid #005bd3;
}

.seocamp-heading-list-h2 li {
    border-left: 4px solid #188038;
}

.seocamp-heading-list-h3 li {
    border-left: 4px solid #b06000;
}

@media (max-width: 900px) {
    .seocamp-shell {
        grid-template-columns: 1fr;
    }

    .seocamp-page .contact-info {
        position: static;
    }

    .seocamp-page .tool-hero .container {
        padding: 2rem 1.4rem;
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .seocamp-page .tool-hero {
        padding-top: 3.2rem;
    }

    .seocamp-page .tool-hero h1 {
        font-size: 2rem;
    }

    .seocamp-page .service-badges {
        gap: 0.6rem;
    }

    .seocamp-page .service-badges li {
        width: 100%;
        justify-content: center;
    }

    .seocamp-field-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .seocamp-page .contact-form-section,
    .seocamp-page .contact-info,
    .seocamp-page .result-card,
    .seocamp-score-card {
        padding: 1.3rem;
        border-radius: 18px;
    }
}

.vision-cta {
    padding: 3.5rem 0;
}

.vision-cta-box {
    background: #0049aa;
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    box-shadow: var(--shadow);
}

.vision-cta-box--sidebar {
    grid-template-columns: 1fr;
    text-align: left;
}

.vision-cta-box--sidebar .vision-cta-logo img {
    margin: 0;
}

.vision-cta-box--sidebar .vision-cta-button {
    width: 100%;
}

.vision-cta-text h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.vision-cta-text p {
    color: #ffffff;
    margin-bottom: 0;
}

.vision-cta-button {
    background: #ffffff;
    color: #0049aa;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vision-cta-button:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .vision-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vision-cta-logo img {
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .section-heading--home {
        text-align: center;
    }

    .section-cta-row {
        justify-content: center;
    }

    .hero--home .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .home-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-heading--home h3 {
        font-size: clamp(1.6rem, 5.2vw, 2rem);
    }

    .section-heading--home h2 {
        font-size: 0.85rem;
        letter-spacing: 0.18em;
    }
}

.merge-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.merge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.merge-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    background: var(--off-white);
}

.option-group span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.option-buttons button {
    background: #dfe4ea;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    font-weight: 600;
}

.option-buttons button.is-active {
    background: var(--black);
    color: var(--white);
}

.option-input {
    margin-top: 0.75rem;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}

.merge-result {
    margin-top: 2rem;
}

.merge-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.merge-result textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: var(--off-white);
    color: var(--text);
    resize: vertical;
}

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

    .merge-options {
        grid-template-columns: 1fr;
    }

    .merge-result-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.status-ok {
    background: var(--green-light);
    color: var(--green-dark);
}

.status-redirect {
    background: #fff4d6;
    color: #8a5a00;
}

.status-erro,
.status-error {
    background: #ffe8e8;
    color: #9f1d1d;
}

.toggle-chain,
.toggle-detail {
    background: var(--green-light);
    border: 1px solid var(--green-light);
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--green-dark);
}

.toggle-chain.is-open,
.toggle-detail.is-open {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.details-row.is-hidden {
    display: none;
}

.redirect-chain td {
    background: #fbfbfb;
}

.chain-steps {
    display: grid;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.chain-step {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    background: var(--white);
}

/* Secoes institucionais */
.story,
.values,
.expertise,
.recognition,
.services-overview,
.service-content {
    padding: 4rem 0;
}

.values-grid,
.analysis-grid,
.process-steps,
.content-types,
.awards,
.expertise-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.value-item,
.analysis-item,
.process-step,
.content-type,
.award,
.stat-box {
    border: 1px solid #efefef;
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-benefits {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--white);
}

.service-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.service-benefits li {
    display: flex;
    gap: 0.5rem;
}

.service-benefits li::before {
    content: "\25B8";
    color: var(--green);
}

.service-hero,
.services-hero,
.about-hero {
    background: linear-gradient(140deg, #050505, #0b1f17 45%, #031510);
    color: var(--white);
    padding: 5rem 0;
}

.tool-hero {
    padding: 3rem 0;
}

.service-hero .container {
    max-width: 900px;
}

.service-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.service-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 780px;
    margin-top: 0.85rem;
}

.service-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: var(--green);
    display: inline-block;
}

.service-badges {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-badges li {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 0.45rem 1.35rem;
    font-size: 0.9rem;
}

.service-section,
.service-overview,
.service-highlights,
.service-deliverables,
.service-process,
.service-proof,
.service-faq {
    padding: 4rem 0;
}

.service-overview {
    background: #f7f7f7;
}

.service-overview h2,
.service-highlights h2,
.service-deliverables h2,
.service-process h2,
.service-proof h2,
.service-faq h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
}

.service-overview p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.service-stats,
.insight-cards,
.deliverables-grid,
.process-steps,
.metrics-grid,
.faq-list {
    display: grid;
    gap: 1.5rem;
}

.service-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 2rem;
}

.service-stats .stat-item {
    background: var(--white);
    border: 1px solid #ededed;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.service-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}

.service-highlights {
    background: var(--white);
}

.insight-cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.insight-card {
    background: var(--white);
    border: 1px solid #efefef;
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

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

.insight-card h4 {
    margin-bottom: 0.75rem;
}

.deliverables-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.deliverable-column {
    background: #0b0b0b;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.deliverable-column h4 {
    color: var(--green);
    margin-bottom: 1rem;
}

.deliverable-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.deliverable-column li {
    padding-left: 1.25rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.deliverable-column li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

.service-process .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 2rem;
}

.metric-item {
    background: var(--white);
    border: 1px solid #efefef;
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.metric-value {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.service-proof blockquote {
    margin-top: 1rem;
    padding: 2rem;
    background: #0b0b0b;
    color: #fff;
    border-radius: var(--radius);
    position: relative;
}

.service-proof blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--green);
    font-weight: 600;
}

.faq-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-item {
    border: 1px solid #efefef;
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    margin-bottom: 0.65rem;
}

.faq-item p {
    margin: 0;
}

.audit-floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    background: var(--green);
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.audit-product-hero,
.audit-lead-hero {
    position: relative;
    overflow: hidden;
    padding: 5.8rem 0 5rem;
    background:
        radial-gradient(circle at 82% 20%, rgba(0, 196, 108, 0.18), transparent 34%),
        linear-gradient(140deg, #050505 0%, #101812 54%, #050505 100%);
}

.audit-product-hero::before,
.audit-lead-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.85), transparent);
    pointer-events: none;
}

.audit-product-hero .container,
.audit-lead-hero .container {
    position: relative;
    z-index: 1;
}

.audit-hero-grid {
    display: grid;
    gap: 2.4rem;
    align-items: center;
}

.audit-hero-copy h1 {
    max-width: 840px;
}

.audit-hero-copy p {
    max-width: 780px;
}

.audit-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.audit-product-hero .secondary-button,
.audit-lead-hero .secondary-button {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--white);
}

.audit-report-preview,
.audit-price-card {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.audit-preview-top,
.audit-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.audit-preview-top span,
.audit-preview-footer span,
.audit-price-card .audit-price-label,
.audit-kicker,
.audit-section-heading span,
.audit-plan-grid article span,
.priority-card span {
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.audit-preview-top strong {
    color: var(--black);
    font-size: 1.1rem;
}

.audit-score-card {
    margin: 1rem 0;
    padding: 1.25rem;
    border-radius: 8px;
    background: #f4f7f3;
    border: 1px solid #dde7dc;
    text-align: center;
}

.audit-score-label {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
}

.audit-score-ring {
    width: 132px;
    height: 132px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--green) 0 62%, #dfe8df 62% 100%);
    position: relative;
}

.audit-score-ring::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: var(--white);
}

.audit-score-ring strong,
.audit-score-ring span {
    position: relative;
    z-index: 1;
}

.audit-score-ring strong {
    font-size: 2.6rem;
    line-height: 1;
    color: var(--black);
}

.audit-score-ring span {
    margin-top: 3.2rem;
    margin-left: -2.2rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.audit-score-card p,
.audit-price-card p {
    color: var(--muted);
    margin: 0;
}

.audit-preview-bars {
    display: grid;
    gap: 0.8rem;
}

.audit-preview-bars div {
    display: grid;
    gap: 0.35rem;
}

.audit-preview-bars span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.audit-preview-bars i {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green) var(--bar), #e4e9e3 var(--bar));
}

.audit-preview-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e9e4;
}

.audit-price-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--black);
    line-height: 1;
    margin-bottom: 1rem;
}

.audit-report-elements,
.audit-summary-section,
.audit-priority-section,
.audit-plan-section {
    padding: 4rem 0;
}

.audit-report-elements,
.audit-priority-section {
    background: var(--white);
}

.audit-summary-section,
.audit-plan-section {
    background: #f7f7f7;
}

.audit-section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.audit-section-heading h2,
.audit-summary-grid h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0.45rem 0 0.8rem;
}

.audit-section-heading p,
.audit-summary-grid p {
    color: var(--muted);
}

.audit-elements-grid,
.audit-priority-board,
.audit-plan-grid {
    display: grid;
    gap: 1.25rem;
}

.audit-elements-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.audit-element-card,
.priority-card,
.audit-plan-grid article {
    border-radius: 8px;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid #e7ece6;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.audit-element-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--black);
    font-weight: 800;
    margin-bottom: 1rem;
}

.audit-element-card h3,
.priority-card h3,
.audit-plan-grid h3 {
    margin-bottom: 0.6rem;
}

.audit-element-card p,
.priority-card p {
    color: var(--muted);
    margin: 0;
}

.audit-summary-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.audit-summary-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.75rem;
}

.audit-summary-list span {
    background: var(--white);
    border: 1px solid #e6ebe5;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-weight: 700;
    color: var(--text);
}

.audit-priority-board {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.priority-critical {
    border-top: 5px solid #111;
}

.priority-high {
    border-top: 5px solid var(--green);
}

.priority-medium {
    border-top: 5px solid #6c9f84;
}

.priority-monitor {
    border-top: 5px solid #a8b6aa;
}

.audit-deliverables-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.audit-plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.audit-plan-grid article {
    background: #0b0b0b;
    color: var(--white);
}

.audit-plan-grid article span {
    color: var(--green);
}

.audit-plan-grid h3 {
    color: var(--white);
}

.audit-plan-grid ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
}

.audit-scope p {
    max-width: 900px;
    color: var(--muted);
    margin-bottom: 2rem;
}

.audit-final-cta .cta-box {
    text-align: center;
}

.audit-lead-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.audit-lead-quick {
    padding: 2rem 0 3rem;
}

.audit-lead-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.audit-form-copy {
    max-width: 620px;
}

.audit-form-copy p {
    color: var(--muted);
}

.audit-form-copy-compact h1 {
    margin: 0.35rem 0 0.7rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.audit-form-copy-compact p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.audit-lead-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.audit-form-copy-compact .audit-lead-points {
    gap: 0.6rem;
    margin: 1rem 0 1.1rem;
}

.audit-lead-points div {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.audit-form-copy-compact .audit-lead-points div {
    padding: 0.75rem 0.85rem;
}

.audit-lead-form {
    margin: 0;
}

.audit-lead-form .honeypot {
    position: absolute;
    left: -9999px;
    top: 0;
}

/* Landing produto Auditoria SEO */
.audit-page {
    --audit-ink: #101411;
    --audit-muted: #59645d;
    --audit-line: #dfe7df;
    --audit-soft: #f4f7f3;
    --audit-green: var(--green);
    background: #fbfcfa;
    color: var(--audit-ink);
    padding-bottom: 4rem;
}

.audit-page * {
    box-sizing: border-box;
}

.audit-page h1,
.audit-page h2,
.audit-page h3,
.audit-page p {
    letter-spacing: 0;
}

.audit-page h1 {
    font-size: clamp(2.45rem, 5vw, 5.1rem);
    line-height: 0.98;
    max-width: 920px;
    margin: 0;
    color: #fff;
}

.audit-page h2 {
    font-size: clamp(1.9rem, 3.4vw, 3.1rem);
    line-height: 1.08;
    margin: 0;
}

.audit-page h3 {
    font-size: 1.1rem;
    line-height: 1.25;
    margin: 0;
}

.audit-page p {
    color: var(--audit-muted);
}

.audit-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 50px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    background: var(--audit-green);
    color: #050505;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.audit-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 196, 108, 0.22), transparent 30%),
        linear-gradient(145deg, #050505 0%, #101712 58%, #050505 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 7rem) 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.audit-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.8;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.1));
}

.audit-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.audit-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 196, 108, 0.13);
    color: var(--green);
    border: 1px solid rgba(0, 196, 108, 0.24);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.audit-hero-copy > p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    margin: 1.35rem 0 0;
}

.audit-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.audit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.82rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
}

.audit-btn-primary {
    background: var(--audit-green);
    color: #050505;
}

.audit-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
}

.audit-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2.4rem;
    max-width: 720px;
}

.audit-hero-meta div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 1rem;
}

.audit-hero-meta strong,
.audit-hero-meta span {
    display: block;
}

.audit-hero-meta strong {
    color: #fff;
    font-size: 1.05rem;
}

.audit-hero-meta span {
    color: rgba(255, 255, 255, 0.62);
    margin-top: 0.2rem;
}

.audit-report-card {
    background: #fff;
    color: var(--audit-ink);
    border-radius: 8px;
    padding: 1.35rem;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.32);
}

.audit-report-head,
.audit-score-row,
.audit-report-tags,
.audit-strip-grid,
.audit-two-col,
.audit-price-section {
    display: grid;
    gap: 1rem;
}

.audit-report-head {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--audit-line);
}

.audit-report-head span,
.audit-report-head strong,
.audit-report-head em {
    display: block;
}

.audit-report-head span,
.audit-report-tags span {
    color: var(--audit-muted);
    font-size: 0.82rem;
}

.audit-report-head strong {
    font-size: 1.55rem;
    line-height: 1.15;
    margin-top: 0.25rem;
}

.audit-report-head em {
    color: #050505;
    font-style: normal;
    font-weight: 900;
    background: var(--green-light);
    border: 1px solid #cde7d5;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
}

.audit-score-row {
    grid-template-columns: 132px 1fr;
    align-items: center;
    background: linear-gradient(135deg, #f7faf6, #eef5ef);
    border: 1px solid var(--audit-line);
    border-radius: 8px;
    padding: 1.15rem;
    margin: 1.1rem 0;
}

.audit-score {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: conic-gradient(var(--green) 0 62%, #dce7dd 62% 100%);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}

.audit-score::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: #fff;
    z-index: 0;
}

.audit-score strong,
.audit-score span {
    position: relative;
    z-index: 1;
    display: block;
    text-align: center;
}

.audit-score strong {
    font-size: 2.35rem;
    line-height: 0.9;
    color: #050505;
}

.audit-score span {
    margin: 0.28rem 0 0;
    color: var(--audit-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.audit-score-row h2 {
    font-size: 1.25rem;
    margin: 0 0 0.4rem;
}

.audit-score-row p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
}

.audit-bars {
    display: grid;
    gap: 0.8rem;
}

.audit-bars div {
    display: grid;
    gap: 0.35rem;
}

.audit-bars span {
    font-weight: 800;
    font-size: 0.9rem;
}

.audit-bars i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green) var(--level), #e3eae3 var(--level));
}

.audit-report-tags {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
}

.audit-report-tags span {
    background: var(--audit-soft);
    border: 1px solid var(--audit-line);
    border-radius: 8px;
    padding: 0.7rem;
    text-align: center;
    font-weight: 800;
}

.audit-strip,
.audit-section {
    padding: 4rem 0;
}

.audit-strip {
    background: #fff;
    border-bottom: 1px solid var(--audit-line);
}

.audit-strip-grid {
    align-items: center;
}

.audit-strip h2 {
    margin-top: 0.65rem;
}

.audit-strip p {
    font-size: 1.08rem;
    margin: 0;
}

.audit-section-muted {
    background: var(--audit-soft);
}

.audit-section-dark {
    background: #0b0d0b;
    color: #fff;
}

.audit-section-dark h2,
.audit-section-dark h3 {
    color: #fff;
}

.audit-section-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.audit-section-title {
    max-width: 820px;
    margin-bottom: 2rem;
}

.audit-section-title h2 {
    margin-top: 0.8rem;
}

.audit-section-title p {
    max-width: 760px;
    font-size: 1.04rem;
}

.audit-feature-grid,
.audit-deliverables,
.audit-priority-grid,
.audit-timeline {
    display: grid;
    gap: 1rem;
}

.audit-feature-grid article,
.audit-deliverables article,
.audit-priority-grid article,
.audit-timeline article,
.audit-price-box {
    background: #fff;
    border: 1px solid var(--audit-line);
    border-radius: 8px;
    padding: 1.35rem;
    box-shadow: 0 16px 36px rgba(15, 24, 18, 0.06);
}

.audit-feature-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-light);
    color: #050505;
    font-weight: 900;
    margin-bottom: 1rem;
}

.audit-feature-grid p,
.audit-priority-grid p,
.audit-timeline p {
    margin-bottom: 0;
}

.audit-deliverables {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.audit-deliverables article {
    min-height: 100%;
}

.audit-deliverables h3 {
    margin-bottom: 1rem;
}

.audit-deliverables ul,
.audit-timeline ul {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--audit-muted);
}

.audit-deliverables li + li {
    margin-top: 0.45rem;
}

.audit-two-col {
    align-items: center;
}

.audit-two-col p {
    font-size: 1.05rem;
    margin: 1rem 0 1.5rem;
}

.audit-summary-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 0.7rem;
}

.audit-summary-panel span {
    background: #fff;
    border: 1px solid var(--audit-line);
    border-radius: 8px;
    padding: 0.85rem;
    font-weight: 800;
    color: var(--audit-ink);
}

.audit-priority-grid article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.audit-priority-grid span,
.audit-timeline span,
.audit-price-box span {
    display: inline-flex;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.audit-timeline {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.audit-price-section {
    align-items: center;
}

.audit-price-box strong {
    display: block;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.audit-payment-list {
    display: grid;
    gap: 0.7rem;
    margin: 1.2rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.audit-payment-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--audit-muted);
    line-height: 1.45;
}

.audit-payment-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.audit-payment-list strong {
    display: inline;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    color: var(--audit-ink);
}

.audit-payment-list-compact {
    margin: 1rem 0 1.2rem;
    gap: 0.55rem;
}

.audit-price-card .audit-payment-list li {
    font-size: 0.95rem;
}

.audit-final {
    background: linear-gradient(135deg, #07110c, #0d1912);
    color: #fff;
    text-align: center;
}

.audit-final h2 {
    color: #fff;
    max-width: 820px;
    margin: 0 auto;
}

.audit-final p {
    color: rgba(255, 255, 255, 0.76);
    max-width: 720px;
    margin: 1rem auto 1.7rem;
}

@media (min-width: 900px) {
    .audit-hero-inner {
        grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    }

    .audit-strip-grid,
    .audit-two-col,
    .audit-price-section {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .audit-feature-grid,
    .audit-priority-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .audit-hero-meta,
    .audit-score-row,
    .audit-report-tags {
        grid-template-columns: 1fr;
    }

    .audit-score {
        margin: 0 auto;
    }

    .audit-float {
        left: 16px;
        right: 16px;
        bottom: 14px;
        width: auto;
    }
}

@media (min-width: 900px) {
    .audit-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    }

    .audit-summary-grid {
        grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    }

    .audit-lead-grid {
        grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
    }
}

@media (max-width: 640px) {
    .audit-floating-cta {
        left: 16px;
        right: 16px;
        bottom: 14px;
        width: auto;
    }
}

/* Cidades atendidas */
.city-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
}

.city-links li a {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.city-links li a:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Sidebar de leads */
.lead-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -30px 0 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-sidebar.open {
    transform: translateX(0);
}

.lead-sidebar-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1rem 0.8rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    z-index: 998;
}

.lead-sidebar-close {
    align-self: flex-end;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
}

.lead-form-sidebar button {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.85rem;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
}

.lead-form-sidebar button:hover {
    background: var(--green-dark);
}

/* Rodape */
footer {
    background: var(--black);
    color: #ffffff;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 24px;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a,
.footer-section li {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 1rem;
}

.social-links a:hover {
    border-color: var(--green);
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-bottom p {
    color: #ffffff;
}

/* Botao WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 997;
    transition: var(--transition);
}

.floating-whatsapp img {
    width: 32px;
    height: 32px;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
}

/* Floating Diagnostico Button */
.floating-diagnostico-container {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 997;
    display: none;
}

.floating-diagnostico {
    background: var(--green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.floating-diagnostico:hover {
    background: var(--green-dark);
    transform: translateY(-4px);
}

.arrow {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    transition: var(--transition);
    width: 20px;
    height: 20px;
}

.floating-diagnostico-container.minimized .floating-diagnostico {
    width: 40px;
    padding: 1rem 0.5rem;
}

.floating-diagnostico-container.minimized .text {
    opacity: 0;
    visibility: hidden;
}

.floating-diagnostico-container.minimized .arrow {
    margin-right: 0;
}

/* Blog */
.blog-hero {
    background: radial-gradient(circle at top right, rgba(0, 196, 108, 0.12), transparent 45%),
        linear-gradient(140deg, #050505, #0b1f17 45%, #031510);
    color: var(--white);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
}

.blog-listing {
    padding: 4rem 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-featured {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    aspect-ratio: 16 / 9;
}

.blog-featured-body {
    padding: 2.5rem 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-featured-body h2 {
    margin: 0;
    font-size: clamp(1.75rem, 2.8vw, 2.4rem);
}

.blog-featured-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card--home {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.blog-card--home .blog-card-body h3 a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-card-category {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 700;
}

.blog-card-body h3 {
    margin: 0;
    font-size: 1.35rem;
}

.blog-card-body p {
    margin: 0;
}

.blog-card-link {
    color: var(--green);
    font-weight: 600;
}

.blog-layout {
    padding: 4rem 0;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
}

.blog-main {
    min-width: 0;
}

.blog-sidebar {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sticky-sidebar {
    position: static;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.blog-meta-category {
    color: var(--green);
    font-weight: 600;
}

.blog-meta-date {
    color: rgba(255, 255, 255, 0.75);
}

.blog-meta-read {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0;
    justify-content: flex-start;
}

.breadcrumbs a {
    color: var(--text);
    font-weight: 600;
    display: inline-block;
}

.breadcrumbs span {
    color: var(--muted);
    display: inline-block;
    margin: 0 0.35rem;
}

.breadcrumbs .breadcrumb-current {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.breadcrumb-bar .breadcrumbs {
    padding: 0.85rem 0;
    font-size: 0.9rem;
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.blog-featured-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.blog-featured-media .blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.blog-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    font-size: 1.05rem;
}

.blog-source {
    margin: 0 0 16px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f4f6f7;
    font-size: 0.95rem;
    color: var(--text-light);
}

.blog-source a {
    color: var(--green);
    font-weight: 600;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--green);
    background: #f6faf7;
    border-radius: var(--radius);
    color: var(--text);
}

.blog-content img {
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.blog-author {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: #0b0b0b;
    color: #ffffff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.blog-author p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0;
}

.blog-author .secondary-button {
    color: var(--green);
    border-color: var(--green);
}

.blog-category-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.blog-category-panel h2 {
    margin: 0 0 0.5rem;
}

.blog-category-meta {
    background: #0b0b0b;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
}

.blog-sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.blog-sidebar-card h4 {
    margin-bottom: 1rem;
}

.blog-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.blog-sidebar-card a {
    color: var(--text);
    font-weight: 600;
}

.blog-sidebar-card a:hover {
    color: var(--green);
}

.blog-sidebar .lead-panel {
    border: 1px solid rgba(0, 196, 108, 0.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.empty-state {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 960px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }

    .sticky-sidebar {
        position: static;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-body {
        padding: 2rem;
    }

    .blog-featured-image img {
        min-height: auto;
    }

    .blog-category-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-author {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Quiz */
.quiz-hero .service-badges {
    margin-top: 1.5rem;
}

.quiz-section {
    padding: 4rem 0;
    background: #f7f7f7;
}

.quiz-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.quiz-card > * + * {
    margin-top: 16px;
}

.quiz-card + .quiz-card {
    margin-top: 2.5rem;
}

.quiz-start-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.quiz-intro-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 196, 108, 0.12);
    color: #0c6a3c;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.quiz-intro-card h2 {
    margin-top: 0;
    margin-bottom: 4px;
}

.quiz-intro-card p,
.quiz-intro-card ul {
    margin: 0;
}

.quiz-form-card {
    background: #ffffff;
    color: #0f0f0f;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-form-card h3 {
    margin-top: 0;
    color: inherit;
}

.quiz-form-card p {
    color: var(--muted);
    margin: 0;
}

.quiz-form-card label {
    color: inherit;
}

.quiz-form-card input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.18);
    color: inherit;
}

.quiz-form-card input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.quiz-form-card .form-consent span {
    color: var(--muted);
}

.quiz-form-card .primary-button {
    width: 100%;
}

.quiz-form-card .form-group + .form-group {
    margin-top: 12px;
}

.quiz-form-card .form-consent {
    margin-top: 4px;
}

.quiz-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.quiz-metrics div {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
}

.quiz-metrics strong {
    display: block;
    font-size: 1.1rem;
}

.quiz-metrics span {
    font-size: 0.85rem;
    color: var(--muted);
}

@media (max-width: 980px) {
    .quiz-start-grid {
        grid-template-columns: 1fr;
    }

    .quiz-metrics {
        grid-template-columns: 1fr;
    }
}

/* Curso */
.course-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: center;
}

.course-hero-grid > div {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.course-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 6px;
}

.course-hero-highlights span {
    background: rgba(0, 196, 108, 0.12);
    color: #0c6a3c;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.course-hero {
    background: #0f0f0f;
}

.course-hero-card {
    background: #ffffff;
    color: #0f0f0f;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.course-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 6px solid rgba(0, 196, 108, 0.6);
    pointer-events: none;
}

.course-hero-card h3 {
    margin-top: 0;
}

.course-hero-card ul {
    margin: 16px 0 20px;
    padding-left: 18px;
    color: #1a1a1a;
}

.course-note {
    margin-top: 6px;
    color: var(--muted);
}

.course-section {
    padding: 4rem 0;
}

.course-section-alt {
    background: #f2f5f3;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.course-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-card-dark {
    background: linear-gradient(135deg, rgba(0, 196, 108, 0.08), rgba(0, 0, 0, 0.02));
    color: #0f0f0f;
    border: 1px solid rgba(0, 196, 108, 0.2);
}

.course-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.course-pill-grid div {
    background: rgba(0, 196, 108, 0.08);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid rgba(0, 196, 108, 0.18);
}

.course-pill-grid h4 {
    margin: 0 0 6px;
}

.course-steps {
    margin: 0;
    padding-left: 18px;
}

.course-checklist {
    margin: 0;
    padding-left: 18px;
}

.course-card p,
.course-card ul,
.course-card ol {
    margin: 0;
}

.course-card h2,
.course-card h3,
.course-card h4 {
    margin: 0;
}

.course-resource-grid {
    margin-top: 16px;
}

.course-resource-grid a {
    margin-top: 2px;
}

.course-section .section-heading {
    margin-bottom: 24px;
}

.course-section .section-heading p {
    margin-top: 8px;
}

.course-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.course-resource-grid a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    color: var(--black);
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.course-resource-grid a:hover {
    border-color: rgba(0, 196, 108, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 980px) {
    .course-hero-grid,
    .course-grid,
    .course-resource-grid {
        grid-template-columns: 1fr;
    }
}

.quiz-hidden {
    display: none;
}

.quiz-form .primary-button {
    margin-top: 0.5rem;
}

.quiz-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.quiz-leaderboard-section {
    padding: 3.5rem 0 4.5rem;
    background: #ffffff;
}

.quiz-leaderboard {
    border-radius: 20px;
    background: radial-gradient(circle at top, #101010 0%, #0b0b0b 55%, #050505 100%);
    color: #f6f6f6;
    padding: 28px 24px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.quiz-leaderboard-header h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    color: #fdfdfd;
}

.quiz-leaderboard-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.quiz-podium {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 18px;
    align-items: end;
    margin-top: 26px;
}

.quiz-podium-place {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 18px 16px 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    --podium-height: 90px;
    order: 2;
}

.quiz-podium-place > * {
    position: relative;
    z-index: 1;
}

.quiz-podium-place[data-rank="1"] {
    transform: translateY(-12px);
    border-color: rgba(0, 196, 108, 0.6);
    box-shadow: 0 18px 40px rgba(0, 196, 108, 0.18);
    --podium-height: 140px;
    order: 2;
}

.quiz-podium-place[data-rank="2"] {
    --podium-height: 120px;
    order: 1;
}

.quiz-podium-place[data-rank="3"] {
    --podium-height: 105px;
    order: 3;
}

.quiz-podium-place::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--podium-height);
    background: linear-gradient(180deg, rgba(0, 196, 108, 0.05), rgba(0, 196, 108, 0.18));
    opacity: 0.7;
    pointer-events: none;
}

.quiz-podium-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 196, 108, 0.18);
    color: #bff4d8;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.quiz-podium-place[data-rank="1"] .quiz-podium-rank {
    background: #f5c542;
    color: #1b1b1b;
}

.quiz-podium-place[data-rank="2"] .quiz-podium-rank {
    background: #c7c7c7;
    color: #1b1b1b;
}

.quiz-podium-place[data-rank="3"] .quiz-podium-rank {
    background: #c58a4e;
    color: #1b1b1b;
}

.quiz-podium-name {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.quiz-podium-score {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    font-size: 0.95rem;
}

.quiz-podium-empty {
    margin-top: 20px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 820px) {
    .quiz-podium {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .quiz-podium-place,
    .quiz-podium-place[data-rank="1"],
    .quiz-podium-place[data-rank="2"],
    .quiz-podium-place[data-rank="3"] {
        transform: none;
        order: initial;
        --podium-height: 80px;
    }
}

/* Admin */
.admin-shell {
    padding: 3rem 0 4rem;
}

.admin-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-header h1 {
    margin: 0;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.admin-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.admin-card h2,
.admin-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--gray-light);
    padding: 0.85rem;
    text-align: left;
}

.admin-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.admin-table tr:hover {
    background: #f8faf9;
}

.admin-section + .admin-section {
    margin-top: 2rem;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-meta {
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.65rem;
    }
}

.quiz-progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.quiz-progress {
    margin-bottom: 16px;
}

.quiz-level-badge {
    background: var(--green-light);
    color: var(--green-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
}

.quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: #e6e6e6;
    border-radius: 999px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--green);
    transition: width 0.3s ease;
}

.quiz-options {
    display: grid;
    gap: 12px;
    margin: 1.75rem 0;
}

.quiz-option {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    background: var(--off-white);
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    transition: var(--transition);
}

.quiz-option:hover {
    border-color: var(--green);
}

.quiz-option.selected {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 2px rgba(0, 196, 108, 0.2);
}

.quiz-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.quiz-button {
    border: none;
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.quiz-button:hover {
    background: var(--green);
}

.quiz-button:disabled {
    background: #b5b5b5;
    cursor: not-allowed;
}

.quiz-score {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0 1rem;
}

.quiz-score-label {
    font-size: 0.95rem;
    color: var(--muted);
}

.quiz-score strong {
    font-size: 3rem;
    color: var(--black);
}

.quiz-score-max {
    font-size: 1.25rem;
    color: var(--text-light);
}

.quiz-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.quiz-breakdown-card {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: var(--off-white);
}

.quiz-breakdown-card strong {
    display: block;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.quiz-review-block {
    margin-top: 2rem;
    display: grid;
    gap: 0.75rem;
}

.quiz-review {
    display: grid;
    gap: 1rem;
}

.quiz-review-item {
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
}

.quiz-review-item.is-correct {
    border-color: rgba(0, 196, 108, 0.4);
}

.quiz-review-item.is-wrong {
    border-color: rgba(230, 68, 68, 0.35);
}

.quiz-review-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 0.75rem;
}

.quiz-review-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f4f6;
    font-weight: 700;
    color: var(--text);
}

.quiz-review-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #f5f5f5;
}

.quiz-review-item.is-correct .quiz-review-status {
    background: rgba(0, 196, 108, 0.15);
    color: #0f5e3b;
}

.quiz-review-item.is-wrong .quiz-review-status {
    background: rgba(230, 68, 68, 0.15);
    color: #8d1f1f;
}

.quiz-review-answers p {
    margin-bottom: 0.35rem;
}

.quiz-review-explanation {
    margin-top: 0.75rem;
    color: var(--text-light);
}

.quiz-share textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1rem;
    margin: 0.75rem 0 1rem;
    font-size: 0.95rem;
    resize: vertical;
}

.quiz-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 12px;
    margin-bottom: 1.5rem;
}

.quiz-share-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 12px;
}

.quiz-share-link {
    background: var(--black);
    color: var(--white);
    padding: 0.85rem 1rem;
    border-radius: 999px;
    text-align: center;
    font-weight: 600;
}

.quiz-share-link:hover {
    background: var(--green);
}

.quiz-cta {
    margin-top: 2.5rem;
}

.quiz-highlights {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
}

.quiz-highlights li {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    background: var(--off-white);
}

.survey-hero .service-badges,
.report-hero .service-badges {
    margin-top: 1.5rem;
}

.survey-section,
.report-section {
    padding: 4rem 0;
    background: #f7f7f7;
}

.survey-card,
.report-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.survey-card > * + *,
.report-card > * + * {
    margin-top: 20px;
}

.survey-intro p {
    margin-bottom: 16px;
}

.survey-highlights {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
}

.survey-highlights li {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    background: var(--off-white);
}

.survey-form {
    display: grid;
    gap: 24px;
}

.survey-block {
    display: grid;
    gap: 14px;
}

.survey-hidden {
    display: none;
}

.survey-stepper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.survey-step {
    border: 1px solid var(--gray-light);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 0.85rem;
    background: var(--off-white);
    color: var(--text-light);
    transition: var(--transition);
}

.survey-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
}

.survey-step small {
    font-weight: 600;
}

.survey-step.is-hidden {
    display: none;
}

.survey-step.is-active {
    border-color: var(--green);
    color: var(--black);
    background: var(--green-light);
}

.survey-step.is-active span {
    background: var(--green);
}

.survey-step.is-done {
    border-color: rgba(0, 196, 108, 0.3);
    color: var(--text);
}

.survey-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.survey-progress-track {
    flex: 1;
    height: 8px;
    background: #e6e6e6;
    border-radius: 999px;
    overflow: hidden;
}

.survey-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--green);
    border-radius: 999px;
    transition: width 0.3s ease;
}

.survey-step-panel {
    display: grid;
    gap: 16px;
    padding: 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    background: #fcfcfc;
}

.survey-options {
    display: grid;
    gap: 14px;
}

.survey-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    background: var(--off-white);
    transition: var(--transition);
}

.survey-option:hover {
    border-color: var(--green);
}

.survey-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 12px;
}

.survey-panel-actions .secondary-button {
    color: var(--black);
}

.survey-panel-actions .survey-hidden {
    display: none;
}

.survey-thanks {
    background: var(--green-light);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 196, 108, 0.3);
}

.survey-grid {
    display: grid;
    gap: 14px;
}

.survey-options {
    display: grid;
    gap: 12px;
}

.survey-options-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.survey-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    background: var(--off-white);
}

.survey-option input {
    accent-color: var(--green);
}

.survey-benefits h4 {
    margin-bottom: 12px;
}

.survey-actions {
    display: grid;
    gap: 12px;
}

.survey-thanks {
    background: var(--green-light);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

@media (max-width: 640px) {
    .survey-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .survey-step-panel {
        padding: 1.25rem;
    }

    .survey-panel-actions {
        justify-content: center;
    }

    .report-pie-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .report-legend {
        justify-items: center;
    }
}

.report-grid {
    display: grid;
    gap: 24px;
}

.report-kpis {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.report-kpi {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    background: var(--off-white);
}

.report-kpi span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.report-kpi strong {
    font-size: 1.6rem;
    color: var(--black);
}

.report-salary-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.report-salary-card {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    background: var(--off-white);
}

.report-salary-card h3 {
    margin-bottom: 10px;
}

.report-salary-card p {
    margin-bottom: 10px;
}

.report-card + .report-card {
    margin-top: 2rem;
}

.report-analysis {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.report-pie-wrap {
    display: grid;
    gap: 16px;
    align-items: center;
    grid-template-columns: minmax(180px, 240px) 1fr;
}

.report-pie {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 8px solid #f4f4f4;
    box-shadow: var(--shadow);
}

.report-legend {
    display: grid;
    gap: 10px;
}

.report-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text);
}

.report-legend-item span {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    display: inline-block;
}

.report-section > .report-hero-image {
    margin-bottom: 2rem;
}

.report-grid > * + * {
    margin-top: 0;
}

@media (max-width: 960px) {
    .report-section {
        padding: 3rem 0;
    }

    .report-card {
        padding: 1.75rem;
    }

    .report-grid {
        gap: 20px;
    }

    .report-kpis {
        gap: 16px;
    }

    .report-salary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .report-section {
        padding: 2.5rem 0;
    }

    .report-card {
        padding: 1.5rem;
    }

    .report-card > * + * {
        margin-top: 18px;
    }

    .report-hero-image {
        margin: 12px auto 20px;
    }

    .report-pie {
        width: 200px;
        height: 200px;
    }

    .report-pie-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 12px;
    }

    .report-legend {
        justify-items: center;
    }

    .report-legend-item {
        justify-content: center;
        text-align: left;
    }

    .report-table {
        min-width: 520px;
    }
}

.survey-bars {
    display: grid;
    gap: 12px;
}

.survey-bar-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 6px;
}

.survey-bar-track {
    height: 10px;
    background: #e6e6e6;
    border-radius: 999px;
    overflow: hidden;
}

.survey-bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 999px;
}

.survey-note {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.survey-email-message {
    margin-top: 10px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff5f5;
    color: #9f1d1d;
    font-weight: 600;
}

.survey-email-message:empty {
    display: none;
}

.survey-block input[type="email"] {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    background: var(--white);
}

.survey-block input[type="email"]:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(0, 196, 108, 0.2);
}

.survey-panel-actions .secondary-button {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    background: var(--white);
}

.survey-panel-actions .secondary-button:hover {
    border-color: var(--green);
    color: var(--green);
}

.survey-panel-actions .secondary-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.report-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.report-cta {
    margin-top: 16px;
}

.report-hero-image {
    width: min(720px, 100%);
    margin: 16px auto 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: block;
}

.report-note {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.report-table-block {
    margin-top: 2rem;
}

.report-table-block h3 {
    margin-bottom: 0.75rem;
}

.report-table-wrap {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.report-table th,
.report-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.report-table th {
    background: var(--gray-light);
    font-weight: 600;
    color: var(--text);
    position: sticky;
    top: 0;
    z-index: 1;
}

.report-table tr:nth-child(even) td {
    background: var(--off-white);
}

.report-table td:last-child,
.report-table th:last-child {
    text-align: right;
}

.report-table td:nth-child(2),
.report-table td:nth-child(3),
.report-table td:nth-child(4),
.report-table th:nth-child(2),
.report-table th:nth-child(3),
.report-table th:nth-child(4) {
    text-align: right;
    white-space: nowrap;
}

@media (min-width: 960px) {
    .survey-card,
    .report-card {
        padding: 2.5rem;
    }

    .survey-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

@media (min-width: 960px) {
    .quiz-card {
        padding: 2.5rem;
    }
}

/* Responsividade */
@media (max-width: 960px) {
    .logo img {
        width: 100px;
    }

    .hero-grid,
    .video-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, min(1fr, 220px));
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }

    #nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    #nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    #nav-menu li {
        width: 100%;
        text-align: center;
    }

    #nav-menu li a {
        width: 100%;
        border-radius: 0;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .has-submenu > a::after {
        content: "";
    }

    .submenu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .submenu li a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        justify-content: flex-start;
        text-align: left;
        color: var(--text-light);
    }

    .lead-sidebar-toggle {
        display: none;
    }

    .floating-diagnostico-container {
        display: none;
    }

    .lead-sidebar {
        box-shadow: none;
    }

    /* Improve mobile readability */
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .service-hero,
    .services-hero,
    .about-hero {
        padding: 3rem 0;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .expertise-text {
        max-width: 100%;
        text-align: center;
    }

    .expertise-text ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .expertise-text li {
        background: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: var(--radius);
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .expertise-text strong {
        color: var(--green);
        display: block;
        margin-bottom: 0.5rem;
    }

    .lead-panel {
        padding: 1.5rem;
    }

    .lead-form .form-group {
        margin-bottom: 1rem;
    }

    .lead-form .form-group input,
    .lead-form .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.75rem 1rem;
    }

    .lead-form .primary-button {
        width: 100%;
        margin-top: 1rem;
    }

    .service-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .deliverables-grid,
    .insight-cards,
    .service-stats,
    .metrics-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .service-hero,
    .service-overview,
    .service-highlights,
    .service-deliverables,
    .service-process,
    .service-proof,
    .service-faq {
        padding: 3rem 0;
    }

    .quiz-card {
        padding: 1.5rem;
    }

    .quiz-actions {
        justify-content: center;
    }

    section > * + * {
        margin-top: 20px;
    }

    .services-grid,
    .results-grid {
        gap: 1rem;
    }

    .service-card,
    .result-card,
    .contact-card,
    .contact-form-section {
        padding: 1.25rem;
    }

    .vision-cta {
        padding: 2rem 0;
    }

    .vision-cta-box {
        padding: 1.25rem;
        gap: 1rem;
    }

    .cta-final,
    .service-section {
        padding: 2.5rem 0;
    }

}

@media (max-width: 640px) {
    .quiz-review-header {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}



/* Comparador de sites */
.comparison-table-wrapper {
    margin-top: 20px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    vertical-align: top;
    border-bottom: 1px solid #eeeeee;
}

.comparison-table thead th {
    background: #f7f3ee;
    text-align: left;
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-site-name {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d2a3a;
}

.comparison-site-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.comparison-row-label {
    font-weight: 600;
    color: #4f5b66;
    width: 190px;
}

/* Sites profissionais para negocios locais */
.local-sites-page {
    background: #f7f8f7;
}

.local-sites-page p,
.local-sites-page li {
    color: #26312c;
}

.local-sites-hero {
    background:
        radial-gradient(circle at 82% 14%, rgba(0, 196, 108, 0.2), transparent 28%),
        linear-gradient(135deg, #050505 0%, #111111 56%, #173225 100%);
    color: var(--white);
    padding: 5.5rem 0 4.5rem;
    overflow: hidden;
}

.local-sites-hero-grid,
.local-sites-split,
.local-sites-two-columns,
.local-sites-pricing {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.local-sites-hero-copy {
    max-width: 720px;
}

.local-sites-eyebrow,
.local-sites-heading span,
.local-sites-plan > span,
.local-sites-extra-grid span,
.local-sites-final-box span {
    display: inline-flex;
    align-items: center;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.local-sites-hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    max-width: 760px;
    margin-bottom: 1.35rem;
    letter-spacing: 0;
}

.local-sites-hero p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.2rem;
    max-width: 660px;
    margin-bottom: 2rem;
}

.local-sites-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.local-sites-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.local-sites-ghost:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.local-sites-price-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
}

.local-sites-price-card,
.local-sites-price-row > div,
.local-sites-plan,
.local-sites-card-grid > div,
.local-sites-mini-grid > div,
.local-sites-two-columns > div,
.local-sites-extra-grid > div,
.local-sites-step,
.local-sites-check-grid > div {
    border-radius: 8px;
}

.local-sites-price-card {
    background: var(--white);
    color: var(--black);
    padding: 2rem;
    margin-bottom: 1rem;
}

.local-sites-price-card span,
.local-sites-price-row span {
    display: block;
    color: #56615c;
    font-weight: 700;
}

.local-sites-price-card strong {
    display: block;
    font-size: 3.75rem;
    line-height: 1;
    margin: 0.7rem 0;
}

.local-sites-price-card p {
    margin: 0;
    color: #56615c;
}

.local-sites-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.local-sites-price-row > div {
    background: rgba(255, 255, 255, 0.92);
    padding: 1.25rem;
}

.local-sites-price-row strong {
    display: block;
    color: var(--black);
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 0.45rem;
}

.local-sites-section,
.local-sites-band,
.local-sites-final {
    padding: 5rem 0;
}

.local-sites-section--light {
    background: var(--white);
}

.local-sites-band {
    background: #0b0f0d;
    color: var(--white);
}

.local-sites-band p,
.local-sites-band li {
    color: rgba(255, 255, 255, 0.76);
}

.local-sites-heading {
    max-width: 820px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.local-sites-heading--left {
    margin-left: 0;
    text-align: left;
}

.local-sites-heading h2,
.local-sites-split h2,
.local-sites-final-box h2 {
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.local-sites-heading p,
.local-sites-split p {
    font-size: 1.08rem;
    margin-bottom: 0;
}

.local-sites-steps,
.local-sites-card-grid,
.local-sites-check-grid,
.local-sites-mini-grid,
.local-sites-extra-grid {
    display: grid;
    gap: 1.25rem;
}

.local-sites-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.local-sites-step,
.local-sites-card-grid > div,
.local-sites-mini-grid > div,
.local-sites-two-columns > div,
.local-sites-extra-grid > div {
    background: var(--white);
    border: 1px solid #e7ece9;
    color: #14201b;
    padding: 1.5rem;
    box-shadow: 0 16px 34px rgba(15, 25, 20, 0.06);
}

.local-sites-step p,
.local-sites-card-grid p,
.local-sites-mini-grid p,
.local-sites-two-columns p,
.local-sites-two-columns li,
.local-sites-extra-grid p {
    color: #26312c;
}

.local-sites-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.local-sites-step h3,
.local-sites-card-grid h3,
.local-sites-mini-grid strong,
.local-sites-two-columns h3,
.local-sites-extra-grid h3 {
    display: block;
    color: var(--black);
    font-size: 1.16rem;
    margin-bottom: 0.75rem;
}

.local-sites-step p,
.local-sites-card-grid p,
.local-sites-mini-grid p,
.local-sites-extra-grid p {
    margin: 0;
}

.local-sites-mini-grid {
    grid-template-columns: 1fr;
}

.local-sites-check-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-sites-check-grid > div,
.local-sites-list li {
    position: relative;
    background: var(--white);
    border: 1px solid #e7ece9;
    padding: 1rem 1rem 1rem 2.7rem;
    color: #14201b;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(15, 25, 20, 0.05);
}

.local-sites-check-grid > div::before,
.local-sites-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.22rem;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
}

.local-sites-check-grid--compact {
    grid-template-columns: 1fr;
}

.local-sites-list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.local-sites-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-sites-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.local-sites-seo .local-sites-two-columns,
.local-sites-section--light .local-sites-two-columns {
    align-items: stretch;
}

.local-sites-two-columns ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.1rem;
}

.local-sites-two-columns li {
    margin: 0;
}

.local-sites-pricing {
    align-items: stretch;
}

.local-sites-plan {
    background: var(--white);
    border: 1px solid #dfe7e3;
    padding: 2rem;
    box-shadow: 0 20px 48px rgba(15, 25, 20, 0.08);
}

.local-sites-plan--featured {
    background: #07120d;
    color: var(--white);
    border-color: #163f2b;
}

.local-sites-plan h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.local-sites-plan--featured h2,
.local-sites-plan--featured .local-sites-plan-price strong {
    color: var(--white);
}

.local-sites-plan--featured p,
.local-sites-plan--featured small {
    color: rgba(255, 255, 255, 0.75);
}

.local-sites-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.9rem 0;
    border-top: 1px solid #e7ece9;
}

.local-sites-plan--featured .local-sites-plan-price {
    border-color: rgba(255, 255, 255, 0.14);
}

.local-sites-plan-price strong {
    color: var(--black);
    font-size: 2rem;
    line-height: 1;
}

.local-sites-plan-price small {
    color: #56615c;
    font-weight: 700;
}

.local-sites-plan p {
    margin: 1rem 0 1.5rem;
}

.local-sites-payment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.local-sites-payment-tags span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
    padding: 0.75rem 1rem;
}

.local-sites-extra-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 1.5rem;
}

.local-sites-extra-grid strong {
    display: block;
    color: var(--green-dark);
    font-size: 1.15rem;
    margin-top: 1rem;
}

.local-sites-final {
    background: linear-gradient(135deg, #050505, #111111 62%, #082416);
    color: var(--white);
}

.local-sites-final-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.local-sites-final-box p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
}

@media (max-width: 980px) {
    .local-sites-hero-grid,
    .local-sites-split,
    .local-sites-two-columns,
    .local-sites-pricing {
        grid-template-columns: 1fr;
    }

    .local-sites-steps,
    .local-sites-card-grid,
    .local-sites-card-grid--four,
    .local-sites-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .local-sites-hero,
    .local-sites-section,
    .local-sites-band,
    .local-sites-final {
        padding: 3rem 0;
    }

    .local-sites-actions,
    .local-sites-actions .cta-button,
    .local-sites-plan .cta-button,
    .local-sites-final .cta-button {
        width: 100%;
    }

    .local-sites-price-row,
    .local-sites-steps,
    .local-sites-card-grid,
    .local-sites-card-grid--four,
    .local-sites-check-grid,
    .local-sites-extra-grid {
        grid-template-columns: 1fr;
    }

    .local-sites-price-card strong {
        font-size: 3rem;
    }

    .local-sites-plan-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        min-width: 220px;
    }

    .comparison-row-label {
        min-width: 160px;
    }
}
