/* Product Hero Section */
.product-hero {
    padding: 160px 0 100px;
    background: var(--product-hero-background);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: 
         linear-gradient(120deg, transparent 45%, rgba(255, 200, 0, 0.03) 45%, rgba(255, 200, 0, 0.03) 55%, transparent 55%),
        linear-gradient(-120deg, transparent 45%, rgba(222, 39, 31, 0.03) 45%, rgba(222, 39, 31, 0.03) 55%, transparent 55%); */
        /*linear-gradient(120deg, transparent 45%, var(--product-color) 45%, var(--product-color) 55%, transparent 55%),
        linear-gradient(-120deg, transparent 45%, var(--product-color) 45%, var(--product-color) 55%, transparent 55%);*/
    background-size: 60px 60px;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffc800' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.4s;
    justify-content: flex-start;
    align-items: center;
}

.meta-item {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.meta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(222, 39, 31, 0.05);
}

.meta-item i {
    color: var(--product-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(222, 39, 31, 0.2));
}

.meta-item:hover i {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 4px 8px rgba(222, 39, 31, 0.3));
}

.meta-item span {
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
}

.breadcrumb {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: var(--product-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--neutral-black);
}

.breadcrumb-item {
    font-size: 1rem;
    color: var(--neutral-black);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(29, 29, 27, 0.5);
    margin: 0 0.5rem;
}

.product-info {
    background: var(--neutral-white);
    border-radius: 16px;
    padding: 24px;
    gap: 27px;
    /* Desktop */
    max-width: 600px; /* Ou 640px, 720px... depende do seu layout */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    /* Altura padrão no desktop */
    height: 470px; /* defina o que for ideal para o seu layout */
}

.product-info h1 {
    font-size: 3.5rem;
    color: var(--neutral-black);
    margin-bottom: 2rem;
    line-height: 1.2;
    /* font-family: 'Anek Latin', sans-serif; */
}

.product-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #5B6152;
    margin-bottom: 3rem;
}

.product-image {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.1), transparent);
    border-radius: 30px;
}

.product-image img {
    width: 100%;
    height: auto;
    transform: scale(1.1);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff, rgba(255, 200, 0, 0.05));
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 200, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 200, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--product-hero-background);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    transform: rotate(0deg);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.05);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--neutral-black);
    margin-bottom: 1rem;
    /* font-family: 'Anek Latin', sans-serif; */
}

.benefit-card p {
    color: rgba(29, 29, 27, 0.75);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

/* Nutrition Section */
.nutrition-section {
    padding: 100px 0;
    background: white;
}

.nutrition-table {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.nutrition-table table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table th,
.nutrition-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.nutrition-table th {
    font-weight: 700;
    color: var(--neutral-black);
    font-size: 1.1rem;
}

.nutrition-table td {
    color: rgba(29, 29, 27, 0.75);
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

.nutrition-info {
    font-size: 0.9rem;
    color: rgba(29, 29, 27, 0.5);
    margin-top: 2rem;
}

/* Recipes Section */
.product-recipes {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff, rgba(255, 200, 0, 0.05));
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: scale(1.1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-hero {
        padding: 120px 0 60px;
    }

    .product-info h1 {
        font-size: 2.5rem;
    }

    /*.product-image {
        margin-top: 2rem;
        padding: 1.5rem;
    }*/

    .product-image img {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .product-info h1 {
        font-size: 2rem;
    }

    .product-description {
        font-size: 1.1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .nutrition-table {
        padding: 1.5rem;
    }

    .nutrition-table th,
    .nutrition-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .product-info {
        height: auto;
        min-height: auto;
        padding: 16px;
    }
}