/* ================================================================
   EdificAR Engenharia — CSS Principal
   Tema: Dark Industrial + Laranja Vibrante
   Fontes: Barlow Condensed (headings) + Inter (body)
================================================================ */

/* ----------------------------------------------------------------
   VARIÁVEIS CSS
---------------------------------------------------------------- */
:root {
    --orange:        #f97316;
    --orange-dark:   #ea580c;
    --orange-light:  #fed7aa;
    --dark:          #0f172a;
    --dark-2:        #1e293b;
    --dark-3:        #334155;
    --mid:           #475569;
    --light:         #f8fafc;
    --white:         #ffffff;
    --green:         #22c55e;
    --radius:        12px;
    --radius-lg:     20px;
    --shadow:        0 4px 24px rgba(0,0,0,.12);
    --shadow-lg:     0 16px 48px rgba(0,0,0,.18);
    --transition:    all .3s cubic-bezier(.4,0,.2,1);
    --navbar-h:      72px;
    --topbar-h:      40px;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--navbar-h) + var(--topbar-h) + 16px); }

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-2);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.section { padding: 96px 0; }

/* ----------------------------------------------------------------
   UTILITÁRIOS
---------------------------------------------------------------- */
.text-orange  { color: var(--orange) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.shadow-xl { box-shadow: var(--shadow-lg) !important; }

/* ----------------------------------------------------------------
   PRELOADER
---------------------------------------------------------------- */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-box {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.preloader-svg { width: 80px; height: 80px; }
.pl-bar {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: pl-anim 1.5s ease-in-out infinite;
    stroke-linecap: round;
}
@keyframes pl-anim {
    0%   { stroke-dashoffset: 240; }
    50%  { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -240; }
}
.preloader-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem; font-weight: 900;
    color: var(--white); letter-spacing: .1em;
}
.preloader-sub { color: var(--mid); font-size: .85rem; }

/* ----------------------------------------------------------------
   BACK TO TOP
---------------------------------------------------------------- */
#backToTop {
    position: fixed; bottom: 100px; right: 24px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    opacity: 0; transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(249,115,22,.4);
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ----------------------------------------------------------------
   TOPBAR
---------------------------------------------------------------- */
.topbar {
    background: var(--dark);
    height: var(--topbar-h);
    font-size: .825rem;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: #94a3b8; transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar-wa {
    background: #22c55e;
    color: var(--white) !important;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.topbar-wa:hover { background: #16a34a; color: var(--white) !important; }
.topbar i { margin-right: 5px; }

/* ----------------------------------------------------------------
   NAVBAR
---------------------------------------------------------------- */
#mainNav {
    background: rgba(15,23,42,.92);
    backdrop-filter: blur(12px) saturate(1.8);
    -webkit-backdrop-filter: blur(12px) saturate(1.8);
    border-bottom: 1px solid rgba(255,255,255,.06);
    height: var(--navbar-h);
    transition: background .35s, box-shadow .35s;
    position: sticky; top: 0; z-index: 1000;
}
#mainNav.scrolled {
    background: rgba(15,23,42,.98);
    box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: 10px; padding: 0; }
.brand-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}
.brand-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem; color: var(--white);
    line-height: 1.1;
}
.brand-label small {
    display: block; font-size: .75rem;
    color: #94a3b8; font-family: 'Inter', sans-serif;
    font-weight: 400; letter-spacing: .05em;
}

/* Links */
.navbar-nav .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-size: .95rem; font-weight: 500;
    padding: .5rem .75rem !important;
    position: relative; transition: color .25s;
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute;
    bottom: 0; left: .75rem; right: .75rem;
    height: 2px; background: var(--orange);
    transform: scaleX(0); transition: transform .3s;
    border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.btn-nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white) !important;
    font-weight: 600; font-size: .9rem;
    padding: .5rem 1.25rem !important;
    border-radius: 8px;
    border: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none;
}
.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,.4);
    color: var(--white) !important;
}

/* Hamburger personalizado */
.navbar-toggler { border: none; padding: .4rem; background: transparent !important; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger-line {
    display: block; width: 24px; height: 2px;
    background: var(--white); margin: 5px 0;
    transition: var(--transition); border-radius: 2px;
}

/* ----------------------------------------------------------------
   SEÇÕES GENÉRICAS
---------------------------------------------------------------- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 16px; }
.section-eyebrow {
    display: inline-block;
    font-size: .8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--orange);
    padding: 4px 14px;
    border: 1px solid rgba(249,115,22,.3);
    border-radius: 20px;
    background: rgba(249,115,22,.08);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem; color: var(--mid);
    max-width: 580px; margin: 0 auto;
}
.lead-text { font-size: 1.15rem; font-weight: 500; color: var(--dark-2); margin-bottom: 16px; }
.body-text  { color: var(--mid); margin-bottom: 12px; }

/* ----------------------------------------------------------------
   PAGE HERO (páginas internas)
---------------------------------------------------------------- */
.page-hero {
    position: relative; min-height: 360px;
    display: flex; align-items: flex-end; padding-bottom: 56px;
    margin-top: calc(var(--topbar-h));
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.85) 40%, rgba(249,115,22,.35));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white); font-weight: 900;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.page-hero-sub { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; }

/* Breadcrumb */
.breadcrumb-custom {
    background: none; padding: 0; margin-bottom: 16px;
    font-size: .85rem;
}
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,.65); }
.breadcrumb-custom .breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--orange); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ----------------------------------------------------------------
   HERO SEÇÃO INÍCIO
---------------------------------------------------------------- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden; padding-top: calc(var(--navbar-h) + var(--topbar-h));
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    animation: hero-zoom 12s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,23,42,.88) 0%,
        rgba(15,23,42,.65) 50%,
        rgba(249,115,22,.2) 100%
    );
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-container { position: relative; z-index: 2; padding-top: 48px; padding-bottom: 100px; }

.hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    color: var(--orange); font-size: .85rem;
    font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 20px;
}
.eyebrow-line { flex: 0 0 30px; height: 2px; background: var(--orange); border-radius: 2px; }

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900; color: var(--white);
    line-height: 1.05; margin-bottom: 24px;
    text-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.hero-subtitle { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white); font-weight: 700; font-size: 1rem;
    padding: .875rem 2rem; border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(249,115,22,.4);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(249,115,22,.5);
    color: var(--white);
}
.btn-hero-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.3);
    color: var(--white); font-weight: 600; font-size: 1rem;
    padding: .875rem 2rem; border-radius: var(--radius);
    transition: var(--transition);
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.6);
    color: var(--white); transform: translateY(-3px);
}

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hbadge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.9); font-size: .8rem;
    padding: 6px 14px; border-radius: 20px;
}
.hbadge i { color: var(--orange); }

/* Stat Card Hero */
.hero-stat-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hsc-header {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 16px 24px;
    display: flex; align-items: center; gap: 10px;
    color: var(--white); font-weight: 700; font-size: .95rem;
}
.hsc-body { display: grid; grid-template-columns: 1fr 1fr; }
.hsc-item {
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: center;
}
.hsc-item:nth-child(2n) { border-right: none; }
.hsc-item:nth-last-child(-n+2) { border-bottom: none; }
.hsc-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1;
}
.hsc-val sup { font-size: 1rem; color: var(--orange); }
.hsc-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.6); font-size: .8rem; z-index: 2;
    text-decoration: none; transition: color .2s;
}
.hero-scroll-hint:hover { color: var(--orange); }
.scroll-arrow {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    animation: bounce-arrow 2s ease-in-out infinite;
}
@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ----------------------------------------------------------------
   STRIP / DIFERENCIAIS
---------------------------------------------------------------- */
.strip-section {
    background: var(--dark);
    padding: 32px 0;
    position: relative;
}
.strip-wrapper {
    display: flex; gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
}
.strip-item {
    flex: 1;
    display: flex; align-items: center; gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .3s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(249,115,22,.12); }
.strip-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(249,115,22,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--orange);
    transition: background .3s;
}
.strip-item:hover .strip-icon { background: rgba(249,115,22,.3); }
.strip-text { display: flex; flex-direction: column; }
.strip-text strong { color: var(--white); font-size: .95rem; }
.strip-text small  { color: #64748b; font-size: .8rem; }

@media (max-width: 767px) {
    .strip-wrapper { flex-direction: column; }
    .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ----------------------------------------------------------------
   SERVIÇOS — CARDS
---------------------------------------------------------------- */
.services-section { background: var(--light); }

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.sc-img-wrap { position: relative; overflow: hidden; height: 200px; }
.sc-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.service-card:hover .sc-img-wrap img { transform: scale(1.08); }
.sc-icon {
    position: absolute; bottom: -20px; right: 20px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--white);
    box-shadow: 0 4px 16px rgba(249,115,22,.4);
}
.sc-body { padding: 28px 24px 24px; }
.sc-title { font-size: 1.3rem; color: var(--dark); margin-bottom: 10px; }
.sc-desc  { color: var(--mid); font-size: .95rem; margin-bottom: 16px; }
.sc-link  {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--orange); font-weight: 600; font-size: .9rem;
    transition: gap .2s;
}
.sc-link:hover { gap: 10px; color: var(--orange-dark); }

/* ----------------------------------------------------------------
   SOBRE HOME
---------------------------------------------------------------- */
.about-home-section { background: var(--white); }

.about-img-collage { position: relative; display: flex; gap: 12px; }
.aic-main {
    flex: 1; border-radius: var(--radius-lg); overflow: hidden;
    position: relative; cursor: pointer;
}
.aic-main img { width: 100%; height: 380px; object-fit: cover; transition: transform .5s; }
.aic-main:hover img { transform: scale(1.04); }
.aic-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35); opacity: 0;
    transition: opacity .3s; font-size: 1.5rem; color: var(--white);
}
.aic-main:hover .aic-play { opacity: 1; }

.aic-side { display: flex; flex-direction: column; gap: 12px; width: 140px; flex-shrink: 0; }
.aic-thumb {
    flex: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer;
}
.aic-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.aic-thumb:hover img { transform: scale(1.06); }
.aic-badge-box {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius); padding: 16px;
    text-align: center; color: var(--white); flex: 0 0 auto;
}
.aic-badge-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem; font-weight: 900; line-height: 1;
}
.aic-badge-number sup { font-size: 1rem; }
.aic-badge-label { font-size: .8rem; opacity: .85; margin-top: 4px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.af-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .9rem; color: var(--dark-2); font-weight: 500;
}
.af-item i { color: var(--orange); font-size: .85rem; }

/* Botão sólido */
.btn-solid {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--dark);
    color: var(--white) !important;
    font-weight: 700; font-size: .95rem;
    padding: .8rem 2rem; border-radius: var(--radius);
    transition: var(--transition);
}
.btn-solid:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,.4);
}

/* ----------------------------------------------------------------
   PROJETOS — CARROSSEL
---------------------------------------------------------------- */
.projects-section { background: var(--dark); }
.projects-section .section-eyebrow { border-color: rgba(249,115,22,.4); background: rgba(249,115,22,.12); }
.projects-section .section-title { color: var(--white); }
.projects-section .section-subtitle { color: #94a3b8; }

.project-card { border-radius: var(--radius-lg); overflow: hidden; }
.pc-img { position: relative; overflow: hidden; aspect-ratio: 16/11; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .pc-img img { transform: scale(1.06); }
.pc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.9) 40%, transparent);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; opacity: 0; transform: translateY(10px);
    transition: var(--transition);
}
.project-card:hover .pc-overlay { opacity: 1; transform: translateY(0); }
.pc-cat {
    display: inline-block; background: var(--orange);
    color: var(--white); font-size: .75rem; font-weight: 700;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: .06em; width: fit-content;
}
.pc-overlay h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.pc-meta { display: flex; gap: 16px; color: rgba(255,255,255,.7); font-size: .85rem; }
.pc-meta i { color: var(--orange); margin-right: 4px; }

.projects-swiper .swiper-button-prev,
.projects-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(249,115,22,.9);
    width: 44px; height: 44px; border-radius: 50%;
    --swiper-navigation-size: 16px;
}
.projects-swiper .swiper-button-prev:hover,
.projects-swiper .swiper-button-next:hover { background: var(--orange); }

.swiper-pagination-bullet { background: rgba(255,255,255,.4); }
.swiper-pagination-bullet-active { background: var(--orange) !important; }

/* ----------------------------------------------------------------
   POR QUE NÓS — TABS
---------------------------------------------------------------- */
.why-section { background: var(--light); }

.why-tabs { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.why-tab-item {
    display: flex; align-items: center; gap: 14px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
}
.why-tab-item:hover { border-color: rgba(249,115,22,.3); }
.why-tab-item.active {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(249,115,22,.06), rgba(249,115,22,.02));
}
.wt-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(249,115,22,.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--orange);
    transition: background .3s;
}
.why-tab-item.active .wt-icon { background: var(--orange); color: var(--white); }
.wt-text strong { color: var(--dark-2); font-weight: 600; }
.wt-arrow { margin-left: auto; color: var(--mid); font-size: .75rem; transition: transform .3s; }
.why-tab-item.active .wt-arrow { transform: rotate(90deg); color: var(--orange); }

.why-panel-wrap { position: relative; }
.why-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    display: none;
    animation: panel-in .4s ease;
}
.why-panel.active { display: block; }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.wp-icon-xl {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.wp-title { font-size: 2rem; color: var(--dark); margin-bottom: 16px; }
.wp-desc  { color: var(--mid); font-size: 1.05rem; margin-bottom: 24px; }
.wp-highlight {
    display: flex; align-items: center; gap: 10px;
    background: rgba(249,115,22,.08);
    border: 1px solid rgba(249,115,22,.2);
    border-radius: var(--radius);
    padding: 14px 20px;
    color: var(--orange-dark); font-weight: 600;
}
.wp-highlight .fa-star { color: var(--orange); }

/* ----------------------------------------------------------------
   DEPOIMENTOS
---------------------------------------------------------------- */
.testimonials-section { background: var(--white); }

.testimonial-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testimonial-card::before {
    content: '"';
    position: absolute; top: 12px; left: 24px;
    font-size: 5rem; color: rgba(249,115,22,.15);
    font-family: Georgia, serif; line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tc-stars { color: #f59e0b; font-size: .85rem; margin-bottom: 16px; }
.tc-text  { color: var(--mid); font-style: italic; margin-bottom: 24px; line-height: 1.75; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-author img {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--orange-light);
}
.tc-info strong { display: block; color: var(--dark-2); font-size: .95rem; }
.tc-info small  { color: var(--mid); font-size: .82rem; }

.testimonials-swiper .swiper-pagination { position: static; margin-top: 24px; }

/* ----------------------------------------------------------------
   PARCEIROS — TICKER
---------------------------------------------------------------- */
.partners-section { background: var(--light); padding: 40px 0 0; overflow: hidden; }
.partners-label { text-align: center; color: var(--mid); font-size: .85rem; margin-bottom: 20px; }
.partners-ticker { overflow: hidden; white-space: nowrap; padding-bottom: 40px; }
.pt-track {
    display: inline-flex; gap: 0;
    animation: ticker 30s linear infinite;
}
.pt-track:hover { animation-play-state: paused; }
.pt-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px;
    font-weight: 700; font-size: .95rem;
    color: var(--dark-3);
    border-right: 1px solid #e2e8f0;
    white-space: nowrap;
}
.pt-item i { color: var(--orange); }
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
.cta-section { background: var(--light); padding: 40px 0 80px; }
.cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #1a1a3e 100%);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    position: relative; overflow: hidden;
}
.cta-bg-pattern {
    position: absolute; inset: 0; opacity: .04;
    background-image: repeating-linear-gradient(
        45deg, var(--white) 0, var(--white) 1px, transparent 1px, transparent 30px
    );
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 10px; }
.cta-subtitle { color: rgba(255,255,255,.7); font-size: 1rem; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--dark) !important;
    font-weight: 700; font-size: .95rem;
    padding: .85rem 2rem; border-radius: var(--radius);
    transition: var(--transition);
}
.btn-cta-white:hover {
    background: var(--orange); color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,.4);
}
.btn-cta-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: var(--white) !important;
    font-weight: 600; font-size: .9rem;
    padding: .7rem 1.5rem; border-radius: var(--radius);
    transition: var(--transition);
}
.btn-cta-wa:hover { background: #128c7e; color: var(--white) !important; transform: translateY(-2px); }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer { background: #111827; color: #94a3b8; }
.footer-wave { line-height: 0; background: var(--light); }
.footer-wave svg { display: block; width: 100%; }
.footer-main { padding: 72px 0 48px; }

.footer-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 4px; }
.footer-brand .brand-label { color: var(--white); }
.footer-desc { font-size: .9rem; line-height: 1.75; color: #64748b; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.07);
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8; font-size: .9rem;
    transition: var(--transition); border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); }

.footer-heading {
    color: var(--white); font-size: .85rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; margin-bottom: 20px;
    padding-bottom: 8px; border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #64748b; font-size: .9rem; transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer-links a i { font-size: .7rem; color: var(--orange); transition: transform .2s; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a:hover i { transform: translateX(3px); }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex; gap: 12px; margin-bottom: 16px;
    font-size: .88rem; color: #64748b; align-items: flex-start;
}
.fc-icon { color: var(--orange); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: #64748b; transition: color .2s; }
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
    background: #0f172a;
    padding: 20px 0;
    font-size: .82rem; color: #475569;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   WHATSAPP FLUTUANTE
---------------------------------------------------------------- */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 800;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--white);
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37,211,102,.5);
    color: var(--white);
}
.wf-tooltip {
    position: absolute; right: 68px;
    background: var(--dark);
    color: var(--white); font-size: .82rem; font-weight: 600;
    padding: 6px 12px; border-radius: 8px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-float:hover .wf-tooltip { opacity: 1; }

/* ----------------------------------------------------------------
   HISTÓRIA (sobre.php)
---------------------------------------------------------------- */
.history-section { background: var(--white); }
.history-img-wrap { position: relative; }
.history-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white); border-radius: var(--radius);
    padding: 16px 20px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 8px 24px rgba(249,115,22,.4);
}
.history-badge i { font-size: 1.5rem; }
.history-badge strong { display: block; font-size: 1rem; }
.history-badge small { font-size: .8rem; opacity: .8; }

.history-highlights { display: flex; gap: 32px; }
.hh-item { text-align: center; }
.hh-num  { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hh-suf  { font-size: 1.5rem; color: var(--orange); }
.hh-label{ display: block; font-size: .82rem; color: var(--mid); margin-top: 4px; }

/* ----------------------------------------------------------------
   TIMELINE
---------------------------------------------------------------- */
.timeline-section { background: var(--light); }
.timeline { position: relative; }
.tl-center-line {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 2px; background: linear-gradient(to bottom, var(--orange), transparent);
    transform: translateX(-50%);
}
.tl-item {
    position: relative; width: 50%;
    padding: 0 48px 40px;
}
.tl-left  { left: 0; text-align: right; }
.tl-right { left: 50%; text-align: left; }

.tl-content { position: relative; }
.tl-icon {
    position: absolute; top: 0;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--white);
    z-index: 2; box-shadow: 0 0 0 4px rgba(249,115,22,.2);
}
.tl-left  .tl-icon { right: -69px; }
.tl-right .tl-icon { left: -69px; }

.tl-body {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.tl-item:hover .tl-body { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tl-year {
    display: inline-block; font-size: .8rem; font-weight: 700;
    text-transform: uppercase; color: var(--orange); letter-spacing: .08em;
    background: rgba(249,115,22,.1);
    padding: 2px 10px; border-radius: 12px; margin-bottom: 8px;
}
.tl-title { font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.tl-desc  { color: var(--mid); font-size: .9rem; }

@media (max-width: 767px) {
    .tl-center-line { left: 20px; }
    .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 56px; padding-right: 16px; }
    .tl-left  .tl-icon,
    .tl-right .tl-icon { left: -36px !important; right: auto !important; }
}

/* ----------------------------------------------------------------
   MISSÃO / VISÃO / VALORES
---------------------------------------------------------------- */
.mvv-section { background: var(--white); }
.mvv-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}
.mvv-mission { background: linear-gradient(135deg, #fff7ed, #fef3c7); }
.mvv-vision  { background: linear-gradient(135deg, #eff6ff, #e0f2fe); }
.mvv-values  { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mvv-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 20px;
}
.mvv-mission .mvv-icon { background: rgba(249,115,22,.15); color: var(--orange); }
.mvv-vision  .mvv-icon { background: rgba(59,130,246,.15); color: #3b82f6; }
.mvv-values  .mvv-icon { background: rgba(34,197,94,.15); color: #22c55e; }
.mvv-card h3 { font-size: 1.6rem; color: var(--dark); margin-bottom: 14px; }
.mvv-card p  { color: var(--mid); }
.mvv-list { list-style: none; padding: 0; }
.mvv-list li { display: flex; align-items: center; gap: 8px; color: var(--mid); margin-bottom: 8px; }
.mvv-list i  { color: #22c55e; }

/* ----------------------------------------------------------------
   EQUIPE
---------------------------------------------------------------- */
.team-section { background: var(--light); }
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
    position: absolute; inset: 0;
    background: rgba(249,115,22,.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-linkedin {
    width: 48px; height: 48px;
    background: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--orange);
}
.team-body { padding: 20px 16px; }
.team-body h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: .85rem; color: var(--mid); margin-bottom: 4px; }
.team-crea { font-size: .78rem; color: var(--orange); font-weight: 600; }

/* ----------------------------------------------------------------
   CERTIFICAÇÕES
---------------------------------------------------------------- */
.certs-section { background: var(--dark); }
.certs-section .section-eyebrow { border-color: rgba(249,115,22,.4); background: rgba(249,115,22,.12); }
.certs-section .section-title { color: var(--white); }
.certs-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.cert-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 24px 16px; text-align: center;
    transition: var(--transition);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cert-item:hover { background: rgba(249,115,22,.12); border-color: var(--orange); transform: translateY(-4px); }
.cert-icon { font-size: 2rem; color: var(--orange); margin-bottom: 4px; }
.cert-item strong { color: var(--white); font-size: .9rem; }
.cert-item small  { color: #64748b; font-size: .78rem; }

/* ----------------------------------------------------------------
   SERVIÇOS — DETALHE (servicos.php)
---------------------------------------------------------------- */
.service-detail-section { background: var(--white); }
.service-alt { background: var(--light); }

.sd-img-wrap { position: relative; }
.sd-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.sd-badge {
    position: absolute; top: 20px; left: 20px;
    padding: 8px 16px; border-radius: 8px;
    font-weight: 700; font-size: .82rem; text-transform: uppercase;
    letter-spacing: .06em;
    display: flex; align-items: center; gap: 6px;
}
.sd-badge-orange { background: var(--orange); color: var(--white); }
.sd-badge-dark   { background: var(--dark); color: var(--white); }
.sd-badge-green  { background: var(--green); color: var(--white); }

.sd-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sdf-item {
    display: flex; align-items: center; gap: 8px;
    color: var(--dark-2); font-size: .9rem;
}
.sdf-item i { color: var(--orange); flex-shrink: 0; }

/* ----------------------------------------------------------------
   STICKY FILTER NAV (serviços)
---------------------------------------------------------------- */
.sticky-filter {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    position: sticky; top: var(--navbar-h); z-index: 99;
    padding: 0;
}
.sn-inner {
    display: flex; gap: 0; overflow-x: auto;
    scrollbar-width: none;
}
.sn-inner::-webkit-scrollbar { display: none; }
.sn-item {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 14px 20px;
    font-size: .875rem; font-weight: 600; color: var(--mid);
    white-space: nowrap; border-bottom: 3px solid transparent;
    transition: var(--transition); text-decoration: none;
}
.sn-item:hover { color: var(--orange); }
.sn-item.active { color: var(--orange); border-bottom-color: var(--orange); }
.sn-item i { font-size: .85rem; }

/* ----------------------------------------------------------------
   PROCESSO DE TRABALHO
---------------------------------------------------------------- */
.process-section { background: var(--light); }
.process-steps {
    display: flex; gap: 0; align-items: flex-start;
    flex-wrap: wrap; justify-content: center;
}
.ps-item {
    flex: 1; min-width: 160px; max-width: 200px;
    text-align: center; padding: 0 16px;
    position: relative;
}
.ps-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem; font-weight: 900; line-height: 1;
    color: rgba(249,115,22,.12); margin-bottom: -16px;
}
.ps-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--white);
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(249,115,22,.35);
    position: relative; z-index: 1;
}
.ps-item h4 { font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.ps-item p  { color: var(--mid); font-size: .85rem; }
.ps-connector {
    position: absolute; top: 80px; right: -12px;
    font-size: .9rem; color: var(--orange); z-index: 2;
}
@media (max-width: 767px) { .ps-connector { display: none; } }

/* ----------------------------------------------------------------
   CONTATO (contato.php)
---------------------------------------------------------------- */
.contact-cards-section { background: var(--light); padding: 64px 0; }
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cc-icon {
    width: 64px; height: 64px;
    background: rgba(249,115,22,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--orange);
    margin: 0 auto 16px;
}
.cc-green { background: rgba(34,197,94,.1); color: var(--green); }
.contact-card h5 { font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.contact-card a { display: block; color: var(--orange); font-weight: 600; font-size: .95rem; }
.contact-card span { display: block; color: var(--dark-2); font-size: .9rem; }
.contact-card small { color: var(--mid); font-size: .8rem; }

.contact-main-section { background: var(--white); }

/* Formulário */
.contact-form { display: flex; flex-direction: column; }
.form-floating-custom { position: relative; margin-bottom: 2px; }
.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 20px 16px 8px;
    font-size: .95rem; color: var(--dark-2);
    transition: border-color .2s, box-shadow .2s;
    font-family: 'Inter', sans-serif;
    outline: none;
    resize: none;
}
.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,.15);
    background: var(--white);
}
.form-floating-custom input.invalid,
.form-floating-custom textarea.invalid {
    border-color: #ef4444;
}
.form-floating-custom label {
    position: absolute; top: 10px; left: 16px;
    font-size: .78rem; font-weight: 600;
    color: var(--mid); pointer-events: none;
    display: flex; align-items: center; gap: 5px;
}
.form-floating-custom select { padding: 20px 16px 8px; cursor: pointer; }
.validation-msg {
    display: block; font-size: .78rem; color: #ef4444;
    margin-top: 4px; min-height: 18px;
}

.form-privacy-note {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--mid);
    padding: 10px 14px;
    background: #f8fafc; border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.form-privacy-note i { color: var(--green); }

.btn-submit {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white); font-weight: 700; font-size: 1rem;
    border: none; border-radius: var(--radius);
    padding: 1rem 2.5rem;
    cursor: pointer; transition: var(--transition);
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,.4);
}

/* Alertas */
.alert-success-custom,
.alert-error-custom {
    border-radius: var(--radius);
    padding: 16px 20px; margin-bottom: 20px;
    display: flex; align-items: flex-start; gap: 14px;
}
.alert-success-custom {
    background: rgba(34,197,94,.1); border: 1.5px solid rgba(34,197,94,.3); color: #15803d;
}
.alert-error-custom {
    background: rgba(239,68,68,.08); border: 1.5px solid rgba(239,68,68,.25); color: #b91c1c;
}
.alert-success-custom i { font-size: 1.3rem; color: #22c55e; margin-top: 2px; }
.alert-error-custom i  { font-size: 1.3rem; color: #ef4444; flex-shrink: 0; }
.alert-success-custom strong { display: block; margin-bottom: 4px; }
.alert-success-custom p { margin: 0; font-size: .9rem; }

/* Mapa */
.map-wrap { box-shadow: var(--shadow-lg); }
.contact-info-box { display: flex; flex-direction: column; gap: 16px; }
.cib-item {
    display: flex; gap: 14px; align-items: flex-start;
}
.cib-item > i { color: var(--orange); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.cib-item div { display: flex; flex-direction: column; gap: 2px; }
.cib-item strong { color: var(--dark); font-size: .95rem; }
.cib-item span { color: var(--mid); font-size: .88rem; }
.cib-item a { color: var(--orange); font-weight: 600; }

/* FAQ */
.faq-section { background: var(--light); }
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--white); border-radius: var(--radius) !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden; transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item .accordion-button {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--dark-2); background: var(--white);
    border: none; box-shadow: none; gap: 12px;
    padding: 20px 24px;
}
.faq-item .accordion-button:not(.collapsed) { color: var(--orange); background: rgba(249,115,22,.04); }
.faq-item .accordion-button::after { filter: none; }
.faq-icon { color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.faq-body { padding: 0 24px 20px; color: var(--mid); font-size: .95rem; line-height: 1.75; }

/* ----------------------------------------------------------------
   RESPONSIVIDADE
---------------------------------------------------------------- */
@media (max-width: 991px) {
    .section { padding: 72px 0; }
    .cta-box { padding: 40px 32px; }
    .about-features { grid-template-columns: 1fr; }
    .sd-features   { grid-template-columns: 1fr; }
    .why-panel { padding: 32px; }
}

@media (max-width: 767px) {
    :root { --navbar-h: 64px; }
    .hero-title { font-size: 2.8rem; }
    .page-hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.9rem; }
    .about-img-collage { flex-direction: column; }
    .aic-side { width: 100%; flex-direction: row; height: 120px; }
    .aic-thumb { flex: 1; height: 120px; }
    .about-features { grid-template-columns: 1fr; }
    .history-badge { position: static; margin-top: 16px; }
    .history-highlights { gap: 16px; flex-wrap: wrap; }
    .cta-box { padding: 32px 24px; }
    .cta-box .col-lg-4 { text-align: left !important; }
    .topbar { display: none !important; }
    .hero { margin-top: 0; padding-top: var(--navbar-h); }
    .page-hero { margin-top: 0; }
    .strip-item { gap: 10px; }
    .process-steps { gap: 24px; }
    .ps-item { min-width: 140px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
    .hsc-body { grid-template-columns: 1fr; }
    .hsc-item { border-right: none !important; }
    .footer-main { padding: 48px 0 32px; }
}
