/* ===== Novo Layout Fluzz ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ----- Scroll reveal (animação ao entrar na tela) ----- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

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

/* Pequeno delay em cards de funcionalidades para suavizar */
.feature-section:nth-child(odd) .scroll-reveal.is-visible {
    transition-delay: 0.05s;
}
.feature-section:nth-child(even) .scroll-reveal.is-visible {
    transition-delay: 0.08s;
}

:root {
    --green: #00D66B;
    --green-dark: #00B85A;
    --text: #1a1a1a;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --bg: #ffffff;
    --bg-subtle: #f9fafb;
    --red: #dc2626;
    --red-bg: #fef2f2;
    --green-bg: #f0fdf4;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ----- Header ----- */
.header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.header-wrap.is-scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text);
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 9999px;
    background: var(--bg-subtle);
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn {
    border-radius: 9999px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline {
    background: var(--bg);
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--bg-subtle);
}

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

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.arrow {
    font-size: 1rem;
    opacity: 0.9;
}

.play-icon {
    font-size: 0.65rem;
    margin-right: 0.25rem;
}

/* ----- Hero ----- */
.hero {
    position: relative;
    padding: 3rem 2rem 4rem;
    width: 100%;
    overflow: hidden;
    background-color: rgba(232, 245, 233, 0.4);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-bg-pattern::before,
.hero-bg-pattern::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.18;
}

.hero-bg-pattern::before {
    width: 480px;
    height: 480px;
    background: var(--green);
    bottom: -120px;
    left: -120px;
}

.hero-bg-pattern::after {
    width: 420px;
    height: 420px;
    background: var(--green);
    top: -100px;
    right: -100px;
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content {
    max-width: 560px;
    margin-top: -2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 1.25rem;
    background: rgba(0, 214, 107, 0.05);
    border: 1px solid rgba(0, 214, 107, 0.2);
}

.badge-dot {
    position: relative;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
}

.badge-dot-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.75;
    animation: badge-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge-dot-inner {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

@keyframes badge-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .hero-title { font-size: 1.875rem; }
}

@media (min-width: 1280px) {
    .hero-title { font-size: 2rem; }
}

.hero-title strong {
    font-weight: 800;
}

.hero-title-whatsapp {
    color: var(--green);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.hero-title-whatsapp::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'%3E%3Cpath d='M1 5.5Q50 1 100 5.5Q150 10 199 5.5' stroke='%2300D66B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 100%;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.625;
    max-width: 32rem;
    margin-top: 1.75rem;
    margin-bottom: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-ctas .btn {
    height: 2.75rem;
    padding: 0 1.5rem;
    border-radius: 12px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-top: 2rem;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.feat-icon {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-mockup {
    background: var(--bg);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    position: relative;
    animation: hero-mockup-float 6s ease-in-out infinite;
}

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

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

.hero-card {
    position: absolute;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
}

.hero-card-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 214, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card .card-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
}

.hero-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.hero-card .card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-card .card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.hero-card .card-value-green {
    color: var(--green);
    font-size: 1.125rem;
}

.hero-card-1 {
    top: 48px;
    right: -32px;
}

.hero-card-2 {
    bottom: 64px;
    left: -40px;
}

@media (min-width: 1024px) {
    .hero-card-2 { left: -40px; }
}

/* ----- Section Foco (Seu time focado) ----- */
.section-foco {
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, #fafbfc, #f9fafb);
}

.section-foco-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-foco-title {
    font-size: 1.9375rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 0.75rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.section-foco-title .green {
    color: var(--green);
    font-weight: 800;
}

.section-foco-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* Steps - cards horizontais: ícone à esquerda, título + descrição dentro do card */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 3rem;
}

.step-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    min-height: 3.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.step-card .step-circle {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card .step-circle svg {
    width: 1rem;
    height: 1rem;
    color: inherit;
}

.step-circle-1 {
    background: rgba(56, 189, 248, 0.2);
    color: #0ea5e9;
}

.step-circle-2 {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.step-circle-3 {
    background: rgba(245, 158, 11, 0.15);
    color: #ca8a04;
}

.step-circle-4 {
    background: rgba(0, 214, 107, 0.15);
    color: #00a858;
}

.step-card-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
}

.step-name {
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 1.3;
    color: var(--text);
}

.step-num {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-muted);
}

.step-arrow {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    opacity: 0.7;
}

.step-arrow svg {
    width: 28px;
    height: 8px;
}

/* Audience grid */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
    text-align: left;
}

.audience-box {
    padding: 1.5rem;
    border-radius: 1rem;
}

.audience-yes {
    background: #f0fdf4;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.audience-no {
    background: #fbf7f7;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.audience-box-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.audience-title-icon {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    min-height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-title-icon svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.audience-title-icon-yes {
    background: var(--green);
}

.audience-title-icon-no {
    background: var(--red);
}

.audience-box-title h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.audience-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.audience-box li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #ffffff;
}

.audience-box li:last-child {
    margin-bottom: 0;
}

.audience-item-icon {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-item-icon svg {
    width: 1rem;
    height: 1rem;
}

.audience-item-icon-yes svg {
    color: var(--green);
}

.audience-item-icon-no svg {
    color: var(--red);
}

/* Disclaimer */
.disclaimer {
    margin: 0;
    text-align: center;
}

.disclaimer-box {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* ----- Funcionalidades intro ----- */
#funcionalidades {
    scroll-margin-top: 6rem;
}

.section-func {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 1rem;
    margin-top: 2rem;
}

.func-intro-title {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--text);
    text-align: center;
}

.func-intro-title .green {
    color: var(--green);
}

.func-intro-title strong {
    font-weight: 700;
}

/* ----- Feature sections ----- */
.feature-section {
    padding: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

/* Feature 1, 3, 5: imagem à esquerda, texto à direita (ordem no HTML: img, text) */
/* Feature 2, 4, 6: texto à esquerda, imagem à direita (ordem no HTML: text, img) */
.section-num {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--green);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img-wrap {
    padding: 1.25rem;
    background: #f5faf6;
    border-radius: 0.75rem;
    overflow: visible;
    transform: rotate(-2deg);
}

.feature-img-inner {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    transform: rotate(2deg);
}

.feature-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text {
    padding: 0.5rem 0;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: white;
}

.feature-icon-people,
.feature-icon-chat,
.feature-icon-funil,
.feature-icon-clock,
.feature-icon-chart {
    background: #dcfce7;
}

.feature-icon-wrap.feature-icon-people svg,
.feature-icon-wrap.feature-icon-chat svg,
.feature-icon-wrap.feature-icon-funil svg,
.feature-icon-wrap.feature-icon-clock svg,
.feature-icon-wrap.feature-icon-chart svg {
    color: var(--green-dark);
}

.feature-icon-send {
    background: var(--green);
}

.feature-text h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.check-green {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

/* ----- CTA Section ----- */
.cta-section {
    padding: 4rem 2rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.cta-inner {
    background: #f9fdfb;
    border-radius: 1rem;
    padding: 3rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(0, 214, 107, 0.12);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.cta-content h2 strong {
    font-weight: 700;
}

.cta-content .green {
    color: var(--green);
}

.cta-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 32rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-weight: 500;
}

.cta-content .btn {
    display: block;
    width: fit-content;
    border-radius: 8px;
}

.headset-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
}

.cta-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circles-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 214, 107, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.cta-circle-outer {
    width: 200px;
    height: 200px;
}

.cta-circle-inner {
    width: 160px;
    height: 160px;
    border-color: rgba(0, 214, 107, 0.08);
}

.cta-icon-composition {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.cta-icon-center-wrap {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.cta-icon-center {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cta-icon-small {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cta-icon-small svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.cta-icon-top {
    top: -16px;
    right: -4px;
}

.cta-icon-bottom {
    bottom: -16px;
    left: -4px;
}

/* ----- Tagline ----- */
.tagline-section {
    padding: 0.25rem 2rem 2.5rem;
    text-align: center;
    background: #fff;
}

.tagline-section p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 auto;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tagline-section p {
        white-space: normal;
    }
}

/* ----- Footer ----- */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    font-size: 1.3125rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #a4a7aa;
}

.footer-about h3 .footer-title-white {
    color: #fff;
    font-weight: 700;
}

.footer-about h3 .footer-title-green {
    color: var(--green);
    font-weight: 700;
}

.footer-about h3 .footer-heart {
    color: var(--green);
}

.footer-about p {
    font-size: 0.9375rem;
    color: #74787e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-about p .footer-desc-highlight {
    color: #96999e;
    font-weight: 700;
}

.footer-ctas {
    display: flex;
    gap: 0.75rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-socials-title {
    margin-top: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #e2e8f0;
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.1);
}

.social-icons a:hover {
    opacity: 0.9;
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.social-icons a.social-icon-instagram {
    color: #E4405F !important;
}

.social-icons a.social-icon-instagram svg {
    fill: #E4405F;
}

.social-icons a.social-icon-facebook {
    color: #1877F2 !important;
}

.social-icons a.social-icon-facebook svg {
    fill: #1877F2;
}

.social-icons a.social-icon-youtube {
    color: #FF0000 !important;
}

.social-icons a.social-icon-youtube svg {
    fill: #FF0000;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.btn-outline-light {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .feature-card {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-alt .feature-card {
        direction: ltr;
    }

    .feature-alt .feature-card .feature-text {
        text-align: left;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-graphic {
        order: -1;
    }

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

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

    .steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-card-1,
    .hero-card-2 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }

    .section-foco-title {
        font-size: 1.35rem;
    }

    .func-intro-title {
        font-size: 1.35rem;
    }

    .feature-alt .feature-card .feature-img-wrap {
        order: -1;
    }

    .feature-alt .feature-card .feature-text {
        order: 0;
    }

    .steps {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer {
        overflow-x: hidden;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-ctas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-ctas .btn {
        width: 100%;
        max-width: 18rem;
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ----- Cookie banner ----- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.5rem;
    background: #0f172a;
    color: #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.cookie-banner--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 260px;
}

.cookie-banner-text a {
    color: var(--green);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    opacity: 0.9;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    min-height: 2.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    align-items: center;
}

.cookie-banner .btn-cookie-link {
    color: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.4);
    background: #fff;
}

.cookie-banner .btn-cookie-link:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .cookie-banner-actions {
        justify-content: center;
    }
}

/* ----- Mobile only: menu hamburger e primeira seção ----- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: var(--bg-subtle);
}

.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-wrap .mobile-menu {
    display: none;
}

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

    .header-wrap {
        padding-top: max(1rem, env(safe-area-inset-top, 0));
        padding-right: 1.5rem;
        padding-bottom: 1rem;
        padding-left: 1.5rem;
        min-height: 4.5rem;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .header-wrap > .header {
        width: 100%;
        padding: 0 !important;
        min-height: 0;
        flex: 1 1 auto;
        align-self: stretch;
        display: flex;
        align-items: center;
    }

    .header .nav-links,
    .header .header-actions {
        display: none !important;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero .badge {
        margin-bottom: 1.5rem;
    }

    .hero-ctas .btn {
        justify-content: center;
    }

    .hero-features span:first-child {
        display: none;
    }

    .hero-visual {
        display: none !important;
    }

    .header-wrap .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .header-wrap .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu .mobile-nav {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85vw;
        height: 100%;
        background: #fff;
        padding: 2rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu .mobile-nav a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .mobile-menu .mobile-nav a:hover {
        background: var(--bg-subtle);
    }

    .menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
