/* =====================================================
   FRAME 520 - STYLES
   Modern Premium Aesthetic
   ===================================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --color-primary: #E85D3C;
    --color-primary-dark: #d14d2d;
    --color-primary-light: #ff6f4a;
    --color-primary-rgb: 232, 93, 60;

    /* Backgrounds */
    --color-bg: #ffffff;
    --color-bg-subtle: #fafafa;
    --color-bg-muted: #f4f4f5;
    --color-bg-dark: #09090b;
    --color-bg-dark-elevated: #18181b;

    /* Text */
    --color-text: #09090b;
    --color-text-primary: #fafafa;
    --color-text-secondary: #52525b;
    --color-text-muted: #a1a1aa;
    --color-text-inverse: #fafafa;
    --color-text-inverse-secondary: #b8b8bf;

    /* Borders */
    --color-border: #e4e4e7;
    --color-border-dark: #27272a;

    /* Shadows - Premium feel */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Font Sizes - More dramatic scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Spacing - More generous */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Header */
    --header-height: 72px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-secondary);
    background: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* =====================================================
   HEADER & NAVIGATION - TRANSPARENT ON DARK HERO
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all var(--transition-slow);
}

.header.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--color-border-dark);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.footer__logo-img {
    height: 30px;
    width: auto;
}

.nav__logo-img {
    height: 36px;
    width: auto;
    transition: filter var(--transition-base);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__link {
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--color-text-inverse-secondary);
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-text-inverse);
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white !important;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(232, 93, 60, 0.3);
}

.nav__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 60, 0.4);
}

.nav__link--cta::after {
    display: none;
}

.nav__toggle,
.nav__close {
    display: none;
    color: var(--color-text-inverse);
    cursor: pointer;
}

/* Mobile Navigation */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-dark);
        border-left: 1px solid var(--color-border-dark);
        padding: var(--space-20) var(--space-8);
        transition: right var(--transition-slow);
        z-index: 1001;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-6);
    }

    .nav__link {
        font-size: var(--text-lg);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: var(--space-6);
        right: var(--space-6);
    }

    .nav__toggle {
        display: block;
    }
}

/* =====================================================
   BUTTONS - DRAMATIC EFFECTS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 93, 60, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 93, 60, 0.4);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary span,
.btn--primary svg {
    position: relative;
    z-index: 1;
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section__badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--color-bg-muted);
    color: var(--color-text-secondary);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section__intro {
    max-width: 700px;
    margin: var(--space-4) auto 0;
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.metodologia .section__intro {
    color: var(--color-text-inverse-secondary);
}

/* =====================================================
   HERO SECTION - DRAMATIC VISUAL IMPACT
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--color-bg-dark);
    overflow: hidden;
}

/* Animated grid background */
.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

/* Floating gradient orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 60, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero__orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.hero__orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-16) 0;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-inverse-secondary);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-primary);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--color-primary);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px var(--color-primary);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 700;
    color: var(--color-text-inverse);
    line-height: 1.05;
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title .highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff9966 50%, var(--color-primary-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero__description {
    font-size: var(--text-xl);
    color: var(--color-text-inverse-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual - Video Container */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--color-bg-dark-elevated);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(232, 93, 60, 0.1);
}

.hero__video-container iframe,
.hero__video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}



.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 1;
    }
}

/* Hero Responsive */
@media screen and (max-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__video-container {
        max-width: 400px;
    }

    .hero__scroll {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .hero__title {
        font-size: var(--text-3xl);
    }
}

/* =====================================================
   CLIENT LOGO BAR
   ===================================================== */

.logos {
    background: var(--color-bg-dark);
    padding: var(--space-8) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.logos__track {
    display: flex;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

.logos__slide {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    padding: 0 var(--space-8);
}

.logos__item {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    user-select: none;
    transition: color 0.3s ease;
}

.logos__item:hover {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   SECTION DIVIDERS
   ===================================================== */

.section-divider {
    line-height: 0;
    margin-top: -1px;
    background: var(--color-bg-dark);
}

.section-divider--light {
    background: var(--color-bg);
}

.section-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

@media (min-width: 768px) {
    .section-divider svg {
        height: 80px;
    }
}

/* =====================================================
   SCREEN-READER ONLY
   ===================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =====================================================
   OBJETIVO SECTION
   ===================================================== */
.objetivo {
    padding: var(--space-32) 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.objetivo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
}

.objetivo__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.objetivo__text {
    font-size: var(--text-2xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.objetivo__text:last-child {
    margin-bottom: 0;
}

/* =====================================================
   METODOLOGIA SECTION - DRAMATIC CARDS
   ===================================================== */
.metodologia {
    padding: var(--space-32) 0;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.metodologia::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(232, 93, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
}

.metodologia .section__badge {
    background: rgba(232, 93, 60, 0.2);
    color: var(--color-primary-light);
}

.metodologia .section__title {
    color: var(--color-text-inverse);
}

.metodologia__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.metodologia__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
        box-shadow 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.metodologia__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.metodologia__card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.metodologia__card:hover::before {
    opacity: 1;
}

.metodologia__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(232, 93, 60, 0.2) 0%, rgba(232, 93, 60, 0.05) 100%);
    border: 1px solid rgba(232, 93, 60, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.metodologia__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.metodologia__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-3);
}

.metodologia__text {
    color: var(--color-text-inverse-secondary);
    line-height: 1.7;
    font-size: var(--text-base);
}

@media screen and (max-width: 968px) {
    .metodologia__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* =====================================================
   PRODUTOS SECTION - VIBRANT CARDS
   ===================================================== */
.produtos {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-subtle) 100%);
    position: relative;
}

.produtos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.produto__card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
        box-shadow 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99),
        border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.produto__image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.produto__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.produto__card:hover .produto__image {
    transform: scale(1.05);
}

.produto__header,
.produto__description,
.produto__target {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

.produto__header {
    padding-top: var(--space-6);
}

.produto__target {
    padding-bottom: var(--space-8);
}

.produto__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.produto__card:hover {
    border-color: rgba(232, 93, 60, 0.3);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px -15px rgba(232, 93, 60, 0.15),
        0 10px 20px -10px rgba(0, 0, 0, 0.1);
}

.produto__card:hover::before {
    opacity: 1;
}

.produto__header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.produto__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-bg-muted) 0%, var(--color-bg) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.produto__card:hover .produto__icon {
    background: linear-gradient(135deg, rgba(232, 93, 60, 0.1) 0%, rgba(232, 93, 60, 0.05) 100%);
    border-color: rgba(232, 93, 60, 0.3);
}

.produto__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.produto__description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.produto__target {
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.produto__target-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
}

.produto__target-value {
    font-size: var(--text-sm);
    color: var(--color-text);
}

.produto__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-4) var(--space-8) var(--space-8);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    transition: gap 0.3s ease;
}

.produto__card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.produto__card--link:hover .produto__cta {
    gap: 10px;
    color: var(--color-primary-dark, #d14d2d);
}

.produto__card--featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(232, 93, 60, 0.02) 0%, var(--color-bg) 100%);
    position: relative;
}

.produto__card--featured::before {
    opacity: 1;
}



.produtos__extras {
    margin-top: var(--space-16);
    padding: var(--space-8);
    background: var(--color-bg-muted);
    border-radius: var(--radius-2xl);
    text-align: center;
}

.produtos__extras-text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-3);
}

.produtos__extras-text:last-child {
    margin-bottom: 0;
}

.produtos__extras-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

@media screen and (max-width: 968px) {
    .produtos__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* =====================================================
   EXPERTISE SECTION - DRAMATIC STATS
   ===================================================== */
.expertise {
    padding: var(--space-32) 0;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(232, 93, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.expertise .section__badge {
    background: rgba(232, 93, 60, 0.2);
    color: var(--color-primary-light);
}

.expertise .section__title {
    color: var(--color-text-inverse);
}

.expertise__content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.expertise__text {
    font-size: var(--text-xl);
    color: var(--color-text-inverse-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.expertise__text:last-of-type {
    color: var(--color-text-inverse);
    font-weight: 500;
}

.expertise__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.expertise__stat {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    min-width: 180px;
}

.expertise__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff9966 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.expertise__stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-inverse-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 576px) {
    .expertise__stats {
        flex-direction: column;
        gap: var(--space-4);
    }

    .expertise__stat {
        min-width: auto;
    }
}

/* =====================================================
   CONTATO SECTION - CALL TO ACTION
   ===================================================== */
.contato {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, var(--color-bg-subtle) 0%, var(--color-bg) 100%);
    position: relative;
}

.contato__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contato__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

.contato__form {
    width: 100%;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
}

.contato__fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}


.contato__input {
    width: 100%;
    background: var(--color-bg-muted);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--color-text);
    outline: none;
    transition: all var(--transition-base);
}

.contato__input:focus {
    background: var(--color-bg);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 60, 0.1);
}

.contato__input::placeholder {
    color: var(--color-text-muted);
}

.contato__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-10, 40px);
    cursor: pointer;
    color: var(--color-text-muted);
}

.contato__select:has(option:checked:not([value=""])) {
    color: var(--color-text);
}

.contato__textarea {
    resize: vertical;
    min-height: 100px;
}

.contato__submit {
    width: 100%;
    padding: var(--space-5) var(--space-6);
    font-size: var(--text-lg);
}

@media screen and (max-width: 576px) {
    .contato__title {
        font-size: var(--text-2xl);
    }

    .contato__row {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse-secondary);
    padding: var(--space-12) 0 var(--space-6);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-border-dark);
    flex-wrap: wrap;
    gap: var(--space-6);
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__nav {
    display: flex;
    gap: var(--space-6);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-inverse-secondary);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: rgba(232, 93, 60, 0.15);
    border-color: rgba(232, 93, 60, 0.4);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer__link {
    font-size: var(--text-sm);
    color: var(--color-text-inverse-secondary);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-text-inverse);
}

.footer__info {
    display: flex;
    align-items: center;
}

.footer__location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-inverse-secondary);
}

.footer__bottom {
    padding-top: var(--space-6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--color-text-inverse-secondary);
}

.footer__legal {
    font-size: var(--text-xs);
    color: var(--color-text-inverse-secondary);
}

@media screen and (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   UTILITIES
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Selection */
::selection {
    background: rgba(var(--color-primary-rgb), 0.3);
    color: var(--color-text-primary);
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4) var(--space-6);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-lg);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.cookie-banner__content p {
    flex: 1;
    min-width: 280px;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

.cookie-banner__content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-3);
}

.cookie-banner__btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

@media screen and (max-width: 576px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   CONSENT CHECKBOX
   ===================================================== */
.contato__consent {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    cursor: pointer;
    text-align: left;
}

.contato__consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.contato__consent a {
    color: var(--color-primary);
    text-decoration: underline;
}

.contato__consent a:hover {
    color: var(--color-primary-dark);
}

/* =====================================================
   PRIVACY PAGE
   ===================================================== */
.header--solid {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: none;
    position: relative;
}

.privacy {
    padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-16);
    background: var(--color-bg);
    min-height: 100vh;
}

.privacy__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.privacy__updated {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.privacy__content {
    max-width: 800px;
}

.privacy__content p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.privacy__content h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.privacy__content ul {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
    list-style-type: disc;
}

.privacy__content li {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2);
}

.privacy__content strong {
    color: var(--color-text);
}

.privacy__back {
    margin-top: var(--space-10);
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   Subtle fade-in + translate effects
   ===================================================== */

/* Base reveal state - hidden */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed state */
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for sequential animation */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Sections - subtle scale variation */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Card reveal with scale */
.card-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stats counter effect */
.stat-reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .section-reveal,
    .card-reveal,
    .stat-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}