:root {
    --bg: #fcfaf6;
    --bg-strong: #f2ece4;
    --surface: rgba(255, 252, 248, 0.96);
    --surface-soft: rgba(255, 255, 255, 0.9);
    --surface-strong: #fffaf5;
    --line: rgba(73, 39, 33, 0.18);
    --text: #24120f;
    --muted: #5f4641;
    --muted-strong: #412d28;
    --accent: #c03000;
    --accent-deep: #7f0e0e;
    --accent-alt: #d0c040;
    --shadow: 0 18px 36px rgba(73, 39, 33, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", "Trebuchet MS", sans-serif;
    background:
        radial-gradient(circle at 12% 0%, rgba(208, 192, 64, 0.12), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(149, 163, 176, 0.14), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(192, 48, 0, 0.05), transparent 30%),
        linear-gradient(180deg, #fffdfa 0%, #f7f3ed 48%, #efe7de 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(87, 43, 35, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(87, 43, 35, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 86%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1, h2, h3, .brand-text strong {
    font-family: "Sora", "Trebuchet MS", sans-serif;
}

h1 {
    margin: 0 0 0.75rem;
    font-size: 1.8rem;
    line-height: 1.15;
}

h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    line-height: 1.15;
}

h3 {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.15;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* Modificadores Utilitários (Exclusivos do landing.css) */
.title-wide {
    max-width: 100%;
}

/* Estrutura Base de Grids (Desktop) */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.95rem; /*style mantém o gap ligeiramente maior por padrão */
}
.check-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted-strong);
    font-weight: 600;
    line-height: 1.6;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    box-shadow: 0 0 0 5px rgba(208, 192, 64, 0.12);
}
.platform-copy .check-list {
    margin-top: 0.2rem;
}
.segment-card, .pain-card, .gallery-panel, .faq-item, .contact-card, .contact-form, .cta-panel, .timeline-card, .feature-item , .service-card{
    border-radius: var(--radius-lg); /*Deixa os cartões dessas grids arredondados */
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    align-items: stretch;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.feature-list,
.timeline,
.segments-grid,
.contact-cards {
    display: grid;
    gap: 1.15rem;
}

.feature-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); text-align: justify; }
.segments-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); text-align: justify; }
.contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Novas Grids Exclusivas do landing.css */
.detail-grid,
.faq-grid,
.related-grid {
    display: grid;
    gap: 1.15rem;
}

.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Layout Geral */
.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.page-glow {
    position: fixed;
    width: 26rem;
    height: 26rem;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.page-glow-left {
    top: 5rem;
    left: -7rem;
    background: rgba(214, 193, 116, 0.2);
    animation: floatGlow 9s ease-in-out infinite;
}

.page-glow-right {
    top: 22rem;
    right: -8rem;
    background: rgba(151, 165, 177, 0.18);
    animation: floatGlow 11s ease-in-out infinite reverse;
}

.site-header, main, .site-footer {
    position: relative;
    z-index: 1;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(18px);
    background: rgba(252, 248, 242, 0.9);
    border-bottom: 1px solid rgba(87, 43, 35, 0.08);
    z-index: 30;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(120, 99, 83, 0.16);
    box-shadow: 0 10px 24px rgba(73, 39, 33, 0.1);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 5.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1.05rem;
}

.brand-mark {
    width: 6rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    border-radius: 20px;
    background: rgba(255, 252, 246, 0.98);
    box-shadow: 0 16px 34px rgba(73, 39, 33, 0.18);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 1.08rem;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.84rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.site-nav a {
    color: var(--muted-strong);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
    font-size: 13px;
}

.site-nav a:hover {
    color: var(--accent-deep);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.32rem auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Componentes / Botões */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff9f1;
    box-shadow: 0 16px 30px rgba(127, 14, 14, 0.22);
}

.button-secondary,
.button-outline {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(73, 39, 33, 0.16);
    color: var(--text);
}

.button-small {
    min-height: 2.5rem;
    padding-inline: 1rem;
}

.button-block {
    width: 100%;
}

/* Breadcrumbs (Exclusivo do landing.css) */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.breadcrumbs a {
    color: var(--muted-strong);
}

.breadcrumbs span:last-child {
    color: #8d6b12;
}

/* Cards */
.detail-card, .faq-item, .related-card, .gallery-panel,
.hero-copy, .hero-panel, .service-card, .feature-item,
.timeline-card, .segment-card, .contact-card, .contact-form, .cta-panel {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.detail-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.detail-card .button {
    margin-top: auto;
    align-self: flex-start;
}

.hero-copy {
    padding: clamp(2rem, 4vw, 3.2rem);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.detail-card, .faq-item, .related-card, .segment-card, .timeline-card, .feature-item {
    padding: 1.45rem;
}

.gallery-panel {
    padding: 1rem 1.2rem;
}

.service-card {
    padding: 1.5rem;
    text-align: justify;
    transition: transform .3s ease, box-shadow .3s ease;
    min-height: 100%;
    display: flex;         /* Adicionado do landing.css */
    flex-direction: column;/* Adicionado do landing.css */
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(73,39,33,.18);
}

.service-card p { margin-bottom: 0.95rem; }
.service-card ul { margin: 1.1rem 0 0; padding-left: 1rem; color: var(--muted-strong); }
.service-card ul:last-of-type { margin-bottom: 0; } /* Ajuste do landing.css (.service-card ul) */
.service-card li + li { margin-top: 0.55rem; }

/* Service Actions (Exclusivo do landing.css) */
.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1.15rem;
}

.service-actions .button {
    flex: 1 1 12rem;
}

.pain-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 232, 221, 0.90));
    border-color: rgba(192, 48, 0, 0.12);
}
.pain-card h3 { color: var(--text); }

/* Especificidades de títulos de cards do landing.css */
.faq-item strong,
.related-card strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.04rem;
    line-height: 1.35;
}

.related-card {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.related-card .button {
    margin-top: auto;
}

/* Hero Section */
.hero-section { padding: 5rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.5rem; align-items: start; } /* landing.css mudou de stretch para start */
.hero-copy-header { display: flex; align-items: center; justify-content: space-between; gap: 1.15rem; flex-wrap: wrap; margin-bottom: 0.65rem; }
.hero-logo { width: clamp(10rem, 22vw, 14rem); height: auto; display: block; filter: drop-shadow(0 16px 28px rgba(73, 39, 33, 0.20)); }
.hero-text { max-width: 100%; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }


.hero-panel {
    height: auto; /* Adicionado do landing.css */
}
.hero-copy {
    height: 100%;
    width: 100%;
}
.hero-copy h1 + p {
    margin-top: 0.2rem; /* Adicionado do landing.css */
}

.hero-brand-lockup { display: flex; align-items: center; gap: 1.15rem; }
.hero-brand-text { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-brand-text strong { font-size: clamp(1.35rem, 2.8vw, 1.9rem); line-height: 1.05; letter-spacing: -0.02em; }
.hero-brand-text small { color: var(--muted-strong); font-size: 0.98rem; font-weight: 600; line-height: 1.35; }

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem; padding: 0; margin: 1.8rem 0 0; }
.hero-badges li { padding: 0.6rem 0.9rem; border-radius: 999px; color: var(--muted-strong); font-weight: 700; border: 1px solid rgba(73, 39, 33, 0.16); background: rgba(255, 255, 255, 0.84); }

.hero-panel {
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    display: grid;
    gap: 1.15rem;
}

/* Listas e Badges Comuns */
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: #9b7616; text-transform: uppercase; letter-spacing: 0.18em; font-size: 1rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: linear-gradient(90deg, rgba(192, 48, 0, 0.92), transparent); }

.service-tag { 
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    min-height: 2rem; 
    padding: 0.3rem 0.7rem; 
    border-radius: 999px; 
    color: #8d6b12; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    font-size: 0.72rem; 
    font-weight: 800; 
    margin-bottom: 0.95rem; 
    border: 1px solid rgba(73, 39, 33, 0.16); 
    background: rgba(255, 255, 255, 0.84); 
}
.timeline-step { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 999px; color: #8d6b12; font-weight: 800; margin-bottom: 1rem; border: 1px solid rgba(73, 39, 33, 0.16); background: rgba(255, 255, 255, 0.84); }

/* Status / Mini Cards */
.status-card, .mini-card { border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 232, 221, 0.90)); border: 1px solid rgba(73, 39, 33, 0.10); }
.status-card { padding: 1.3rem; }
.card-label { display: block; color: #8d6b12; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.7rem; }
.status-card strong { display: block; font-size: 1.3rem; line-height: 1.2; margin-bottom: 0.65rem; }
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.05rem; }
.mini-card { min-height: 8.6rem; padding: 1rem; }
.mini-card span { display: inline-block; color: #8d6b12; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.65rem; }
.mini-card strong { display: block; line-height: 1.35; }

.evidence-list { display: grid; gap: 0.8rem; }
.evidence-list > div { padding: 1rem 1.05rem; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.86); border: 1px solid rgba(73, 39, 33, 0.10); }
.evidence-kicker { display: block; color: #8d6b12; font-weight: 800; margin-bottom: 0.35rem; }

/* Trust Strip */
.trust-strip { padding: 0.75rem 0 0; }
.trust-strip-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.trust-strip-row span { display: inline-flex; align-items: center; min-height: 3rem; padding: 0.75rem 1rem; border-radius: 999px; font-weight: 700; color: var(--muted-strong); border: 1px solid rgba(73, 39, 33, 0.16); background: rgba(255, 255, 255, 0.84); }

/* Secções */
.section { padding: 0.5rem 0; }
.section-contrast { background: linear-gradient(180deg, rgba(192, 48, 0, 0.03), rgba(208, 192, 64, 0.02)); }
.section-head { max-width: 100%; margin-bottom: 1rem; margin-inline: auto;}
.section-head p { font-size: 1.02rem; }

/* Plataforma Board */
.section-platform { background: radial-gradient(circle at 0% 0%, rgba(208, 192, 64, 0.16), transparent 30%), radial-gradient(circle at 100% 10%, rgba(192, 48, 0, 0.10), transparent 26%), linear-gradient(180deg, rgba(255, 252, 248, 0.88), rgba(243, 236, 227, 0.92)); }
.platform-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 0.5rem; align-items: stretch; }
.platform-copy { display: grid; gap: 0.5rem; }
.platform-board { min-height: 100%; }

/* Quote da plataforma (Exclusivo do landing.css) */
.platform-quote {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(73, 39, 33, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted-strong);
    font-weight: 700;
}

.platform-shell { height: 100%; padding: 1.2rem; border-radius: var(--radius-xl); border: 1px solid rgba(73, 39, 33, 0.12); background: linear-gradient(180deg, rgba(47, 31, 28, 0.96), rgba(28, 18, 16, 0.98)), rgba(28, 18, 16, 0.98); color: #fff8ef; box-shadow: 0 24px 48px rgba(38, 20, 18, 0.24); display: grid; gap: 1rem; }
.platform-shell-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 0.9rem; border-bottom: 1px solid rgba(255, 248, 239, 0.12); }
.platform-shell-head strong { font-family: "Sora", "Trebuchet MS", sans-serif; font-size: 1.05rem; }
.platform-shell-head span { color: rgba(255, 248, 239, 0.72); font-size: 0.9rem; font-weight: 700; }
.platform-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.platform-metric, .platform-history-item { border-radius: var(--radius-lg); border: 1px solid rgba(255, 248, 239, 0.10); background: rgba(255, 255, 255, 0.06); }
.platform-metric { padding: 1rem; }
.platform-metric span { display: inline-block; margin-bottom: 0.55rem; color: #d8c46a; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.platform-metric strong, .platform-history-item strong { display: block; margin-bottom: 0.45rem; line-height: 1.3; }
.platform-metric p, .platform-history-item p { color: rgba(255, 248, 239, 0.78); }
.platform-history { display: grid; gap: 0.85rem; }
.platform-history-item { padding: 1rem 1.05rem; }

/* Seção de Suporte (Exclusivo do landing.css) */
.section-support {
    padding-top: 2.5rem;
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 1.15rem;
    align-items: start;
}

/* Outros Layouts */
.feature-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 1.15rem; align-items: start; }
.feature-copy { padding: 1rem 0; }
.section-segments { padding-top: 1.5rem; }
.section-cta { padding-top: 1.2rem; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.6rem 1.8rem; background: linear-gradient(135deg, rgba(192, 48, 0, 0.05), rgba(208, 192, 64, 0.08)), var(--surface); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Contato & Form */
.section-contact { padding-top: 3rem; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 1.15rem; align-items: start; }
.contact-copy { display: grid; gap: 1rem; }
.contact-card { padding: 1.2rem; }
.contact-card span { display: block; color: #8d6b12; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.55rem; }
.contact-card a { color: var(--text); font-weight: 800; word-break: break-word; }
.contact-card p { color: var(--text); } /* vindo do landing.css .contact-copy .contact-card p */
.contact-form { padding: 1.45rem; display: grid; gap: 1.15rem; }
.form-head { margin-bottom: 0.35rem; }
.form-head h3 { margin-bottom: 0.45rem; }
.contact-form label { display: grid; gap: 0.45rem; font-weight: 700; color: var(--muted-strong); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(73, 39, 33, 0.16); border-radius: 16px; padding: 0.95rem 1rem; color: var(--text); background: rgba(255, 255, 255, 0.84); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(95, 70, 65, 0.78); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(208, 192, 64, 0.58); box-shadow: 0 0 0 4px rgba(208, 192, 64, 0.14); background: rgba(255, 255, 255, 0.98); }
.contact-form textarea { resize: vertical; min-height: 7rem; }
.form-note { color: var(--muted); font-size: 0.98rem; }
.form-note.is-success { color: #8d6b12; }

/* Rodapé */
.site-footer { padding: 1.4rem 0 2.3rem; }
.footer-row { 
    display: grid; 
    grid-template-columns: minmax(0, 1fr) auto auto; 
    gap: 1.15rem; 
    align-items: center; 
    padding-top: 1rem; 
    border-top: 1px solid rgba(73, 39, 33, 0.16); 
}
.footer-links { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 1.15rem; 
    color: var(--muted-strong); 
    font-weight: 700; 
}
.footer-copy { 
    color: rgba(86, 59, 53, 0.82); 
    text-align: right; 
}

/* Efeitos & Carrossel */
[data-reveal] { 
    opacity: 0; 
    transform: translateY(26px); 
    transition: opacity 0.7s ease, 
    transform 0.7s ease; 
}
[data-reveal].is-visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* --- Botão Flutuante do WhatsApp --- */
.floating-whatsapp { 
    position: fixed; 
    right: 1.5rem; 
    bottom: 1.5rem; 
    z-index: 999; 
    background: #25D366; 
    color: #fff; 
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pisca-whatsapp 1.2s infinite ease-in-out;
    transition: transform .3s ease, background .3s ease;
}

.floating-whatsapp:hover { 
    animation: none; 
    transform: translateY(-4px) scale(1.1); 
    background: #20ba5a; 
    opacity: 1;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    display: block;
    width: 26px; 
    height: 26px;
}

@keyframes pisca-whatsapp {
    0% {
        opacity: 0.75;
        background: #1ebe57;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    50% {
        opacity: 1;
        background: #25D366;
        box-shadow: 0 0 20px 5px rgba(37, 211, 102, 0.6), 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    100% {
        opacity: 0.75;
        background: #1ebe57;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
}

.gallery-panel .service-carousel {
    margin-top: 0.15rem; /* Adicionado do landing.css */
}

.service-gallery-slot:empty { display: none; }
.service-carousel { position: relative; margin: 1.05rem 0 0.75rem; padding: 0 3rem; }
.service-carousel-viewport { overflow: hidden; border-radius: 22px; }
.service-carousel-track { display: flex; transition: transform 360ms ease; will-change: transform; }
.service-slide { min-width: 100%; margin: 0; }
.service-photo { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 22px; border: 1px solid rgba(73, 39, 33, 0.12); box-shadow: 0 14px 30px rgba(73, 39, 33, 0.12); background: rgba(255, 255, 255, 0.9); }

.carousel-button { position: absolute; top: 50%; transform: translateY(-50%); width: 2.4rem; height: 2.4rem; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; background: rgba(127, 14, 14, 0.9); color: #fffaf1; box-shadow: 0 10px 24px rgba(73, 39, 33, 0.18); cursor: pointer; transition: transform 180ms ease, background 180ms ease; z-index: 1; }
.carousel-button:hover, .carousel-button:focus-visible { background: rgba(192, 48, 0, 0.95); }
.carousel-button span { font-size: 1.7rem; line-height: 1; }
.carousel-button-prev { left: 0; }
.carousel-button-next { right: 0; }

.carousel-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 0.85rem; }
.carousel-dot { width: 0.72rem; height: 0.72rem; padding: 0; border: 0; border-radius: 999px; background: rgba(127, 14, 14, 0.2); cursor: pointer; transition: transform 180ms ease, background 180ms ease; }
.carousel-dot.is-active { background: #c03000; transform: scale(1.16); }

@keyframes floatGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, 18px, 0) scale(1.04); }
}

/* --- TABLETS & LAPTOPS (1024px para baixo) --- */
@media (max-width: 1024px) {
    .grid-2,
    .hero-grid,
    .feature-layout,
    .contact-grid,
    .timeline,
    .segments-grid,
    .detail-grid,    /* Mesclado do landing.css */
    .faq-grid,       /* Mesclado do landing.css */
    .related-grid,   /* Mesclado do landing.css */
    .platform-layout,/* Mesclado do landing.css */
    .support-layout { /* Mesclado do landing.css */
        grid-template-columns: 1fr;
    }

    .services-grid,
    .pain-grid,
    .feature-list,
    .contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel,
    .footer-row {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }
}

/* --- DISPOSITIVOS MÓVEIS (760px para baixo) --- */
@media (max-width: 760px) {
    .panel-grid,
    .services-grid,
    .pain-grid,
    .feature-list,
    .contact-cards,
    .timeline {
        grid-template-columns: 1fr;
    }

    /* Regras específicas adicionadas do landing.css */
    .title-wide {
        max-width: none;
    }

    .service-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .container {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .header-row {
        min-height: auto;
        padding: 0.75rem 0;
        gap: 0.2rem;
        align-items: flex-start;
    }

    .brand {
        width: calc(100% - 3.9rem);
        align-items: flex-start;
    }

    .brand-mark {
        width: 4.2rem;
        height: 3.6rem;
    }

    .brand-text strong {
        font-size: 0.94rem;
        line-height: 1.2;
    }

    .brand-text small {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        right: 0;
        display: grid;
        gap: 0.8rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(252, 246, 240, 0.96);
        border: 1px solid rgba(73, 39, 33, 0.10);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        min-height: 2.85rem;
        display: inline-flex;
        align-items: center;
    }

    .site-nav .button {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .hero-copy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .hero-logo {
        width: 8rem;
    }

    .hero-brand-lockup {
        align-items: flex-start;
        gap: 0.9rem;
    }

    .hero-brand-text strong {
        font-size: 1.2rem;
    }

    .hero-brand-text small {
        font-size: 0.82rem;
    }

    .eyebrow {
        letter-spacing: 0.1em;
        line-height: 1.4;
    }

    .eyebrow::before {
        width: 1.25rem;
    }

    h1 { font-size: clamp(1.2rem, 14vw, 1.5rem); max-width: none; }
    h2 { font-size: clamp(0.8rem, 8vw, 1.15rem); }

    .hero-text {
        font-size: 1.08rem;
    }

    .hero-actions,
    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .hero-badges li {
        font-size: 0.9rem;
    }

    .trust-strip-row {
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .trust-strip-row span {
        justify-content: center;
        text-align: center;
        min-height: 2.75rem;
    }

    .service-card,
    .feature-item,
    .timeline-card,
    .segment-card,
    .contact-card,
    .detail-card,   /* Mesclado do landing.css */
    .faq-item,      /* Mesclado do landing.css */
    .related-card { /* Mesclado do landing.css */
        padding: 1.2rem;
    }
    .segment-card, .pain-card {
    border-radius: var(--radius-lg); /*Deixa os cartões dessas grids arredondados */
}

    .service-card ul {
        padding-left: 1.1rem;
    }

    .platform-shell {
        padding: 1rem;
    }

    .platform-metrics {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 1.05rem;
    }

    .contact-form,
    .hero-copy,
    .hero-panel {
        padding: 0.2rem;
    }

    .footer-links {
        gap: 0.9rem;
    }

    .service-carousel {
        padding: 0 2.25rem;
    }

    .service-photo {
        aspect-ratio: 4 / 3;
    }

    .carousel-button {
        width: 2.1rem;
        height: 2.1rem;
    }
}

/* --- CELULARES PEQUENOS (480px para baixo) --- */
@media (max-width: 480px) {
    .brand {
        width: calc(100% - 3.3rem);
    }

    .brand-mark {
        width: 4.4rem;
        height: 3.7rem;
    }

    .hero-logo {
        width: 8.2rem;
    }

    .hero-copy,
    .hero-panel,
    .contact-form,
    .cta-panel {
        padding: 0.5rem;
    }

    .section {
        padding: 3.25rem 0;
    }

    .trust-strip-row {
        grid-template-columns: 1fr;
    }

    .service-carousel {
        padding: 0 1rem;
    }

    .carousel-button {
        width: 1.95rem;
        height: 1.95rem;
    }
}

/* --- TELAS GRANDES (Exclusivo do landing.css) --- */
@media (min-width: 1440px) {
    :root {
        --max-width: 1380px;
    }

    .container {
        width: min(calc(100% - 3rem), var(--max-width));
    }

    .hero-copy,
    .hero-panel {
        min-height: 0;
    }

    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .feature-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1720px) {
    :root {
        --max-width: 1480px;
    }

    .container {
        width: min(calc(100% - 4rem), var(--max-width));
    }

    .hero-copy {
        padding: clamp(2.4rem, 3vw, 3.4rem);
    }

    .hero-panel {
        padding: 1.4rem;
    }
}