:root {
    --red: #E23744;
    --red-dark: #b82d38;
    --red-glow: rgba(226, 55, 68, 0.3);
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #181818;
    --card: #141414;
    --border: rgba(255, 255, 255, 0.07);
    --text: #f0f0f0;
    --muted: #888;
    --light: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-block;
    background: rgba(226, 55, 68, 0.12);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.3);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--red-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--light);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(226, 55, 68, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(226, 55, 68, 0.06) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(226, 55, 68, 0.15);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(226, 55, 68, 0.08);
    bottom: 20%;
    right: 30%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 120, 80, 0.1);
    top: 40%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.3);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title .accent {
    color: var(--red);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    animation: expand-line 1s ease 0.8s both;
    transform-origin: left;
}

@keyframes expand-line {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-stat {}

.hero-stat .num {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .num span {
    color: var(--red);
}

.hero-stat .label {
    font-size: 13px;
    color: var(--muted);
}

.hero-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    align-self: center;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SOCIAL PROOF */
#proof {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--dark2);
    overflow: hidden;
}

.proof-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.logos-wrapper {
    overflow: hidden;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity 0.3s;
    white-space: nowrap;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
}

.platform-logo:hover {
    opacity: 1;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* STATS BAND */
#stats-band {
    padding: 80px 0;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.stat-item {
    background: var(--card);
    padding: 40px 32px;
    text-align: center;
    transition: background 0.3s;
}

.stat-item:hover {
    background: var(--dark3);
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num .red {
    color: var(--red);
}

.stat-desc {
    font-size: 14px;
    color: var(--muted);
}

/* SERVICES */
#services {
    padding: 80px 0;
    background: var(--dark2);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-card {
    background: var(--card);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    background: var(--dark3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(226, 55, 68, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light);
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.stag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    border: 1px solid var(--border);
}

.service-arrow {
    font-size: 20px;
    color: var(--red);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

/* HOW IT WORKS */
#how {
    padding: 80px 0;
    background: var(--dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
}

.step {
    padding: 40px 32px;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: rgba(226, 55, 68, 0.08);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    transition: color 0.4s;
}

.step:hover .step-num {
    color: rgba(226, 55, 68, 0.15);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.2);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.step:hover .step-icon {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 8px 30px var(--red-glow);
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.step-connector {
    display: none;
}

/* RESULTS */
#results {
    padding: 80px 0;
    background: var(--dark2);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.result-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.result-card:hover {
    border-color: rgba(226, 55, 68, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.result-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.label-dot.before {
    background: #555;
}

.label-dot.after {
    background: var(--red);
}

.result-metric {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.result-card.after .result-metric {
    color: var(--red);
}

.result-card.before .result-metric {
    color: #444;
}

.result-desc {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 20px;
}

.result-bar {
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    overflow: hidden;
}

.result-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.5s ease;
}

.result-card.before .result-fill {
    background: #333;
    width: 0%;
}

.result-card.after .result-fill {
    background: var(--red);
    width: 0%;
}

.result-card.animated.before .result-fill {
    width: 25%;
}

.result-card.animated.after .result-fill {
    width: 85%;
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 32px;
}

.metric-box {
    background: var(--card);
    padding: 28px 24px;
    text-align: center;
}

.metric-box .m-val {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 6px;
}

.metric-box .m-label {
    font-size: 12px;
    color: var(--muted);
}

/* PORTFOLIO */
#portfolio {
    padding: 80px 0;
    background: var(--dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.portfolio-card {
    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(226, 55, 68, 0.2);
}

.portfolio-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.portfolio-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(20, 20, 20, 0.9));
}

.portfolio-body {
    padding: 24px;
}

.portfolio-tag {
    font-size: 11px;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-results {
    display: flex;
    gap: 20px;
}

.p-stat .val {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
}

.p-stat .lbl {
    font-size: 11px;
    color: var(--muted);
}

/* WHY */
#why {
    padding: 80px 0;
    background: var(--dark2);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.why-list {
    list-style: none;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.why-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--light);
}

.why-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.why-visual {
    background: var(--card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.why-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 55, 68, 0.2) 0%, transparent 70%);
}

.donut-chart {
    width: 180px;
    height: 180px;
    margin: 0 auto 32px;
    position: relative;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-center .dc-val {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
}

.donut-center .dc-label {
    font-size: 11px;
    color: var(--muted);
}

.chart-legend {}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* TESTIMONIALS */
#testimonials {
    padding: 80px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.testi-card {
    background: var(--card);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.testi-card:hover {
    border-color: rgba(226, 55, 68, 0.2);
    transform: translateY(-4px);
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Syne', sans-serif;
    font-size: 80px;
    color: rgba(226, 55, 68, 0.1);
    line-height: 1;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #FFD700;
    font-size: 14px;
}

.testi-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    background: rgba(226, 55, 68, 0.15);
    color: var(--red);
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 2px;
}

.author-role {
    font-size: 12px;
    color: var(--muted);
}

/* CTA SECTION */
#cta {
    padding: 80px 0;
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

#cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(226, 55, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--muted);
}

.social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(226, 55, 68, 0.1);
}

.footer-col h5 {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-divider {
        display: none;
    }

    .metrics-row {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-outline,
    .btn-whatsapp {
        font-size: 14px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
    }
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    animation: float-btn 3s ease-in-out infinite;
    text-decoration: none;
    transition: transform 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes float-btn {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    }
}