:root {
    --primary: #181818; /* Preto escuro */
    --secondary: #ff6600; /* Laranja vibrante */
    --accent: #222; /* Preto mais claro */
    --white: #fff;
    --gray: #232323;
    --text: #fff;
    --muted: rgba(255, 255, 255, 0.72);
    --border: rgba(255, 102, 0, 0.26);
    --shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--primary);
    color: var(--text);
    margin: 0;
    padding: 0;
    padding-top: 82px;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOPBAR */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(24, 24, 24, 0.82);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 102, 0, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.topbar-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}
.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(255, 102, 0, 0.20));
}
.brand-text {
    font-weight: 700;
    letter-spacing: 0.2px;
}
.topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(255, 102, 0, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.35);
}
.topbar-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}
.topbar-chip i {
    font-size: 15px;
    opacity: 0.95;
}
.topbar-chip--primary {
    background: linear-gradient(140deg, #ff7a1a, #ff4d0a 55%, #e64500);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.36);
}
.topbar-chip--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 102, 0, 0.45);
    filter: brightness(1.04);
}
.topbar-chip--ghost {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(28, 28, 28, 0.6);
    border-color: rgba(255, 102, 0, 0.18);
}
.topbar-chip--ghost:hover:not(.topbar-chip--disabled) {
    transform: translateY(-1px);
    background: rgba(40, 40, 40, 0.85);
    border-color: rgba(255, 102, 0, 0.4);
    color: var(--white);
}
.topbar-chip--disabled,
.topbar-chip--ghost.topbar-chip--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    filter: grayscale(0.1);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.btn i {
    font-size: 16px;
}
.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: rgba(255, 102, 0, 0.65);
}
.btn-primary:hover {
    transform: translateY(-1px);
    background: #ff7a1a;
}
.btn-outline {
    background: rgba(34, 34, 34, 0.55);
    color: var(--white);
    border-color: rgba(255, 102, 0, 0.35);
}
.btn-outline:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 102, 0, 0.70);
    background: rgba(34, 34, 34, 0.85);
}
.btn-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.05);
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 380px at 15% 0%, rgba(255, 102, 0, 0.22), transparent 60%),
        radial-gradient(700px 300px at 85% 20%, rgba(255, 102, 0, 0.16), transparent 55%),
        linear-gradient(120deg, var(--primary) 70%, rgba(255, 102, 0, 0.25) 100%);
    color: var(--white);
    min-height: min(70vh, 780px);
    padding: 96px 0 72px 0;
    display: flex;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./hero-space.png") center 45% / cover no-repeat;
    background-color: #000;
    opacity: 1;
    transform: scale(1.02);
    transform-origin: center;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.80));
    z-index: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-copy {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}
.hero-title {
    font-size: clamp(30px, 3.2vw, 46px);
    margin: 0 0 14px 0;
    font-weight: 800;
    letter-spacing: -0.6px;
}
.hero-title-line {
    display: block;
}
.hero-title-line-1 {
    animation: heroTitleIn 800ms ease both;
}
.hero-title-line-2 {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.92);
    animation: heroTitleIn 800ms ease both;
    animation-delay: 140ms;
}
.hero-subtitle {
    margin: 0 0 22px 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    justify-content: center;
}
.hero .btn-outline {
    background: var(--secondary);
    color: var(--white);
    border-color: rgba(255, 102, 0, 0.65);
}
.hero .btn-outline:hover {
    transform: translateY(-1px);
    background: #ff7a1a;
}

@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(10px); filter: blur(1px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Evita esticar demais a imagem em telas muito largas (melhora nitidez percebida) */
@media (min-width: 1600px) {
    .hero::before {
        background-size: 1600px auto;
        background-position: center 45%;
    }
}
.hero-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(35, 35, 35, 0.70);
    border: 1px solid rgba(255, 102, 0, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 13px;
}
.pill i {
    color: var(--secondary);
}
.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.map-visual {
    width: min(460px, 86vw);
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 55% 45%, rgba(255, 102, 0, 0.24), transparent 52%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900' viewBox='0 0 900 900'%3E%3Cg fill='none' stroke='%23ff6600' stroke-opacity='0.22' stroke-width='4'%3E%3Cpath d='M70 250 C180 120, 320 120, 450 220 S700 360, 840 260'/%3E%3Cpath d='M80 520 C220 460, 300 360, 420 380 S650 520, 820 500'/%3E%3Cpath d='M140 780 C260 680, 360 640, 470 680 S690 820, 820 740'/%3E%3Cpath d='M220 140 C260 260, 250 360, 200 470 S140 720, 210 820'/%3E%3Cpath d='M620 120 C560 260, 560 340, 640 460 S760 700, 700 820'/%3E%3C/g%3E%3Cg fill='%23ff6600' fill-opacity='0.18'%3E%3Ccircle cx='450' cy='220' r='10'/%3E%3Ccircle cx='420' cy='380' r='10'/%3E%3Ccircle cx='640' cy='460' r='10'/%3E%3Ccircle cx='470' cy='680' r='10'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(180deg, rgba(35, 35, 35, 0.62), rgba(24, 24, 24, 0.72));
    border: 1px solid rgba(255, 102, 0, 0.20);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.50);
    position: relative;
    overflow: hidden;
}
.map-visual::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.10), transparent 55%);
    transform: rotate(18deg);
}
.map-visual .logo {
    position: relative;
    z-index: 1;
    width: min(320px, 64vw);
    transform: translateY(0);
}
.logo {
    width: min(360px, 68vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 22px rgba(255, 102, 0, 0.24));
    transform: translateY(4px);
}

/* SECTIONS */
.section {
    padding: 64px 0;
    background: var(--primary);
}
.section-alt {
    background: var(--primary);
}
.section-title {
    margin: 0 0 10px 0;
    color: var(--white);
    font-size: 34px;
    letter-spacing: -0.4px;
}
.section-lead {
    margin: 0 0 28px 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    max-width: 75ch;
}

/* CARDS */
.cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.card {
    background: rgba(24, 24, 24, 0.85);
    border: 1px solid rgba(255, 102, 0, 0.22);
    border-radius: 16px;
    padding: 18px 18px 16px 18px;
    box-shadow: var(--shadow);
    --stagger: 0;
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
    transition-delay: calc(var(--stagger) * 0.08s);
    will-change: transform, opacity;
}
.reveal.card:not(.reveal--visible) {
    transform: translateY(36px) scale(0.97);
    opacity: 0;
    pointer-events: none;
}
.card.reveal--visible:hover {
    transform: translateY(-6px) scale(1);
    border-color: rgba(255, 102, 0, 0.55);
    background: rgba(24, 24, 24, 0.94);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.card.reveal--visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.cards-4 .card.reveal:nth-child(1) { --stagger: 0; }
.cards-4 .card.reveal:nth-child(2) { --stagger: 1; }
.cards-4 .card.reveal:nth-child(3) { --stagger: 2; }
.cards-4 .card.reveal:nth-child(4) { --stagger: 3; }
.card i {
    color: var(--secondary);
    font-size: 22px;
}
.card h3 {
    margin: 12px 0 8px 0;
    font-size: 18px;
}
.card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.step {
    background: rgba(35, 35, 35, 0.55);
    border: 1px solid rgba(255, 102, 0, 0.18);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    --stagger: 0;
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
    transition-delay: calc(var(--stagger) * 0.08s);
    will-change: transform, opacity;
}
.reveal.step:not(.reveal--visible) {
    transform: translateY(36px) scale(0.97);
    opacity: 0;
    pointer-events: none;
}
.step.reveal--visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.step.reveal--visible:hover {
    transform: translateY(-6px) scale(1);
    border-color: rgba(255, 102, 0, 0.50);
    background: rgba(35, 35, 35, 0.80);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.steps .step.reveal:nth-child(1) { --stagger: 0; }
.steps .step.reveal:nth-child(2) { --stagger: 1; }
.steps .step.reveal:nth-child(3) { --stagger: 2; }
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 102, 0, 0.14);
    border: 1px solid rgba(255, 102, 0, 0.30);
    color: var(--secondary);
}
.step h3 {
    margin: 14px 0 8px 0;
    font-size: 18px;
}
.step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
}

/* INCLUDED (SERVIÇOS) */
.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}
.included-card {
    background: rgba(24, 24, 24, 0.85);
    border: 1px solid rgba(255, 102, 0, 0.22);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    --stagger: 0;
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.reveal.included-card:not(.reveal--visible) {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    pointer-events: none;
}
.included-card.reveal--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.included-card.soft {
    background: rgba(35, 35, 35, 0.55);
}
.included-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
}
.included-card p {
    margin: 0 0 14px 0;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
}
.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.list li {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}
.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.70);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}
.contact-card {
    background: rgba(24, 24, 24, 0.85);
    border: 1px solid rgba(255, 102, 0, 0.22);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    --stagger: 0;
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    transition-delay: calc(var(--stagger) * 0.1s);
    will-change: transform, opacity;
}
.reveal.contact-card:not(.reveal--visible) {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    pointer-events: none;
}
.contact-card.reveal--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.contact-card.reveal--visible:hover {
    border-color: rgba(255, 102, 0, 0.45);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
    transform: translateY(-3px) scale(1);
}
.contact-grid .contact-card.reveal:nth-child(1) { --stagger: 0; }
.contact-grid .contact-card.reveal:nth-child(2) { --stagger: 1; }
.contact-card.subtle {
    background: rgba(35, 35, 35, 0.55);
}
.contact-card h3 {
    margin: 0 0 12px 0;
}
.contact-card p {
    margin: 0 0 14px 0;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}
.contact-item i {
    color: var(--secondary);
    width: 18px;
}
.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* APP BADGES */
.app-badges {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}
.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(24, 24, 24, 0.78);
    border: 1px solid rgba(255, 102, 0, 0.22);
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.app-badge:hover {
    transform: translateY(-1px);
    background: rgba(24, 24, 24, 0.92);
    border-color: rgba(255, 102, 0, 0.55);
}
.app-badge.disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}
.app-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 102, 0, 0.14);
    border: 1px solid rgba(255, 102, 0, 0.30);
    color: var(--secondary);
    flex: 0 0 auto;
}
.app-badge-icon i {
    font-size: 20px;
}
.app-badge-text {
    display: grid;
    line-height: 1.1;
}
.app-badge-overline {
    color: rgba(255, 255, 255, 0.70);
    font-weight: 700;
    font-size: 12px;
}
.app-badge-title {
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.2px;
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.wa-float-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #0b2a14;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.18s ease, filter 0.18s ease;
}
.wa-float-icon i {
    font-size: 28px;
    color: #0b2a14;
}
.wa-float:hover .wa-float-icon {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.wa-float-bubble {
    max-width: min(260px, 62vw);
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(24, 24, 24, 0.92);
    border: 1px solid rgba(255, 102, 0, 0.35);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.1px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    position: relative;
    transform-origin: 90% 90%;
    animation: waBubbleIn 2.6s ease-in-out infinite;
}
.wa-float-bubble::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: 16px;
    width: 12px;
    height: 12px;
    background: rgba(24, 24, 24, 0.92);
    border-right: 1px solid rgba(255, 102, 0, 0.35);
    border-bottom: 1px solid rgba(255, 102, 0, 0.35);
    transform: rotate(-45deg);
}
@keyframes waBubbleIn {
    0% { transform: translateY(0) scale(1); opacity: 0.88; }
    35% { transform: translateY(-2px) scale(1.02); opacity: 1; }
    70% { transform: translateY(0) scale(1); opacity: 0.96; }
    100% { transform: translateY(0) scale(1); opacity: 0.88; }
}

@media (max-width: 600px) {
    .wa-float { right: 14px; bottom: 14px; }
    .wa-float-icon { width: 54px; height: 54px; }
    .wa-float-bubble { display: none; }
}
/* RESPONSIVO */
@media (max-width: 900px) {
    body { padding-top: 92px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .cards-4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    body { padding-top: 100px; }
    .hero {
        min-height: auto;
        padding: 80px 0 48px 0;
    }
    .brand-text { display: none; }
    .section { padding: 48px 0; }
    .section-title { font-size: 28px; }
    .btn { width: 100%; }
    .topbar-cta {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .topbar-chip { flex: 1 1 auto; min-width: 0; justify-content: center; }
    .topbar-inner { align-items: center; padding: 10px 0; flex-wrap: wrap; }
    .cards-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal--visible,
    .reveal.card:not(.reveal--visible),
    .reveal.step:not(.reveal--visible),
    .reveal.included-card:not(.reveal--visible),
    .reveal.contact-card:not(.reveal--visible) {
        transition: none;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
} 