:root {
    --brand-green: #2E7D32;
    --brand-dark-green: #1b5e20;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
}

.ingredientes-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--brand-green);
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.product-carousel-block {
    margin-bottom: 80px;
}

.product-subtitle {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 5px solid var(--brand-green);
}

.swiper-wrapper {
    align-items: stretch !important;
}

.swiper-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}

.ingredient-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--brand-green);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 500px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.25);
}

.ingredient-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid var(--brand-green);
}

.ingredient-card h4 {
    font-size: 1.4rem;
    color: var(--brand-green);
    margin: 20px 20px 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ingredient-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 20px 30px;
    flex-grow: 1;
}

.swiper {
    padding: 20px 10px 50px !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--brand-green) !important;
    background: rgba(255,255,255,0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--brand-green) !important;
}