/* DESIGN SYSTEM: PUSH THE RANK (Capgo-Inspired Minimalist High-Contrast) */

:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-muted: #6e6e73;
    --border-color: #e5e5e7;
    --accent-color: #000000;
    --accent-green: #34c759;
    --card-bg: #fafafa;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.logo-img {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #000000;
}

.nav-cta-btn {
    border: 1px solid #000000;
    padding: 8px 18px;
    border-radius: 100px;
    color: #000000;
    transition: all 0.2s ease;
}

.nav-cta-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* SPLIT HERO SECTION (HOME) */
.hero-sec {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 40px 80px;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* HYPERREALISTIC ROUND BUTTON - Static bezel, animated inner cap */
.button-housing {
    width: 260px;
    height: 260px;
    background-image: url('button.jpg');
    background-size: 122% 122%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.14));
}

.button-cap {
    position: absolute;
    top: 18.5%;
    left: 18.5%;
    width: 63%;
    height: 63%;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    background-image: url('button.jpg');
    background-size: 194% 194%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1), filter 0.1s cubic-bezier(0.25, 1, 0.5, 1);
}

.button-cap:hover {
    transform: scale(1.015);
}

.button-cap:active, .button-cap.pressed {
    transform: translateY(6px);
    filter: brightness(0.94);
    box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.22);
}

/* RIGHT COLUMN TYPOGRAPHY (HOME) */
.main-press-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.title-sub {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 0px;
    line-height: 1.4;
}

.statement-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 540px;
}

.paragraph-desc {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: -0.2px;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
}

.paragraph-desc strong {
    color: #000000;
    font-weight: 700;
}

.text-upper {
    text-transform: uppercase;
}

.spacing-top {
    margin-top: 24px;
    border-top: none;
    padding-top: 0;
}

/* SECTIONS BASE LAYOUT */
.section {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
}

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

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.header-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* TRANSIÇÃO: PUSH THE RANK */
.transition-section {
    background-color: #fafafa;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.wrap-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.shift-block h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin: 20px 0;
}

.shift-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 24px auto;
    width: 60px;
}

.shift-mid {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: #000000;
}

.shift-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

.shift-bullets li {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.shift-bullets .arrow {
    color: #000000;
    font-weight: 800;
}

/* BLOCO 1 — A METODOLOGIA */
.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}

.m-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.method-card h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.method-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.m-how {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #000000;
}

.method-closing {
    margin-top: 50px;
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background-color: #000000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* BLOCO 2 — QUEM ATENDEMOS */
.serve-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.serve-info h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.serve-lead {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.segment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.segment-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.seg-icon {
    width: 40px;
    height: 40px;
    background-color: #f4f4f6;
    color: #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.segment-list li:hover .seg-icon {
    background-color: #000000;
    color: #ffffff;
}

.segment-list h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.segment-list p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.serve-card {
    background-color: #000000;
    color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-hero-text {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.card-hero-text .muted {
    color: #8e8e93;
}

.card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #a1a1a6;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stat-val {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    min-width: 60px;
}

.stat-desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-lbl {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-sub {
    font-size: 11px;
    color: #8e8e93;
    line-height: 1.4;
}

/* BLOCO 3 — NOSSOS PRODUTOS */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 44px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card.highlight {
    border-color: #000000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.prod-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 100px;
    background-color: #f5f5f7;
    color: var(--text-muted);
    display: inline-block;
    margin-bottom: 20px;
    width: fit-content;
}

.prod-badge.primary {
    background-color: #000000;
    color: #ffffff;
}

.product-card h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.prod-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.prod-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.prod-checklist li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.prod-note {
    font-size: 12px;
    color: var(--text-muted);
    background-color: var(--card-bg);
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.prod-action {
    margin-top: auto;
}

.btn-product {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #000000;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-product:hover {
    background-color: #f5f5f7;
}

.btn-product.primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-product.primary:hover {
    background-color: #222222;
}

/* BLOCO 4 — PERGUNTAS FREQUENTES (FAQ) */
.faq-accordion-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: #ffffff;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: #000000;
}

.faq-question {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.2s;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 16px;
}

/* BLOCO 5 — CONTATO */
.contact-section {
    border-bottom: none;
    padding-bottom: 120px;
}

.contact-box {
    max-width: 520px;
    margin: 0 auto;
}

.contact-box h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.contact-sub {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    background-color: var(--card-bg);
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #000000;
    background-color: #ffffff;
}

.submit-btn {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #222222;
}

/* FOOTER ESTRUTURADO */
.footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 80px 80px 40px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 16px;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 280px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.f-col h5 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000000;
}

.f-col a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.f-col a:hover {
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}

/* FLOATING BOT BUTTON & WINDOW MODAL */
.bot-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.bot-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.bot-window {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 360px;
    max-width: calc(100vw - 48px);
    height: 480px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.bot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bot-header {
    background-color: #000000;
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bot-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-header-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.bot-info {
    display: flex;
    flex-direction: column;
}

.bot-info strong {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.bot-sub {
    font-size: 11px;
    color: #a1a1a6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bot-status-dot {
    width: 7px;
    height: 7px;
    background-color: #34c759;
    border-radius: 50%;
    display: inline-block;
}

.bot-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.bot-close-btn:hover {
    opacity: 1;
}

.bot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: #fafafa;
}

.bot-msg-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}

.bot-msg-row.bot {
    justify-content: flex-start;
}

.bot-msg-row.user {
    justify-content: flex-end;
}

.bot-msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e5e7;
    background-color: #ffffff;
    flex-shrink: 0;
}

.bot-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
}

.bot-msg.bot {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #e5e5e7;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bot-msg.user {
    background-color: #000000;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bot-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.bot-chip {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.bot-chip:hover {
    background-color: #000000;
    color: #ffffff;
}

.bot-input-bar {
    padding: 12px 16px;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bot-input-bar input {
    flex: 1;
    border: 1px solid #e5e5e7;
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 12px;
    outline: none;
    background-color: #fafafa;
}

.bot-input-bar input:focus {
    border-color: #000000;
    background-color: #ffffff;
}

.bot-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.bot-send-btn:hover {
    background-color: #222222;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .navbar { padding: 16px 24px; }
    .hero-sec { padding: 40px 24px; }
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .section { padding: 60px 24px; }
    .method-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-cols { grid-template-columns: 1fr; gap: 30px; }
    .footer { padding: 40px 24px 24px; }
}
