@charset "UTF-8";
@import url("//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css");
@import url("//fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* =========================================================
   AtitudeTelecom — Home moderna (2025)
   Paleta: roxo da marca + dourado + verde-água de apoio
   ========================================================= */

:root {
    --brand: #34326f;
    --brand-2: #4b2f8f;
    --brand-deep: #1d1b4c;
    --gold: #FFC857;
    --gold-2: #FF9A56;
    --mint: #00D4B4;
    --ink: #1d1b4c;
    --body: #5b5a72;
    --muted: #8a89a3;
    --bg: #F6F5FB;
    --card: #ffffff;
    --line: #ECEAF4;
    --radius-lg: 24px;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 2px rgba(29, 27, 76, .05);
    --shadow: 0 18px 40px -18px rgba(52, 50, 111, .28);
    --shadow-lg: 0 32px 64px -24px rgba(29, 27, 76, .38);
    --grad-brand: linear-gradient(135deg, #4b2f8f 0%, #34326f 55%, #1d1b4c 100%);
    --grad-gold: linear-gradient(135deg, #FFC857 0%, #FF9A56 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "Poppins", sans-serif;
    color: var(--body);
    background: var(--card);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { text-decoration: none; transition: all .2s ease; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -.01em; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Eyebrow / badges ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--brand);
    background: rgba(52, 50, 111, .07);
    padding: 7px 15px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow.is-light { color: #fff; background: rgba(255, 255, 255, .12); }
.eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 200, 87, .55); }
    50% { box-shadow: 0 0 0 6px rgba(255, 200, 87, 0); }
}

/* ---------- Buttons ---------- */
.btn-x {
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 600; font-size: 15px; line-height: 1;
    padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
    cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn-primary-x {
    background: var(--grad-brand); color: #fff;
    box-shadow: 0 14px 30px -10px rgba(52, 50, 111, .55);
}
.btn-primary-x:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 20px 38px -10px rgba(52, 50, 111, .6); }
.btn-gold-x { background: var(--grad-gold); color: var(--brand-deep); box-shadow: 0 14px 30px -10px rgba(255, 158, 86, .6); }
.btn-gold-x:hover { color: var(--brand-deep); transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(255, 158, 86, .7); }
.btn-ghost-x { background: transparent; color: var(--brand); border-color: rgba(52, 50, 111, .25); }
.btn-ghost-x:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.btn-light-x { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .25); backdrop-filter: blur(6px); }
.btn-light-x:hover { background: #fff; color: var(--brand-deep); transform: translateY(-3px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all .3s ease;
    background: rgba(255, 255, 255, .95); backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px -14px rgba(29, 27, 76, .22);
}
/* Faixa Fale Conosco */
.topbar { background: var(--grad-brand); color: #fff; font-size: 13px; max-height: 60px; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.topbar-label svg { width: 16px; height: 16px; }
.topbar-contacts { display: flex; align-items: center; gap: 24px; }
.topbar-contacts a { color: rgba(255, 255, 255, .92); display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.topbar-contacts a:hover { color: var(--gold); }
.topbar-contacts svg { width: 15px; height: 15px; flex: none; }
.site-header.scrolled .topbar { max-height: 0; opacity: 0; padding: 0; }
/* Barra principal */
.headbar { padding: 12px 0; transition: padding .3s ease; }
.site-header.scrolled .headbar { padding: 9px 0; }
.headbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.site-header .logo img { height: 42px; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 36px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav .nav-link { color: var(--ink); font-weight: 500; font-size: 15px; padding: 0; cursor: pointer; }
.site-nav .nav-link:hover { color: var(--brand); }
.site-nav .nav-cta { padding: 11px 22px; font-size: 14px; color: #fff; }
.site-nav .nav-cta:hover { color: #fff; }
/* Dropdown Produtos */
.has-dropdown { position: relative; }
.has-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.dropdown-toggle-x { display: inline-flex; align-items: center; gap: 6px; }
.dropdown-toggle-x svg { width: 14px; height: 14px; transition: transform .25s ease; }
.has-dropdown:hover .dropdown-toggle-x svg { transform: rotate(180deg); }
.dropdown-menu-x {
    position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 224px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden; transition: all .22s ease;
}
.has-dropdown:hover .dropdown-menu-x { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-head { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 6px 14px 8px; }
.dropdown-menu-x a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--ink); font-size: 14px; font-weight: 500; }
.dropdown-menu-x a:hover { background: var(--bg); color: var(--brand); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative; overflow: hidden;
    background: var(--grad-brand); color: #fff;
    padding: 160px 0 110px;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 54px 54px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-blob-1 { width: 460px; height: 460px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(255, 200, 87, .35), transparent 70%); }
.hero-blob-2 { width: 420px; height: 420px; bottom: -140px; left: -100px; background: radial-gradient(circle, rgba(0, 212, 180, .28), transparent 70%); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-title { font-size: 44px; line-height: 1.12; color: #fff; font-weight: 800; margin: 0 0 22px; }
.hero-sub { font-size: 18px; line-height: 1.65; color: rgba(255, 255, 255, .82); max-width: 520px; margin: 0 0 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, .85); }
.hero-meta-item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.hero-visual { position: relative; }
.hero-visual-frame {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .12);
}
.hero-visual-frame img { display: block; width: 100%; height: auto; }
.hero-glow { position: absolute; inset: -30px; background: radial-gradient(circle, rgba(255, 200, 87, .3), transparent 65%); filter: blur(40px); z-index: -1; }
.hero-float {
    position: absolute; background: rgba(255, 255, 255, .96); color: var(--ink);
    border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; animation: floaty 4.5s ease-in-out infinite;
}
.hero-float-1 { top: 22px; left: -28px; }
.hero-float-2 { bottom: 26px; right: -24px; animation-delay: 1.4s; }
.hero-float-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero-float-ico.gold { background: var(--grad-gold); }
.hero-float-ico.mint { background: rgba(0, 212, 180, .15); }
.hero-float-ico svg { width: 22px; height: 22px; }
.hero-float small { display: block; color: var(--muted); font-size: 11px; font-weight: 500; }
.hero-float strong { font-size: 16px; color: var(--ink); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================================
   SECTION GENERICS
   ========================================================= */
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: 36px; line-height: 1.2; margin: 0 0 14px; }
.section-head p { font-size: 17px; color: var(--body); margin: 0; }
.section-text { font-size: 16px; line-height: 1.75; color: var(--body); }
.section-text p { margin: 0 0 14px; }

/* ---------- Services grid ---------- */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    position: relative; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 26px; text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden;
}
.service-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-ico { width: 84px; height: 84px; margin: 0 auto 20px; display: grid; place-items: center; }
.service-ico img { max-height: 64px; width: auto; object-fit: contain; }
.service-card p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0 0 22px; min-height: 72px; }
.service-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--brand); font-size: 14px; }
.service-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow); }
.about-visual .hero-glow { background: radial-gradient(circle, rgba(52, 50, 111, .22), transparent 65%); }
.about-badge {
    position: absolute; bottom: 26px; left: -24px; background: #fff; border-radius: 16px;
    padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px;
}
.about-badge .check { width: 44px; height: 44px; border-radius: 12px; background: rgba(0, 212, 180, .14); display: grid; place-items: center; flex: none; }
.about-badge .check svg { width: 24px; height: 24px; color: var(--mint); }
.about-badge small { display: block; color: var(--muted); font-size: 11px; }
.about-badge strong { font-size: 16px; color: var(--ink); }
.about-content h2 { font-size: 34px; line-height: 1.22; margin: 0 0 20px; }
.about-content .section-text { margin-bottom: 28px; }
.about-bridge { text-align: center; max-width: 760px; margin: 64px auto 36px; font-size: 19px; font-weight: 600; color: var(--ink); }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-pillars .pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; border-top: 4px solid var(--brand); transition: transform .25s ease, box-shadow .25s ease; }
.about-pillars .pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.about-pillars .pillar h3 { font-size: 22px; margin: 0 0 14px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.pillar-tag { font-size: 12px; font-weight: 600; color: var(--brand); background: rgba(52, 50, 111, .08); padding: 4px 12px; border-radius: 100px; letter-spacing: .02em; }
.about-pillars .pillar p { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; }
.about-purpose { position: relative; overflow: hidden; margin-top: 24px; background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.about-purpose .blob { width: 360px; height: 360px; bottom: -140px; right: -60px; background: radial-gradient(circle, rgba(255, 200, 87, .28), transparent 70%); }
.about-purpose-content { position: relative; z-index: 2; max-width: 760px; }
.about-purpose h3 { color: #fff; font-size: 26px; margin: 0 0 14px; }
.about-purpose p { font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, .85); margin: 0; }
.about-closing { margin-top: 20px !important; font-weight: 700; color: #fff !important; font-size: 18px !important; }

/* ---------- Solution band ---------- */
.solution { background: var(--bg); }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.solution-item {
    display: flex; gap: 16px; align-items: flex-start; background: var(--card);
    border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.solution-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.solution-item .si-ico { width: 56px; height: 56px; border-radius: 14px; background: var(--bg); display: grid; place-items: center; flex: none; }
.solution-item .si-ico img { max-height: 38px; width: auto; }
.solution-item p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }

/* ---------- Cost / highlight band ---------- */
.cost { position: relative; overflow: hidden; background: var(--grad-brand); color: #fff; }
.cost .blob.b1 { width: 420px; height: 420px; top: -120px; left: -90px; background: radial-gradient(circle, rgba(255, 200, 87, .3), transparent 70%); }
.cost .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.cost h2 { color: #fff; font-size: 38px; line-height: 1.2; margin: 0 0 22px; }
.cost .section-text { color: rgba(255, 255, 255, .85); margin-bottom: 30px; }
.cost-visual { text-align: center; }
.cost-stat { font-size: 86px; font-weight: 800; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cost-stat-label { font-size: 16px; color: rgba(255, 255, 255, .8); margin-top: 8px; }

/* ---------- Product detail sections ---------- */
.product-sec { padding: 96px 0; }
.product-title-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.product-title-head h2 { font-size: 36px; line-height: 1.2; margin: 0; }
.product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-row.reverse .product-media { order: 2; }
.product-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.product-brand img { max-height: 56px; width: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.product-copy .section-text { margin-bottom: 22px; }
.product-features { display: grid; gap: 16px; margin: 26px 0; }
.feature-card {
    display: flex; gap: 16px; align-items: center; background: var(--card);
    border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px;
}
.feature-card img { width: 64px; height: 64px; object-fit: contain; border-radius: 10px; flex: none; }
.feature-card h4 { margin: 0 0 4px; font-size: 16px; }
.feature-card p { margin: 0; font-size: 14px; color: var(--body); line-height: 1.5; }
.product-media { position: relative; }
.product-media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.product-media-frame img { width: 100%; display: block; }
.video-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; font-weight: 600; color: var(--brand); }
.video-link .play { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; box-shadow: 0 12px 26px -10px rgba(52, 50, 111, .6); transition: transform .2s ease; }
.video-link:hover { color: var(--brand); }
.video-link:hover .play { transform: scale(1.08); }
.video-link .play svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }
.product-cta {
    margin-top: 56px; text-align: center; background: var(--grad-brand); color: #fff;
    border-radius: var(--radius-lg); padding: 46px 30px; position: relative; overflow: hidden;
}
.product-cta h3 { color: #fff; font-size: 28px; margin: 0 0 24px; position: relative; z-index: 2; }
.product-cta .blob { width: 360px; height: 360px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(255, 200, 87, .25), transparent 70%); }

/* ---------- Produtos GoTo (Seção 2) ---------- */
.produtos-intro { background: #fff; }
.produtos-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.partner-logo { height: 58px; width: auto; margin-bottom: 26px; }
.partner-badge { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.partner-badge .pb-goto { position: relative; isolation: isolate; font-weight: 800; font-size: 32px; color: var(--ink); padding: 0 2px 3px; }
.partner-badge .pb-goto::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 9px; background: var(--gold); border-radius: 2px; z-index: -1; }
.partner-badge .pb-text { text-align: left; font-weight: 600; font-size: 15px; line-height: 1.05; color: var(--body); }
.produtos-head h2 { font-size: 30px; line-height: 1.28; margin: 0 0 14px; }
.produtos-head p { font-size: 17px; color: var(--body); margin: 0; }
.goto-card {
    max-width: 980px; margin: 0 auto; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); text-align: center;
}
.goto-card-logo { max-height: 46px; width: auto; margin: 0 auto 22px; }
.goto-card h3 { font-size: 26px; margin: 0 0 14px; }
.goto-card > p { font-size: 16px; color: var(--body); max-width: 680px; margin: 0 auto 36px; line-height: 1.7; }
.goto-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.goto-feature {
    display: flex; flex-direction: column; text-align: left; background: var(--bg);
    border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.goto-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.goto-feature h4 { font-size: 18px; margin: 0 0 10px; }
.goto-feature p { font-size: 14px; color: var(--body); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.gf-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--brand); font-size: 14px; transition: gap .2s ease; }
.gf-link svg { width: 15px; height: 15px; }
.goto-feature:hover .gf-link { gap: 10px; }

/* ---------- WhatsApp Inteligente (Seção 3) ---------- */
.wa-section { background: var(--bg); }
.wa-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; margin-bottom: 56px; }
.wa-hero-text h2 { font-size: 34px; line-height: 1.22; margin: 0 0 18px; }
.wa-hero-text p { font-size: 17px; color: var(--body); line-height: 1.7; margin: 0 0 28px; }
.wa-hero-img { position: relative; }
.wa-img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.wa-img-frame img { display: block; width: 100%; height: auto; }
.wa-video-modal { line-height: 0; font-size: 0; }
.wa-video-modal video { display: block; width: auto; height: auto; max-height: 82vh; max-width: 88vw; border-radius: 12px; background: #000; }
.wa-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.wa-card {
    display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.wa-card h4 { font-size: 18px; margin: 0 0 12px; }
.wa-card p { font-size: 14px; color: var(--body); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.wa-ai-card {
    position: relative; overflow: hidden; background: var(--grad-brand); color: #fff;
    border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow);
}
.wa-ai-card .blob { width: 360px; height: 360px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(0, 212, 180, .35), transparent 70%); }
.wa-ai-content { position: relative; z-index: 2; max-width: 680px; }
.wa-ai-card h3 { color: #fff; font-size: 28px; margin: 0 0 14px; }
.wa-ai-card p { font-size: 17px; color: rgba(255, 255, 255, .85); line-height: 1.7; margin: 0; }

/* ---------- Contact form ---------- */
.contact { background: var(--bg); position: relative; overflow: hidden; }
.contact .blob.b1 { width: 420px; height: 420px; top: -140px; right: -120px; background: radial-gradient(circle, rgba(75, 47, 143, .12), transparent 70%); }
.contact-card {
    position: relative; z-index: 2; max-width: 720px; margin: 0 auto; background: var(--card);
    border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow);
}
#form { width: 100%; }
.contact .form-group { margin-bottom: 16px; }
.contact .form-control, .contact select, .contact textarea {
    width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 14px 18px; font-family: inherit; font-size: 15px; color: var(--ink);
    background: #fbfbfe; transition: border-color .2s ease, box-shadow .2s ease;
}
.contact .form-control:focus, .contact select:focus, .contact textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(52, 50, 111, .1); background: #fff;
}
.contact select { height: 50px; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%238a89a3' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.contact .has-error { border-color: #e23b5a !important; box-shadow: 0 0 0 4px rgba(226, 59, 90, .12) !important; }
.contact .h-captcha { display: inline-block; margin: 8px 0 4px; }
.contact .div-error { display: block; }
.contact .submit-button { width: 100%; justify-content: center; margin-top: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--brand-deep); color: rgba(255, 255, 255, .75); }
.footer-main { padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 40px; margin-bottom: 22px; }
.footer-about p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .65); max-width: 360px; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 20px; }
.footer-col a, .footer-col p { display: block; color: rgba(255, 255, 255, .7); font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-bottom: 26px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, .08);
    display: grid; place-items: center; transition: all .2s ease;
}
.footer-social a:hover { background: var(--grad-gold); transform: translateY(-3px); }
.footer-social a img { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer-bottom .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .55); }
.footer-bottom .dev { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.footer-bottom .dev img { height: 18px; }

/* WhatsApp float */
.wa-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 1100;
    width: 58px; height: 58px; border-radius: 50%; background: #25D366;
    display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
    animation: floaty 4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float img { width: 30px; height: 30px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .hero { padding: 130px 0 80px; }
    .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
    .hero-title { font-size: 36px; }
    .hero-visual { max-width: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .cost .wrap, .product-row, .wa-hero { grid-template-columns: 1fr; gap: 40px; }
    .wa-cards { grid-template-columns: repeat(2, 1fr); }
    .product-row.reverse .product-media { order: 0; }
    .about-badge { left: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
        background: #fff; flex-direction: column; align-items: flex-start; gap: 8px;
        padding: 90px 32px; box-shadow: -20px 0 60px -20px rgba(29, 27, 76, .4); transition: right .3s ease;
    }
    .site-nav.open { right: 0; }
    .site-nav .nav-link { color: var(--ink); font-size: 16px; }
    .site-nav .nav-cta { margin-top: 8px; }
    .has-dropdown { width: 100%; }
    .has-dropdown::after { display: none; }
    .dropdown-toggle-x svg { display: none; }
    .dropdown-menu-x {
        position: static; transform: none !important; opacity: 1; visibility: visible;
        box-shadow: none; border: none; padding: 4px 0 4px 12px; min-width: 0; background: transparent;
    }
    .dropdown-menu-x a { font-size: 15px; padding: 8px 10px; color: var(--body); }
    /* faixa compacta no mobile */
    .topbar .wrap { gap: 10px; padding-top: 7px; padding-bottom: 7px; }
    .topbar-label { display: none; }
    .topbar-contacts { gap: 16px; width: 100%; justify-content: center; }
    .t-email { display: none; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(29, 27, 76, .4); opacity: 0; visibility: hidden; transition: .3s; z-index: 999; }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
    .section, .product-sec { padding: 64px 0; }
    .hero-title { font-size: 30px; }
    .section-head h2, .about-content h2, .cost h2, .product-title-head h2 { font-size: 27px; }
    .services-grid, .solution-grid, .footer-grid, .goto-cards-3, .wa-cards, .about-pillars { grid-template-columns: 1fr; }
    .wa-ai-card, .about-purpose { padding: 30px 24px; }
    .about-bridge { font-size: 17px; margin: 40px auto 28px; }
    .goto-card { padding: 28px 22px; }
    .produtos-head h2 { font-size: 24px; }
    .contact-card { padding: 30px 22px; }
    .cost-stat { font-size: 64px; }
    .hero-float-1 { left: 0; } .hero-float-2 { right: 0; }
    .wrap { padding: 0 18px; }
}
