/* =========================================
   1. VARIÁVEIS & TEMA DARK (CHUMBO + AMARELO)
   ========================================= */

@font-face {
    font-family: 'Bitsumishi';
    src: url('assets/fonts/future-tense.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-body: #121212;
    --surface: #1E1E1E;
    --surface-hover: #252525;

    --primary-text: #F5F5F5;
    --secondary-text: #A0A0A0;

    --accent-color: #ffb400;
    --accent-text: #000000;

    --whatsapp-color: #25D366;
    --radius-sm: 8px;
    --radius-md: 16px;

    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
    --border-light: 1px solid rgba(255, 255, 255, 0.08);

    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-titles: 'Bitsumishi', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.big-title,
.center-title,
.section-title-left,
.ticker-title,
.minimal-title,
.product-title,
.highlight-header h2,
#modal-title {
    font-family: var(--font-titles);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--primary-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.carbon-texture {
    background-color: var(--bg-body);
    background-image:
        linear-gradient(to bottom, rgba(18, 18, 18, 0.94), rgba(18, 18, 18, 0.98)),
        url('assets/hero/background.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.yellow-texture {
    background-color: var(--accent-color);
    background-image:
        linear-gradient(rgba(255, 180, 0, 0.92), rgba(255, 180, 0, 0.92)),
        url('assets/hero/asfaltotexture.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.center-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-text);
    margin-bottom: 60px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

/* =========================================
   2. COMPONENTES (BOTÕES & UI)
   ========================================= */

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--accent-text);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.4);
}

.btn-primary.small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-text);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-card-minimal {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--secondary-text);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-card-minimal:hover {
    background: var(--accent-color);
    color: var(--accent-text);
    border-color: var(--accent-color);
}

.float-wa-clean {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    z-index: 200;
}

.float-wa-clean:hover {
    transform: scale(1.1);
}

/* =========================================
   3. HEADER
   ========================================= */

.glass-header {
    background: var(--accent-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--bg-body);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--bg-body);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-text);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 10px;
}

.glass-header .btn-primary {
    background-color: #000;
    color: var(--accent-color);
    border: 1px solid #000;
}

.glass-header .btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* =========================================
   4. HERO SECTION (DARK + CARBON)
   ========================================= */

.hero-section {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.pill-badge {
    background-color: rgba(255, 180, 0, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-block;
}

.big-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(90deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 450px;
    margin: 60px auto 0;
    display: block;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    background-color: var(--surface);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.main-card {
    width: 60%;
    height: 350px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.float-left {
    width: 28%;
    height: 220px;
    left: 5%;
    top: 60px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.float-right {
    width: 28%;
    height: 220px;
    right: 5%;
    top: 100px;
    z-index: 3;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-gallery-wrapper:hover .main-card {
    transform: translate(-50%, -10px);
}

.hero-gallery-wrapper:hover .float-left,
.hero-gallery-wrapper:hover .float-right {
    filter: brightness(1.2);
}

.card-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.hero-glow {
    position: absolute;
    width: 100%;
    max-width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* =========================================
   5. SESSÃO: CLIENTES
   ========================================= */

.clients-bar {
    padding: 40px 0;
    border-bottom: var(--border-light);
}

.clients-title {
    color: var(--secondary-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.clients-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.3;
}

.client-logo {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

/* =========================================
   6. SESSÃO: SOLUÇÕES (CARDS DARK)
   ========================================= */

#solucoes {
    background-color: var(--accent-color);
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

#solucoes .section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
    font-weight: 800;
}

#solucoes .section-header p {
    color: #111;
    font-weight: 500;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.solution-card {
    background: #111;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #fff;
}

.solution-card p {
    font-size: 0.95rem;
    color: #aaa;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 180, 0, 0.1);
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 24px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 180, 0, 0.1);
    transition: all 0.3s ease;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.solution-card:hover .icon-box {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 180, 0, 0.4);
    transform: scale(1.1);
}

/* =========================================
   7. SESSÃO: QUALITY (SLIDESHOW)
   ========================================= */

.quality-section {
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.clean-slideshow {
    width: 100%;
    height: 550px;
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
}

.minimal-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
}

.minimal-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.minimal-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    position: relative;
    margin-top: 4px;
}

.icon-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 5px;
    height: 9px;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

.text strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

.text p {
    font-size: 0.95rem;
    color: var(--secondary-text);
}

.action-block p {
    margin-bottom: 15px;
    font-weight: 500;
    color: #fff;
}

/* =========================================
   8. SESSÃO: TICKER
   ========================================= */

.ticker-section {
    background-color: var(--accent-color);
    padding: 80px 0px 120px 0px;
    overflow: hidden;
    border-bottom: var(--border-light);
}

.mb-50 {
    margin-bottom: 50px;
}

.ticker-title {
    color: #000;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.highlight-text {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.ticker-wrapper {
    width: 100%;
    display: flex;
    overflow: hidden;
    padding: 30px 0;
    margin-bottom: -40px;
}

.ticker-track {
    display: flex;
    gap: 12px;
    width: max-content;
}

.ticker-track img {
    height: 320px;
    width: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    opacity: 1;
    transition: transform 0.4s ease;
}

.ticker-track img:hover {
    transform: scale(1.02);
    z-index: 2;
}

.scroll-left {
    animation: scrollLeft 40s linear infinite;
}

.scroll-right {
    animation: scrollRight 40s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* =========================================
   8.5. SESSÃO: TICKER DE LOGOS (PARCEIROS) - CORRIGIDO
   ========================================= */

.partners-ticker {
    background-color: var(--bg-body);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.partners-title {
    color: var(--secondary-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.logo-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-ticker-track {
    display: flex;
    gap: 80px;
    width: max-content;
    align-items: center;
}

.partner-logo {
    max-height: 64px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    cursor: pointer;
}

.scroll-logos {
    animation: scrollLogos 40s linear infinite;
}

.logo-ticker-wrapper:hover .scroll-logos {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-ticker {
        padding: 50px 0;
    }

    .partner-logo {
        height: auto !important;
        max-height: 80px;
        max-width: 140px;
    }

    .logo-ticker-track {
        gap: 30px;
    }
}

/* =========================================
   9. SESSÃO: BENEFÍCIOS
   ========================================= */

.benefits-section {
    background-color: var(--bg-body);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--accent-color);
    opacity: 0.2;
    z-index: -1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    background: rgba(255, 180, 0, 0.1);
    color: var(--accent-color);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #fff;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--secondary-text);
}

/* =========================================
   10. SESSÃO: DESTAQUES (FUNDO AMARELO)
   ========================================= */

.highlight-categories {
    background-color: var(--accent-color);
    padding: 100px 0;
}

.highlight-header {
    text-align: center;
    margin-bottom: 60px;
}

.highlight-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #000;
}

.text-gradient {
    background: none;
    -webkit-text-fill-color: initial;
    color: #000;
    text-decoration: underline;
    font-weight: 800;
}

.highlight-header p {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.category-card {
    background: var(--bg-body);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #000;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.cat-img-wrapper {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    overflow: visible;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.category-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.category-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
}

/* =========================================
   11. SESSÃO: CATÁLOGO
   ========================================= */

.catalog-section {
    padding: 60px 0 100px;
}

.catalog-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.sub-text {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-top: 5px;
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary-text);
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-btn.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    font-weight: 700;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.card-image {
    height: 240px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
}

.category-tag {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-main);
    letter-spacing: 0;
    text-transform: none;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

/* =========================================
   12. SESSÃO: COMO FAZER O PEDIDO (FUNDO AMARELO)
   ========================================= */

.how-to-order {
    background-color: var(--accent-color);
    border-top: var(--border-light);
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.section-title-left {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
    font-weight: 800;
}

.order-subtitle {
    font-size: 1.05rem;
    color: #111;
    margin-bottom: 30px;
    max-width: 90%;
    font-weight: 500;
}

.details-list {
    margin-bottom: 40px;
    border-left: 3px solid #000;
    padding-left: 20px;
}

.details-list li {
    margin-bottom: 12px;
    color: #111;
    font-size: 0.95rem;
}

.details-list strong {
    color: #000;
    font-weight: 800;
}

.steps-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #000;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.step-card {
    background-color: var(--bg-body);
    padding: 20px;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    background-color: #000;
}

.step-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
}

.step-card:hover .step-num {
    color: var(--accent-color);
}

.step-num.highlight-step {
    color: var(--accent-color);
}

.step-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
    color: #ccc;
}

.order-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.order-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #000;
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--accent-color);
}

.floating-badge span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
}

.floating-badge strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

/* =========================================
   13. SESSÃO: FAQ
   ========================================= */

.faq-section {
    background-color: var(--bg-body);
    border-top: var(--border-light);
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.faq-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active {
    background-color: var(--surface-hover);
    border-color: var(--accent-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    opacity: 1;
}

/* =========================================
   14. FOOTER
   ========================================= */

footer {
    background: #080808;
    border-top: 1px solid #222;
    padding: 60px 0 20px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.footer-brand p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.footer-info p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-info strong {
    color: var(--accent-color);
}

.footer-copy {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #666;
    font-size: 0.8rem;
}

/* =========================================
   15. MENU MOBILE (HAMBÚRGUER DARK)
   ========================================= */

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
    }

    .nav-cta {
        margin-top: 10px;
        width: 80%;
        text-align: center;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-color);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-color);
    }

    .desktop-nav a {
        margin: 0;
    }

    .carbon-texture {
        background-attachment: scroll;
    }

    .cat-img-wrapper {
        height: 300px;
    }

    .cat-img-wrapper img {
        object-fit: contain;
    }
}

/* =========================================
   16. RESPONSIVIDADE GERAL
   ========================================= */

@media (max-width: 900px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-wrapper {
        grid-template-columns: 1fr;
    }

    .order-visual {
        height: 300px;
        min-height: auto;
        order: -1;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 40px;
        height: auto;
    }

    .big-title {
        font-size: 2rem !important;
        line-height: 1.1;
        letter-spacing: 1px !important;
    }

    .hero-gallery-wrapper {
        height: 320px;
        margin-top: 30px;
        display: block;
        position: relative;
    }

    .hero-card {
        position: absolute !important;
        transform: none !important;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-actions {
        flex-direction: column;
    }

    .center-title,
    .section-title-left,
    .ticker-title,
    .highlight-header h2,
    .minimal-title,
    .tech-ticker-title,
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        letter-spacing: 1px !important;
        margin-bottom: 30px;
        word-wrap: break-word;
    }

    .highlight-header h2 {
        font-size: 2rem;
    }

    .grid-2-col,
    .benefits-grid,
    .solutions-grid,
    .steps-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clean-slideshow {
        height: 400px;
    }

    .catalog-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticker-track img {
        height: 200px;
        width: 300px;
    }

    .main-card {
        width: 80%;
        height: 200px;
        left: 50%;
        top: 0;
        transform: translateX(-50%) !important;
        z-index: 1;
    }

    .float-left {
        width: 42%;
        height: 140px;
        left: 10px;
        top: auto;
        bottom: 0;
        z-index: 2;
        animation: none;
    }

    .float-right {
        width: 42%;
        height: 140px;
        right: 10px;
        top: auto;
        bottom: 0;
        z-index: 2;
        animation: none;
    }

    .hero-glow {
        display: none;
    }

    .container {
        padding: 0 16px;
    }

    .solution-card {
        padding: 24px 20px;
        width: 100%;
    }

    .solution-card h3 {
        font-size: 1.2rem;
        letter-spacing: 1px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .solution-card p {
        font-size: 0.9rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo-link {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 32px;
    }

    /* Ajuste do Texto de apoio (Parágrafos) */
    .hero-desc,
    .section-header p,
    .order-subtitle {
        font-size: 1rem;
        /* Tamanho de leitura confortável */
        padding: 0 10px;
        /* Margem de segurança nas laterais */
    }
}

/* =========================================
   17. MODAL DE PRODUTO (CORRIGIDO & OTIMIZADO)
   ========================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--surface);
    width: 100%;
    max-width: 1000px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background-color: var(--accent-color);
    color: #000;
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 600px;
}

.modal-gallery-wrapper {
    background-color: #000;
    padding: 0;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.modal-info {
    padding: 40px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-info::-webkit-scrollbar {
    width: 6px;
}

.modal-info::-webkit-scrollbar-track {
    background: #111;
}

.modal-info::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

#modal-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 10px;
}

#modal-title {
    font-size: 1.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.modal-description {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.specs-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccc;
    font-size: 0.9rem;
}

.spec-item:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.spec-item strong {
    color: var(--accent-color);
    font-weight: 600;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

@media (max-width: 900px) {
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .modal-gallery-wrapper {
        height: 300px;
    }

    .modal-info {
        padding: 30px 20px;
        height: auto;
        overflow-y: visible;
    }

    #modal-title {
        font-size: 1.8rem;
    }

    .nav-arrow {
        width: 36px;
        height: 36px;
    }
}

/* =========================================
   11.5 SESSÃO: TICKER DE TÉCNICAS (ATUALIZADO)
   ========================================= */

.tech-ticker-section {
    background-color: var(--bg-body);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.tech-ticker-title {
    color: var(--secondary-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 700;
}

.tech-wrapper {
    width: 100%;
    display: flex;
    overflow: hidden;
    padding: 30px 0;
    margin: -10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-track {
    display: flex;
    gap: 50px;
    width: max-content;
    align-items: flex-start;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    cursor: default;
}

.tech-img-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.tech-item span {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.tech-item:hover .tech-img-box {
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.15);
}

.tech-item:hover .tech-img-box img {
    filter: grayscale(0%);
    opacity: 1;
}

.tech-item:hover span {
    color: var(--accent-color);
}

.tech-wrapper:hover .tech-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .tech-ticker-section {
        padding: 50px 0;
    }

    .tech-track {
        gap: 50px;
    }

    .tech-item {
        width: 100px;
    }

    .tech-img-box {
        width: 100px;
        height: 100px;
    }

    .tech-item span {
        font-size: 1rem;
    }
}