*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #E87722;
    --orange-light: #F5A356;
    --orange-dark: #B85C10;
    --blue: #1A5FAB;
    --blue-light: #3D80CC;
    --blue-dark: #0E3D73;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --gray-50: #F1F3F8;
    --gray-100: #E2E6EF;
    --gray-300: #9AAABB;
    --gray-500: #6B7A92;
    --gray-900: #1A1F2E;
    --max-w: 1120px;
    --nav-h: 72px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--gray-900);
    overflow-x: hidden;
}

/* ── PRELOAD ── */
.preload {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preload.hidden {
    opacity: 0;
    visibility: hidden;
}

.preload-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-100);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.preload-text {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ── LAYOUT WRAPPER ── */
.wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    height: var(--nav-h);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 0rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo-text .name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.2;
}

.nav-logo-text .sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 0.15rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
    background: var(--gray-50);
    color: var(--blue);
}

.nav-links a.active {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
}

.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 0.55rem 1.35rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 10px rgba(232, 119, 34, 0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-500);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 199;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1.2rem;
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
}

.mobile-menu a:hover {
    background: var(--gray-50);
    color: var(--orange);
}

.mobile-menu a.active {
    background: var(--orange);
    color: var(--white);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 50%, #1E6FC0 100%);
    padding: calc(var(--nav-h) + 5rem) 2rem 8rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--off-white);
    clip-path: ellipse(56% 100% at 50% 100%);
}

.hero-orb1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb2 {
    position: absolute;
    bottom: 8%;
    left: -8%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232, 119, 34, 0.18);
    border: 1px solid rgba(232, 119, 34, 0.35);
    color: var(--orange-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.38rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.7s ease both;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 span {
    color: var(--orange-light);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-pills {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
    padding: 0.32rem 0.82rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 0.82rem 1.9rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(232, 119, 34, 0.4);
    transition: transform 0.15s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--orange-dark);
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.88);
    padding: 0.82rem 1.9rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.88rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
}

/* Hero visual */
.hero-visual {
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero-cards {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

@keyframes cardFloat {
    0% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-6px) rotateX(1deg) rotateY(-1deg); }
    50% { transform: translateY(-3px) rotateX(-0.6deg) rotateY(0.6deg); }
    75% { transform: translateY(-6px) rotateX(0.8deg) rotateY(-0.8deg); }
    100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
}

.hcard {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
    transition: box-shadow 280ms ease;
    will-change: transform;
}

.hcard-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Stagger animation for natural effect */
.hero-cards .hcard:nth-child(1) { animation-delay: 0s; }
.hero-cards .hcard:nth-child(2) { animation-delay: 0.12s; }
.hero-cards .hcard:nth-child(3) { animation-delay: 0.24s; }
.hero-cards .hcard:nth-child(4) { animation-delay: 0.36s; }

.hcard:hover { box-shadow: 0 18px 50px rgba(0,0,0,0.12); }

.hcard-ico.o {
    background: rgba(232, 119, 34, 0.22);
}

.hcard-ico.w {
    background: rgba(255, 255, 255, 0.12);
}

.hcard-title {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.88rem;
}

.hcard-sub {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.73rem;
    margin-top: 1px;
}

.hero-badge-float {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hbf-top {
    top: -16px;
    right: -18px;
}

.hbf-bot {
    bottom: -16px;
    left: -18px;
}

.hbf-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hbf-ico.o {
    background: rgba(232, 119, 34, 0.1);
}

.hbf-ico.b {
    background: rgba(26, 95, 171, 0.1);
}

.hbf-lbl {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hbf-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* ── SECTIONS ── */
section {
    padding: 6rem 0;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(232, 119, 34, 0.09);
    padding: 0.32rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 0.9rem;
}

.sec-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.sec-title.light {
    color: var(--white);
}

.sec-sub {
    font-size: 0.98rem;
    color: var(--gray-500);
    margin-top: 0.65rem;
    line-height: 1.72;
    max-width: 520px;
    font-weight: 300;
}

.sec-sub.light {
    color: rgba(255, 255, 255, 0.6);
}

.sec-head {
    margin-bottom: 3rem;
}

/* ── SOBRE NÓS ── */
#sobre {
    background: var(--off-white);
}

.sobre-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.pilar {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pilar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pilar-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.pilar h4 {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pilar p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.65;
    font-weight: 300;
}

/* ── SERVICES ── */

#servicos {
    background: var(--off-white);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.22s, box-shadow 0.22s;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.svc-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.svc-body {
    padding: 1.4rem 1.5rem;
}

.svc-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.7rem;
}

.tag-b {
    background: rgba(26, 95, 171, 0.09);
    color: var(--blue);
}

.tag-o {
    background: rgba(232, 119, 34, 0.09);
    color: var(--orange);
}

.svc-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.55rem;
}

.svc-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 0.9rem;
    font-weight: 300;
}

.svc-list {
    list-style: none;
}

.svc-list li {
    font-size: 0.81rem;
    color: var(--gray-500);
    padding: 0.28rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-50);
}

.svc-list li:last-child {
    border-bottom: none;
}

.svc-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.svc-list.b li::before {
    background: var(--blue);
}

.svc-list.o li::before {
    background: var(--orange);
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.81rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: gap 0.15s;
}

.svc-link.b {
    color: var(--blue);
}

.svc-link.o {
    color: var(--orange);
}

.svc-link:hover {
    gap: 0.6rem;
}

/* Mobile: 1 coluna em telas pequenas */
@media (max-width: 768px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

/* ── DIFERENCIAIS ── */
#diferenciais {
    background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

.diff-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.9rem;
    transition: background 0.2s, border-color 0.2s;
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(232, 119, 34, 0.4);
}

.diff-ico {
    width: 48px;
    height: 48px;
    background: rgba(232, 119, 34, 0.14);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.diff-card h4 {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.45rem;
}

.diff-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
    font-weight: 300;
}

/* ── SOLICITAR ── */
#portfolio {
    background: var(--gray-50);
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 1rem;
}

.port-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.port-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.pb-ico {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.pb-ico.o {
    background: rgba(232, 119, 34, 0.1);
}

.pb-ico.b {
    background: rgba(26, 95, 171, 0.1);
}

.pb-text span {
    display: block;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pb-text small {
    font-size: 0.73rem;
    color: var(--gray-300);
    font-weight: 400;
}

/* ── CONTATO ── */
#contato {
    background: var(--off-white);
}

.ctt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ctt-desc {
    font-size: 0.98rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.ctt-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ctt-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--gray-900);
    box-shadow: var(--shadow);
    transition: border-color 0.2s, transform 0.15s;
}

.ctt-link:hover {
    border-color: var(--orange);
    transform: translateX(4px);
}

.ctt-ico {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.ctt-ico.g {
    background: #E6F8EE;
}

.ctt-ico.b {
    background: rgba(26, 95, 171, 0.1);
}

.ctt-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.ctt-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 1px;
}

.ctt-box {
    background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 100%);
    border-radius: var(--radius);
    padding: 2.8rem 2.4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ctt-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.2) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.ctt-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.65rem;
    position: relative;
}

.ctt-box p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #25D366;
    color: var(--white);
    padding: 0.88rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.15s;
    position: relative;
}

.wa-btn:hover {
    transform: translateY(-2px);
}

/* ── FLOATING WA ── */
.float-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 300;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.2s;
}

.float-wa:hover {
    transform: scale(1.1);
}

.float-wa svg {
    width: 30px;
    height: 30px;
}

.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.38);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .7
    }

    70% {
        transform: scale(1.55);
        opacity: 0
    }

    100% {
        transform: scale(1.55);
        opacity: 0
    }
}

/* ── FOOTER ── */
footer {
    background: var(--gray-900);
    padding: 2.75rem 2rem;
    text-align: center;
}

.ft-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
}

.ft-logo img {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.75);
}

.ft-logo-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}

.ft-svc {
    margin: 0.6rem 0 0.85rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.ft-svc span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.38);
}

footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── ANIM ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── LOOPING HERO CARD & BADGE ANIMATIONS ── */


/* Enable 3D perspective on the cards container */
.hero-cards {
    perspective: 900px;
    -webkit-perspective: 900px;
}

/* Floating badges animation */
@keyframes floatBobbing {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.hero-badge-float {
    animation: floatBobbing 4.2s ease-in-out infinite;
    transition: transform 220ms ease, box-shadow 220ms ease;
    will-change: transform;
}

.hero-badge-float:hover {
    transform: translateY(-8px) scale(1.03);
    animation-play-state: paused;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    /* Make hero visual visible on narrower screens but compact it */
    .hero-visual {
        display: none;
        margin-top: 1rem;
    }

    .center-px{
            margin: 124px 20px;
    }

    .hero-cards {
        padding: 1rem;
        gap: 0.5rem;
        border-radius: 14px;
    }

    .hcard {
        padding: 0.7rem 0.9rem;
        border-radius: 10px;
        animation-duration: 5s;
    }

    .hcard-ico {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Hide floating badges on small screens to avoid overlap */
    .hero-badge-float {
        display: none;
    }

    .ctt-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

@media(max-width:680px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    section {
        padding: 4rem 0
    }

    .hero {
        padding: calc(var(--nav-h)+3.5rem) 1.25rem 6rem
    }

    .wrap {
        padding: 0 1.25rem
    }

    .float-wa {
        bottom: 18px;
        right: 18px
    }

    .hero-pills {
    display: flex !important;
  
}
}