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

    .embaladores-intro {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }

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

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

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

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

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

    .embaladores-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;
    }

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

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

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

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

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

    .embaladores-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);
    }

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

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

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

    .embaladora-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;
    }

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

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

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

    .embaladora-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;
    }

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

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

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

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

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

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

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

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

    .embaladores-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;
    }

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

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

        .embaladores-carousel {
            grid-auto-columns: calc((100% - 24px) / 2);
        }

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

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

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

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

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

