/* =============================================================
   VENDA FÁCIL — Stylesheet
   Paleta: Azul profundo + Laranja (identidade do logo original)
   Mobile-first, sem dependências de build
   ============================================================= */

:root {
    --c-primary: #1e3a8a;
    --c-primary-2: #2563eb;
    --c-primary-light: #3b82f6;
    --c-accent: #ff7a18;
    --c-accent-2: #fb923c;
    --c-dark: #0b1532;
    --c-dark-2: #111d44;
    --c-text: #1f2937;
    --c-text-muted: #475569;
    --c-bg: #ffffff;
    --c-bg-soft: #f8fafc;
    --c-bg-blue: #eff4ff;
    --c-border: #e2e8f0;
    --c-white: #ffffff;
    --c-success: #16a34a;

    --grad-primary: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    --grad-accent: linear-gradient(135deg, #ff7a18 0%, #fb923c 100%);
    --grad-mixed: linear-gradient(135deg, #1e3a8a 0%, #ff7a18 100%);
    --grad-dark: linear-gradient(135deg, #0b1532 0%, #111d44 60%, #1e3a8a 100%);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, .12);
    --shadow-blue: 0 18px 40px -10px rgba(30, 58, 138, .4);
    --shadow-orange: 0 18px 40px -10px rgba(255, 122, 24, .45);

    --t-fast: .2s cubic-bezier(.4, 0, .2, 1);
    --t-mid: .35s cubic-bezier(.4, 0, .2, 1);
    --t-slow: .6s cubic-bezier(.16, 1, .3, 1);

    --container: 1200px;
    --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; line-height: 1.2; color: var(--c-dark); font-weight: 800; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.text-gradient { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* =============== BUTTONS =============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: all var(--t-mid);
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -8px rgba(255, 122, 24, .6); }
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 18px 40px -10px rgba(37, 211, 102, .5);
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #1ebc5a; }
.btn-outline {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-nav {
    background: var(--grad-accent);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 999px;
    box-shadow: var(--shadow-orange);
}
.btn-nav:hover { transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-large { padding: 18px 36px; font-size: 17px; }

/* =============== HEADER =============== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    z-index: 100;
    transition: all var(--t-mid);
    border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(255, 255, 255, 0.96); border-bottom-color: var(--c-border); box-shadow: var(--shadow-sm); }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--c-dark); }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text strong { color: var(--c-accent); font-weight: 800; }

.nav-menu { display: none; align-items: center; gap: 32px; }
.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--c-text-muted);
    position: relative;
    padding: 6px 0;
}
.nav-link:not(.btn-nav):hover { color: var(--c-primary); }
.nav-link:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--c-accent);
    transition: width var(--t-mid);
}
.nav-link:not(.btn-nav):hover::after { width: 100%; }

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.hamburger span {
    display: block;
    width: 26px; height: 3px;
    background: var(--c-dark);
    border-radius: 2px;
    transition: all var(--t-mid);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 960px) {
    .nav-menu { display: flex; }
    .hamburger { display: none; }
}

/* =============== HERO =============== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-h) + 60px) 0 80px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #3b82f6, transparent 70%); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #ff7a18, transparent 70%); bottom: -100px; left: -100px; animation-delay: -10s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #fb923c, transparent 70%); top: 40%; left: 50%; animation-delay: -5s; opacity: 0.3; }
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; } }

.hero-content { animation: fadeUp 1s var(--t-slow); }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255, 122, 24, .12);
    color: var(--c-accent);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 122, 24, 0.2);
}

.hero-title { font-size: clamp(2.2rem, 5.5vw, 3.8rem); margin-bottom: 24px; }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--c-text-muted); margin-bottom: 36px; max-width: 580px; line-height: 1.65; }
.hero-sub strong { color: var(--c-dark); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 500px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--c-primary); font-weight: 800; line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.stat span { font-size: 13px; color: var(--c-text-muted); margin-top: 6px; font-weight: 500; }

/* ----- Dashboard mockup ----- */
.hero-visual { position: relative; animation: fadeUp 1s var(--t-slow) .2s both; }
.dashboard-mockup {
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    position: relative;
    z-index: 1;
}
.mockup-bar {
    background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--c-border);
}
.mockup-bar > span { width: 12px; height: 12px; border-radius: 50%; background: #cbd5e1; }
.mockup-bar > span:nth-child(1) { background: #ef4444; }
.mockup-bar > span:nth-child(2) { background: #f59e0b; }
.mockup-bar > span:nth-child(3) { background: #10b981; }
.mockup-title { margin-left: 12px; font-size: 13px; color: var(--c-text-muted); font-weight: 600; }

.mockup-body { display: grid; grid-template-columns: 130px 1fr; min-height: 320px; }
.mockup-side { background: var(--grad-dark); padding: 16px 12px; }
.mockup-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}
.mockup-item.active { background: rgba(255, 122, 24, 0.2); color: var(--c-accent-2); }

.mockup-main { padding: 20px; background: #fafbff; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.kpi { background: #fff; padding: 12px; border-radius: var(--r-md); border: 1px solid var(--c-border); }
.kpi-label { font-size: 11px; color: var(--c-text-muted); display: block; margin-bottom: 4px; }
.kpi-value { font-size: 18px; font-weight: 800; color: var(--c-dark); font-family: 'Plus Jakarta Sans', sans-serif; }
.kpi-trend { display: block; font-size: 11px; font-weight: 700; margin-top: 4px; }
.kpi-trend.up { color: var(--c-success); }

.chart { display: flex; align-items: flex-end; gap: 8px; height: 140px; padding: 12px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--c-border); }
.bar {
    flex: 1;
    height: var(--h);
    background: var(--grad-primary);
    border-radius: 6px 6px 2px 2px;
    animation: barGrow 1.2s var(--t-slow) both;
    transform-origin: bottom;
}
.bar:nth-child(1) { animation-delay: .1s; }
.bar:nth-child(2) { animation-delay: .2s; }
.bar:nth-child(3) { animation-delay: .3s; }
.bar:nth-child(4) { animation-delay: .4s; background: var(--grad-accent); }
.bar:nth-child(5) { animation-delay: .5s; }
.bar:nth-child(6) { animation-delay: .6s; background: var(--grad-accent); }
.bar:nth-child(7) { animation-delay: .7s; }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.floating-card {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    font-size: 13px;
}
.floating-card strong { display: block; color: var(--c-dark); font-weight: 700; }
.floating-card span { color: var(--c-text-muted); font-size: 11px; }
.fc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.card-1 { top: 32px; left: -24px; }
.card-2 { bottom: 32px; right: -24px; }
@media (max-width: 1023px) {
    .floating-card { display: none; }
}

/* =============== SECTIONS COMMON =============== */
.section { padding: 90px 0; position: relative; }
.section-light { background: var(--c-bg-soft); }
.section-dark { background: var(--grad-dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-gradient { background: var(--grad-mixed); color: #fff; }
.section-gradient h2, .section-gradient h3 { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title.left { text-align: left; }
.section-lead.left { text-align: left; margin-left: 0; }

.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: var(--c-bg-blue);
    color: var(--c-primary);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.eyebrow-light { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.95); border: 1px solid rgba(255, 255, 255, 0.2); }

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section-lead { font-size: clamp(1rem, 1.2vw, 1.1rem); color: var(--c-text-muted); max-width: 660px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-lead, .section-gradient .section-lead { color: rgba(255, 255, 255, 0.85); }

/* =============== FEATURES =============== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature {
    background: #fff;
    padding: 32px;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: all var(--t-mid);
    position: relative;
    overflow: hidden;
}
.feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-mid);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 56px; height: 56px;
    background: var(--c-bg-blue);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-primary);
    margin-bottom: 20px;
    transition: all var(--t-mid);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature:hover .feature-icon { background: var(--grad-accent); color: #fff; transform: scale(1.05) rotate(-4deg); }
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { color: var(--c-text-muted); font-size: 15px; }

/* =============== MODULES =============== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.module-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: var(--r-lg);
    transition: all var(--t-mid);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity var(--t-mid);
    z-index: -1;
}
.module-card:hover { transform: translateY(-4px); border-color: var(--c-accent); }
.module-card.highlight { background: rgba(255, 122, 24, 0.12); border-color: rgba(255, 122, 24, 0.4); }
.module-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.95;
}
.module-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #fff; }
.module-card p { color: rgba(255, 255, 255, 0.78); font-size: 14.5px; line-height: 1.6; }

/* =============== PRICING =============== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.price-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 36px 30px;
    transition: all var(--t-mid);
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
    background: var(--grad-dark);
    color: #fff;
    border-color: var(--c-accent);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.price-card.featured h3 { color: #fff; }
.price-card.featured .price-head p { color: rgba(255, 255, 255, 0.8); }
.price-card.featured .price-list li { color: rgba(255, 255, 255, 0.9); border-bottom-color: rgba(255, 255, 255, 0.1); }
.price-card.featured .price-list li::before { background: var(--c-accent); }
.price-card.featured .price-list li strong { color: #fff; }
@media (min-width: 1024px) { .price-card.featured { transform: scale(1.05); } }

.ribbon {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--grad-accent);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-orange);
}

.price-head { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--c-border); }
.price-card.featured .price-head { border-bottom-color: rgba(255, 255, 255, 0.15); }
.price-head h3 { font-size: 1.7rem; margin-bottom: 8px; }
.price-head h3 span { color: var(--c-accent); font-weight: 800; }
.price-head p { color: var(--c-text-muted); font-size: 14px; line-height: 1.5; }

.price-list { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.price-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--c-text);
    border-bottom: 1px dashed var(--c-border);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    background: var(--c-bg-blue);
    border-radius: 50%;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/12px no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/12px no-repeat;
    background-color: var(--c-primary);
}
.price-list li strong { color: var(--c-dark); font-weight: 700; }

/* =============== SEGMENTS =============== */
.segments-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) { .segments-wrap { grid-template-columns: 1fr 1fr; } }

.seg-title { font-size: 1.4rem; margin-bottom: 20px; color: #fff; }
.segments-list { display: flex; flex-wrap: wrap; gap: 10px; }
.seg-chip {
    display: inline-flex;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--t-mid);
    cursor: default;
}
.seg-chip:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }

/* =============== EQUIPMENT =============== */
.eq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.eq-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--t-mid);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.eq-card:hover { transform: translateY(-4px); border-color: var(--c-accent); box-shadow: var(--shadow-md); }
.eq-emoji { font-size: 2.2rem; line-height: 1; }
.eq-card strong { font-size: 14px; color: var(--c-dark); font-weight: 700; }

/* =============== STATES =============== */
.states-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 800px; margin: 0 auto; }
.state {
    padding: 12px 22px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    font-weight: 600;
    color: var(--c-primary);
    font-size: 15px;
    transition: all var(--t-mid);
}
.state:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-blue); }

/* =============== BENEFITS =============== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.benefit {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--r-lg);
    transition: all var(--t-mid);
}
.benefit:hover { background: rgba(255, 122, 24, 0.1); border-color: rgba(255, 122, 24, 0.3); transform: translateY(-3px); }
.b-num {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 10px;
    line-height: 1;
}
.benefit h4 { font-size: 1.05rem; margin-bottom: 6px; color: #fff; }
.benefit p { color: rgba(255, 255, 255, 0.75); font-size: 14px; }

/* =============== CONTACT =============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }

.contact-info .eyebrow { margin-bottom: 16px; }
.contact-list { list-style: none; margin-top: 32px; }
.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--c-border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list svg {
    width: 24px; height: 24px;
    color: var(--c-accent);
    flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--c-dark); font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.contact-list a, .contact-list span { color: var(--c-text-muted); font-size: 15px; }
.contact-list a:hover { color: var(--c-primary); }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
    position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 700; color: var(--c-dark); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--c-text);
    background: var(--c-bg-soft);
    transition: all var(--t-fast);
    width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--c-primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-status { margin-top: 16px; padding: 12px 16px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; text-align: center; display: none; }
.form-status.success { display: block; background: #dcfce7; color: #166534; }
.form-status.error { display: block; background: #fee2e2; color: #991b1b; }

/* =============== CTA FINAL =============== */
.cta-final { background: var(--grad-mixed); padding: 80px 0; color: #fff; position: relative; overflow: hidden; }
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1), transparent 40%);
}
.cta-inner { position: relative; text-align: center; }
.cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; color: #fff; }
.cta-final p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; }

/* =============== FOOTER =============== */
.footer { background: var(--c-dark); color: rgba(255, 255, 255, 0.7); padding: 70px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}
.footer-grid > div > p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul li a { transition: color var(--t-fast); }
.footer-grid ul li a:hover { color: var(--c-accent); }
.logo-footer { color: #fff; margin-bottom: 4px; }
.logo-footer .logo-text { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* =============== WHATSAPP FLOAT =============== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 90;
    animation: pulse 2.5s ease-in-out infinite;
    transition: transform var(--t-mid);
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* =============== MOBILE MENU =============== */
@media (max-width: 959px) {
    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-h) + 24px) 32px 32px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--t-mid);
        box-shadow: -10px 0 60px rgba(0, 0, 0, 0.1);
        display: flex;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link {
        padding: 14px 16px;
        border-bottom: 1px solid var(--c-border);
        font-size: 16px;
    }
    .nav-link.btn-nav {
        text-align: center;
        margin-top: 16px;
        border-bottom: none;
    }
}

/* =============== SCROLL REVEAL =============== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--t-slow), transform .8s var(--t-slow); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============== ACCESSIBILITY =============== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

::selection { background: var(--c-accent); color: #fff; }
