﻿.empilhadores-page {
        width: 95%;
        max-width: 1200px;
        margin: 60px auto;
    }

    .empilhadores-hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #242424 55%, #3c3c3c 100%);
        color: #ffffff;
        border-radius: 18px;
        padding: 56px 48px;
        position: relative;
        overflow: hidden;
        margin-bottom: 40px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    }

    .empilhadores-hero::before,
    .empilhadores-hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 193, 7, 0.12);
    }

    .empilhadores-hero::before {
        width: 260px;
        height: 260px;
        top: -110px;
        right: -30px;
    }

    .empilhadores-hero::after {
        width: 180px;
        height: 180px;
        bottom: -70px;
        left: -20px;
    }

    .empilhadores-hero-content {
        position: relative;
        z-index: 1;
        max-width: 760px;
    }

    .empilhadores-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 193, 7, 0.16);
        color: #ffc107;
        padding: 10px 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .empilhadores-hero h1 {
        font-size: 44px;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .empilhadores-hero p {
        font-size: 18px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.82);
        max-width: 680px;
    }

    .empilhadores-intro {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 24px;
        margin-bottom: 36px;
    }

    .empilhadores-intro-card,
    .empilhadores-highlight-card {
        background: #f5f5f5;
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .empilhadores-intro-card h2,
    .empilhadores-highlight-card h2 {
        font-size: 24px;
        color: #1a1a1a;
        margin-bottom: 14px;
    }

    .empilhadores-intro-card p,
    .empilhadores-highlight-card p {
        color: #555555;
        line-height: 1.7;
        font-size: 16px;
    }

    .empilhadores-highlight-card ul {
        list-style: none;
        margin-top: 18px;
        display: grid;
        gap: 12px;
    }

    .empilhadores-highlight-card li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #333333;
        font-weight: 600;
    }

    .empilhadores-highlight-card li i {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 193, 7, 0.18);
        color: #ffc107;
    }

    .empilhadores-carousel-section {
        margin-bottom: 40px;
    }

    .empilhadores-section-header {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 20px;
        margin-bottom: 22px;
    }

    .empilhadores-section-header h2 {
        font-size: 30px;
        color: #1a1a1a;
        margin-bottom: 8px;
    }

    .empilhadores-section-header p {
        color: #666666;
        font-size: 16px;
    }

    .empilhadores-controls {
        display: flex;
        gap: 12px;
    }

    .empilhadores-control {
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;
        background: #1a1a1a;
        color: #ffffff;
        cursor: pointer;
        transition: 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    }

    .empilhadores-control:hover {
        background: #ffc107;
        color: #1a1a1a;
        transform: translateY(-2px);
    }

    .empilhadores-carousel {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 24px) / 2);
        gap: 24px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .empilhadores-carousel::-webkit-scrollbar {
        display: none;
    }

    .empilhador-card {
        background: #ffffff;
        border-radius: 18px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .empilhador-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 36px rgba(0, 0, 0, 0.14);
    }

    .empilhador-card-image {
        position: relative;
        height: 260px;
        overflow: hidden;
        background: linear-gradient(180deg, #f8f8f8 0%, #ececec 100%);
    }

    .empilhador-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .empilhador-card-tag {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(26, 26, 26, 0.82);
        color: #ffffff;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .empilhador-card-content {
        padding: 24px;
    }

    .empilhador-card-content h3 {
        color: #1a1a1a;
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .empilhador-card-content p {
        color: #666666;
        line-height: 1.7;
        font-size: 15px;
        margin-bottom: 18px;
        min-height: 78px;
    }

    .empilhador-card-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #1a1a1a;
        font-weight: 700;
    }

    .empilhador-card-link i {
        color: #ffc107;
    }

    .empilhadores-cta {
        background: #1a1a1a;
        border-radius: 18px;
        padding: 32px;
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
    }

    .empilhadores-cta h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .empilhadores-cta p {
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.7;
        max-width: 680px;
    }

    .empilhadores-cta a {
        background: #ffc107;
        color: #1a1a1a;
        text-decoration: none;
        padding: 15px 26px;
        border-radius: 10px;
        font-weight: 700;
        white-space: nowrap;
        transition: 0.3s ease;
    }

    .empilhadores-cta a:hover {
        background: #ffcf33;
        transform: translateY(-2px);
    }

    @media (max-width: 1024px) {
        .empilhadores-intro {
            grid-template-columns: 1fr;
        }

        .empilhadores-cta {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 768px) {
        .empilhadores-page {
            margin: 40px auto;
        }

        .empilhadores-hero {
            padding: 40px 24px;
        }

        .empilhadores-hero h1 {
            font-size: 34px;
        }

        .empilhadores-hero p {
            font-size: 16px;
        }

        .empilhadores-section-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .empilhadores-carousel {
            grid-auto-columns: 88%;
        }

        .empilhador-card-content p {
            min-height: auto;
        }
    }

