﻿/* ============================================
   HOME PAGE SPECIFIC STYLES
   Product card styles are in site.css

   TABLE OF CONTENTS:
   1. Common Utilities (Section Divider)
   2. Hero Grid Section
   3. Product Cards (Grid Items)
   4. Venn Diagram Section
   5. Nossa Seleção Section
   6. Advantages Section
   7. Trending Section
   8. Brands Carousel Section
   9. Recipe Carousel Section
   10. CTA Sections (View Products, Recipe CTA)
   11. Ver Mais Card
   12. Info Pages & Info Nav Cards
   ============================================ */

/* ============================================
   1. COMMON UTILITIES
   ============================================ */

/* Section Divider */
.section-divider {  
    position: relative;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, transparent 0%, #d4c4b0 10%, #8b6f47 50%, #d4c4b0 90%, transparent 100%);
}

/* ============================================
   12. INFO PAGES & INFO NAV CARDS
   ============================================ */

/* Info Nav Cards (Home Page) */
.info-nav-card {
    background: #fff;
    border: 1.5px solid #e8ddd3;
    border-radius: 5px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: #3d2b1a;
    position: relative;
}

.info-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(112, 85, 66, 0.15);
    border-color: #8b6f47;
}

.info-nav-card-highlight {
    background: linear-gradient(135deg, #fff8f2, #fff3e8);
    border-color: #d4a96a;
}

.info-nav-card-highlight:hover {
    border-color: #b5873a;
    box-shadow: 0 8px 24px rgba(180, 130, 50, 0.2);
}

.info-nav-icon { color: #8b6f47; margin-bottom: 0.25rem; }
.info-nav-card-highlight .info-nav-icon { color: #c47e20; }

.info-nav-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    color: #3d2b1a;
}

.info-nav-text {
    font-size: 0.82rem;
    color: #7a6355;
    margin: 0;
    flex-grow: 1;
}

.info-nav-arrow { color: #8b6f47; align-self: flex-end; }

/* Info Pages */
.info-page-header {
    text-align: center;
}

.info-page-header .breadcrumb {
    justify-content: center;
}

.info-page-hero {
    justify-content: center;
}

.info-page-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5ede4, #e8d5c0);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    flex-shrink: 0;
}

.leopoints-icon-wrap {
    background: linear-gradient(135deg, #fff8e1, #ffe082);
    color: #c47e20;
}

.info-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3d2b1a;
    margin: 0;
    line-height: 1.25;
}

.info-page-subtitle {
    font-size: 0.95rem;
    margin: 0.25rem 0 0;
}

.info-card {
    background: #fff;
    border: 1.5px solid #e8ddd3;
    border-radius: 5px;
    padding: 1.75rem;
    /*height: 100%;*/
}

.info-card-icon { color: #8b6f47; margin-bottom: 0.75rem; }

.info-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #3d2b1a;
    margin-bottom: 0.75rem;
}

.info-card-text {
    color: #5a4535;
    font-size: 0.92rem;
    line-height: 1.65;
}

.info-card-quote {
    border-left: 4px solid #8b6f47;
    padding: 0.75rem 1.25rem;
    margin: 1rem 0;
    background: #f8f3ee;
    border-radius: 0 5px 5px 0;
    color: #3d2b1a;
    font-style: italic;
    font-size: 0.97rem;
    font-weight: 600;
}

.info-card-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #fff8f0;
    border: 1px solid #f0c88a;
    border-radius: 5px;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    color: #5a4535;
    line-height: 1.55;
}

.info-card-alert svg { flex-shrink: 0; margin-top: 1px; color: #c47e20; }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #5a4535;
    font-size: 0.92rem;
}

.info-list li {
    padding: 0.35rem 0;
    border-bottom: 1px solid #f0e8e0;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.info-list li:last-child { border-bottom: none; }

.info-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #5a4535;
    font-size: 0.92rem;
}

.info-check-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-check-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.info-table { font-size: 0.9rem; }

.info-table thead th {
    background-color: #f5ede4;
    color: #3d2b1a;
    font-weight: 600;
    border-color: #e8ddd3;
}

.info-table td {
    color: #5a4535;
    border-color: #f0e8e0;
    vertical-align: middle;
}

.info-highlight-card {
    background: #fff;
    border: 1.5px solid #e8ddd3;
    border-radius: 5px;
    padding: 2rem 1.5rem;
    color: #8b6f47;
    height: 100%;
}

.info-highlight-card h5 { color: #3d2b1a; }
.info-highlight-card p { color: #7a6355; font-size: 0.9rem; }

.info-sidebar {
    background: #f8f3ee;
    border: 1.5px solid #e8ddd3;
    border-radius: 5px;
    padding: 1.25rem;
}

.info-sidebar-title {
    font-weight: 700;
    color: #3d2b1a;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-sidebar-links { list-style: none; padding: 0; margin: 0; }

.info-sidebar-links li { border-bottom: 1px solid #e8ddd3; }
.info-sidebar-links li:last-child { border-bottom: none; }

.info-sidebar-links a {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.25rem;
    color: #5a4535;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.info-sidebar-links a:hover { color: #8b6f47; }

.info-page-cta {
    background: linear-gradient(135deg, #f5ede4, #ede0d0);
    border-radius: 5px;
    padding: 2.5rem;
    text-align: center;
}

.info-page-cta h4 { font-weight: 700; color: #3d2b1a; }

/* LeoPoints Page */
.leopoints-banner {
    background: linear-gradient(135deg, #3d2b1a 0%, #705542 60%, #8b6f47 100%);
    border-radius: 5px;
    padding: 3rem 2.5rem;
    color: #fff;
}

.leopoints-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.4);
}

.leopoints-badge-sm {
    background: #f5ede4;
    color: #8b6f47;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 5px;
}

.leopoints-banner-title { font-size: 1.9rem; font-weight: 700; margin-bottom: 1rem; }
.leopoints-banner-text { font-size: 1rem; opacity: 0.9; max-width: 520px; }
.leopoints-trophy-display { opacity: 0.25; }

.leopoints-step {
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1.5px solid #e8ddd3;
    border-radius: 5px;
    height: 100%;
}

.leopoints-step-number {
    width: 36px;
    height: 36px;
    background: #8b6f47;
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 0 auto 1rem;
}

.leopoints-step-icon { color: #8b6f47; margin-bottom: 0.75rem; }
.leopoints-step-title { font-weight: 700; color: #3d2b1a; font-size: 1rem; margin-bottom: 0.4rem; }
.leopoints-step-text { font-size: 0.85rem; color: #7a6355; margin: 0; }

/* Buttons */
.btn-brown { background-color: #705542; color: #fff; border: none; }
.btn-brown:hover { background-color: #5a3f30; color: #fff; }
.btn-outline-brown { background-color: transparent; color: #705542; border: 1.5px solid #705542; }
.btn-outline-brown:hover { background-color: #705542; color: #fff; }


/* ============================================
   2. HERO GRID SECTION
   ============================================ */

/*
   Hero Grid - 4-card layout
   Card 1 (left, full height) | Card 4 (top-right)
                               | Card 2 | Card 3 (bottom-right)
*/
.hero-grid-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    height: 60vh;
    min-height: 360px;
    max-height: 640px;
    margin-bottom: 1rem;
}

.hero-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(112, 85, 66, 0.2);
    z-index: 10;
}

/* Card 1: Campanhas - full left column, spans all 3 rows */
.hero-card-1 {
    grid-column: 1;
    grid-row: 1 / 4;
}

/* Card 4: LeopoldoClick - right, row 1 */
.hero-card-4 {
    grid-column: 2;
    grid-row: 1;
}

/* Side cards: anchor fills grid item absolutely so height chain is reliable */
.hero-card-4 > a,
.hero-card-5 > a,
.hero-card-3 > a {
    position: absolute;
    inset: 0;
}

/* Card 5: Receitas - right, row 2 */
.hero-card-5 {
    grid-column: 2;
    grid-row: 2;
}

/* Card 3: Products - right, row 3 */
.hero-card-3 {
    grid-column: 2;
    grid-row: 3;
}

/* Carousel */
.box4-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.box4-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.box4-carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card 1 Video Carousel */
.card1-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.card1-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card1-carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.card1-carousel-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card1-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
    padding: 1.5rem;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.card1-carousel-dots {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.card1-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.card1-dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* Responsive */

@media (max-width: 991px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(280px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr);
        height: auto;
        max-height: none;
        min-height: unset;
    }

    .hero-card-1 { grid-column: 1; grid-row: 1; }
    .hero-card-4 { grid-column: 1; grid-row: 2; }
    .hero-card-5 { grid-column: 1; grid-row: 3; }
    .hero-card-3 { grid-column: 1; grid-row: 4; }

    /* Prevent product-card min-height from exceeding the grid row height */
    .hero-card-4 .product-card,
    .hero-card-5 .product-card,
    .hero-card-3 .product-card {
        min-height: unset;
        height: 100%;
    }
}

@media (max-width: 575px) {
    .hero-card-4,
    .hero-card-5,
    .hero-card-3 {
        min-height: 160px;
    }

    .hero-card-4 .product-card,
    .hero-card-5 .product-card,
    .hero-card-3 .product-card {
        min-height: unset;
    }
}

    /* ============================================
   3. PRODUCT CARDS (Grid Items)
   ============================================ */

.product-card {
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(112, 85, 66, 0.1);
    position: relative;
    border-radius: 5px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(112, 85, 66, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    box-shadow: 0 12px 35px rgba(112, 85, 66, 0.25);
    border-radius: 5px;
}

.product-card-img {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.95);
    border-radius: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card:hover .product-card-img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    transition: all 0.4s ease;
    z-index: 2;
    border-radius: 5px;
}

.product-card:hover .product-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.product-overlay-content {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease;
}

.product-card:hover .product-overlay-content {
    transform: translateX(4px);
}

/* Product Overlay Titles */
.product-overlay-title {
    font-size: 1.9rem;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    padding-bottom: 8px;
}

.product-overlay-title-small {
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    padding-bottom: 8px;
}

.product-overlay-title::before,
.product-overlay-title-small::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.product-overlay-title::after,
.product-overlay-title-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    border-radius: 5px;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-overlay-title::after,
.product-card:hover .product-overlay-title-small::after {
    width: 100%;
}

/* Product Overlay Description */
.product-overlay-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    opacity: 1;
    transform: translateY(0);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Smaller right-column cards: tighter bottom padding & smaller description */
.hero-card-4 .product-overlay,
.hero-card-5 .product-overlay,
.hero-card-3 .product-overlay {
    padding: 1.5rem;
    align-items: flex-end;
}

/* Side cards must never exceed their grid row — remove fixed min-height */
.hero-card-4 .product-card,
.hero-card-5 .product-card,
.hero-card-3 .product-card {
    min-height: unset;
}

.hero-card-4 .product-overlay-title,
.hero-card-5 .product-overlay-title,
.hero-card-3 .product-overlay-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.hero-card-4 .product-overlay-description,
.hero-card-5 .product-overlay-description,
.hero-card-3 .product-overlay-description {
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

/* Product Cards Responsive */
@media (max-width: 991px) {
    .hero-card-4 .product-overlay-title,
    .hero-card-5 .product-overlay-title,
    .hero-card-3 .product-overlay-title {
        font-size: 1.25rem;
        letter-spacing: 0.75px;
    }

    .hero-card-4 .product-overlay,
    .hero-card-5 .product-overlay,
    .hero-card-3 .product-overlay {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .product-overlay-title,
    .product-overlay-title-small {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .product-overlay {
        padding: 0.75rem;
    }

    .product-card:hover .product-overlay {
        padding-bottom: 1rem;
    }

    .product-overlay-description {
        font-size: 0.8rem;
    }

    .hero-card-4 .product-overlay-title,
    .hero-card-5 .product-overlay-title,
    .hero-card-3 .product-overlay-title {
        font-size: 1rem;
        letter-spacing: 0.75px;
    }

    .hero-card-4 .product-overlay-description,
    .hero-card-5 .product-overlay-description,
    .hero-card-3 .product-overlay-description {
        font-size: 0.75rem;
        margin-top: 0.15rem;
    }

    .hero-card-4 .product-overlay,
    .hero-card-5 .product-overlay,
    .hero-card-3 .product-overlay {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .product-overlay-title,
    .product-overlay-title-small {
        font-size: 0.95rem;
        letter-spacing: 0.75px;
    }

    .product-overlay-description {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }

    .hero-card-4 .product-overlay-title,
    .hero-card-5 .product-overlay-title,
    .hero-card-3 .product-overlay-title {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        padding-bottom: 10px;
    }

    .hero-card-4 .product-overlay-description,
    .hero-card-5 .product-overlay-description,
    .hero-card-3 .product-overlay-description {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }

    .hero-card-4 .product-overlay,
    .hero-card-5 .product-overlay,
    .hero-card-3 .product-overlay {
        padding: 0.6rem 0.75rem;
    }
}


/* ============================================
   4. VENN DIAGRAM SECTION
   ============================================ */

.venn-diagram-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 5 / 4;
}

.venn-diagram {
    width: 100%;
    height: 100%;
}

.venn-circle {
    opacity: 0.75;
    transition: all 0.4s ease;
    cursor: pointer;
}

.venn-circle-left {
    fill: #8b6f47;
}

.venn-circle-right {
    fill: #705542;
}

.venn-diagram:hover .venn-circle {
    opacity: 0.85;
}

.venn-circle:hover {
    opacity: 0.9;
    filter: brightness(1.1);
}

.venn-diagram:hover .venn-circle-left {
    transform: translateX(-5px);
}

.venn-diagram:hover .venn-circle-right {
    transform: translateX(5px);
}

/* Venn Logo Center */
.venn-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s ease;
}

.venn-diagram-container:hover .venn-logo-center {
    transform: translate(-50%, -50%) scale(1.1);
}

.venn-logo-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Venn Text */
.venn-text-simple {
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.venn-text-simple.zoom-active {
    transform: scale(1.08);
}

.venn-text-simple.zoom-active .venn-simple-title {
    color: #8b6f47;
}

.venn-text-simple.zoom-active .venn-simple-description {
    color: #705542;
    font-weight: 500;
}

.venn-simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #705542;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.venn-simple-description {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.8;
    max-width: 350px;
    font-style: italic;
}

/* Venn Diagram Responsive */
@media (max-width: 991px) {
    .venn-section {
        padding: 2rem 0;
    }
    
    .venn-diagram-container {
        max-width: 500px;
        margin-bottom: 2rem;
    }
    
    .venn-logo-center {
        width: 170px;
        height: 170px;
    }
    
    .venn-simple-title {
        font-size: 2rem;
    }
    
    .venn-simple-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .venn-diagram-container {
        max-width: 450px;
    }
    
    .venn-logo-center {
        width: 150px;
        height: 150px;
    }
    
    .venn-simple-title {
        font-size: 1.75rem;
    }
    
    .venn-simple-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .venn-section {
        padding: 1.5rem 0;
    }
    
    .venn-text-simple {
        padding: 1.5rem 0.5rem;
    }
    
    .venn-diagram-container {
        max-width: 350px;
    }
    
    .venn-logo-center {
        width: 120px;
        height: 120px;
    }
    
    .venn-simple-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .venn-simple-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}


/* ============================================
   5. NOSSA SELEÇÃO SECTION
   ============================================ */

.nossa-selecao-title {
    font-size: 2rem;
    font-weight: 700;
    color: #705542;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    justify-content: center;
    margin-bottom: 2.5rem !important;
    position: relative;
}

.nossa-selecao-title svg {
    color: #8b6f47;
}

@media (max-width: 991px) {
    .nossa-selecao-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nossa-selecao-title {
        font-size: 1.75rem;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    .nossa-selecao-title {
        font-size: 1.5rem;
    }
}


/* ============================================
   6. ADVANTAGES SECTION
   ============================================ */

.advantages-section {
    border-radius: 5px;
    padding: 2rem 1.5rem;
}

.advantages-logo {
    color: #705542;
}

.advantages-logo svg {
    color: #8b6f47;
    filter: drop-shadow(0 4px 8px rgba(112, 85, 66, 0.2));
}

.advantage-card {
    background: white;
    border-radius: 5px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f5f1ed;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(112, 85, 66, 0.15);
    border-color: #d4c4b0;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #705542 0%, #8b6f47 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.advantage-icon svg {
    color: #f4d9a6;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card .advantage-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #705542;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.advantage-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Advantages Responsive */
@media (min-width: 768px) {
    .advantages-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .advantages-logo {
        margin-bottom: 1.5rem;
    }

    .advantage-card {
        padding: 1rem 0.5rem;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-icon svg {
        width: 24px;
        height: 24px;
    }

    .advantage-card .advantage-title {
        font-size: 0.95rem;
    }

    .advantage-text {
        font-size: 0.8rem;
    }
}


/* ============================================
   7. TRENDING SECTION
   ============================================ */

.trending-title {
    font-size: 2rem;
    font-weight: 700;
    color: #705542;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    justify-content: center;
    margin-bottom: 2rem !important;
    font-style: italic;
}

.trending-title svg {
    color: #8b6f47;
}

.trending-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, transparent 0%, #d4c4b0 10%, #8b6f47 50%, #d4c4b0 90%, transparent 100%);
    transform: translateX(-50%);
    z-index: 0;
    padding: 0;
}

/* Trending List */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trending-list-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 0.75rem;
    border: 2px solid #f5f1ed;
    transition: all 0.3s ease;
}

.trending-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(112, 85, 66, 0.15);
    border-color: #d4c4b0;
}

.trending-list-item:hover .trending-list-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.trending-list-rank {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #705542 0%, #8b6f47 100%);
    border-radius: 5px;
    margin-right: 1rem;
}

.rank-number {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.trending-list-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #f5f1ed;
}

.trending-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-list-info {
    flex-grow: 1;
    min-width: 0;
}

.trending-list-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #705542;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trending-list-price {
    font-size: 1rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 0;
}

.trending-list-login {
    font-size: 0.8rem;
    color: #8b6f47;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.trending-list-login svg {
    flex-shrink: 0;
}

.trending-list-arrow {
    flex-shrink: 0;
    color: #8b6f47;
    transition: all 0.3s ease;
    opacity: 0.5;
    margin-left: 0.5rem;
}

/* Trending Responsive */
@media (min-width: 992px) {
    .row.position-relative > .col-lg-6:first-child {
        padding-right: 2rem;
    }

    .row.position-relative > .col-lg-6:last-child {
        padding-left: 2rem;
    }
}

@media (max-width: 767px) {
    .trending-list-rank {
        width: 35px;
        height: 35px;
        margin-right: 0.75rem;
    }

    .rank-number {
        font-size: 1rem;
    }

    .trending-list-image {
        width: 50px;
        height: 50px;
        margin-right: 0.75rem;
    }

    .trending-list-name {
        font-size: 0.85rem;
    }

    .trending-list-price {
        font-size: 0.9rem;
    }

    .trending-list-item {
        padding: 0.5rem;
    }
}


/* ============================================
   8. BRANDS CAROUSEL SECTION
   ============================================ */

.brands-section-full-width {
    width: 100%;
    padding: 2rem 0;
    margin: 2rem 0;
    position: relative;
}

.brands-carousel-container-full {
    padding: 5px;
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.brands-carousel-container-full::before,
.brands-carousel-container-full::after {
    display: none;
}

.brands-carousel {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.brands-carousel-container-full:hover .brands-carousel {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-slide {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0 1rem;
    background: white;
    border-radius: 5px;
    border: 2px solid #f5f1ed;
    transition: all 0.3s ease;
}

.brand-slide:hover {
    transform: translateY(-5px);
    border-color: #d4c4b0;
}

.brand-logo-rotate {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.brand-slide:hover .brand-logo-rotate {
    filter: grayscale(0%) opacity(1);
}

/* Brands Responsive */
@media (max-width: 768px) {
    .brands-carousel {
        animation-duration: 25s;
    }

    .brands-carousel-container-full {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .brand-slide {
        width: 150px;
        height: 100px;
        margin: 0 0.5rem;
    }

    .brand-logo-rotate {
        max-height: 60px;
    }
}


/* ============================================
   9. RECIPE GRID SECTION
   ============================================ */

.recipe-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    min-height: 500px;
    max-height: 550px;
}

.recipe-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.recipe-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(112, 85, 66, 0.2);
}

/* Tall card (spans 2 rows) */
.recipe-grid-item-tall {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

/* Recipe Card */
.recipe-grid-card {
    position: relative;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

/* Recipe Image - Full size with dark overlay and animation (HOME PAGE ONLY) */
.recipe-grid-container .recipe-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f5f1ed;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
    animation: slowZoom 12s ease-in-out infinite alternate;
}

.recipe-grid-container .recipe-grid-card:hover .recipe-grid-image {
    transform: scale(1.12);
    animation-play-state: paused;
}

/* Slow zoom and pan animation */
@keyframes slowZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(2%, -2%);
    }
    100% {
        transform: scale(1.05) translate(-2%, 1.5%);
    }
}

/* Top Info - Rank and Arrow Icon */
.recipe-top-info {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
}

.recipe-rank-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-rank-text::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../img/site/iconwhite.ico');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.recipe-arrow-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.recipe-grid-card:hover .recipe-arrow-icon {
    transform: translateX(5px);
}

/* Recipe Content - Overlay positioned at bottom without background */
.recipe-grid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: transparent;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.recipe-grid-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.15rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.recipe-grid-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipe-simple-text {
    font-size: 1.25rem;
    color: white;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.recipe-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border: 1.5px solid #f4d9a6;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    background: transparent;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.recipe-pill svg {
    vertical-align: middle;
    color: #f4d9a6;
    fill: #f4d9a6;
}

/* See More Card with Video Background */
.recipe-grid-see-more {
    border-radius: 5px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recipe-see-more-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 5px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-grid-item-tall:hover .recipe-see-more-video {
    transform: scale(1.08);
}

.recipe-see-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    border-radius: 5px;
    transition: background 0.4s ease;
}

.recipe-grid-item-tall:hover .recipe-see-more-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.recipe-see-more-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: white;
    height: 100%;
}

.recipe-see-more-content svg {
    color: white;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.recipe-grid-see-more-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.recipe-grid-see-more-text {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
}

.recipe-grid-see-more-arrow {
    margin-top: 1.5rem;
    transition: transform 0.3s ease;
}

.recipe-grid-item-tall:hover .recipe-grid-see-more-arrow {
    transform: translateX(10px);
}

/* Recipe Grid Responsive */
@media (max-width: 1200px) {
    .recipe-grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .recipe-grid-item-tall {
        grid-column: 3 / 4;
        grid-row: 1 / 4;
    }

    .recipe-grid-item:nth-child(7) {
        display: none;
    }
}

@media (max-width: 768px) {
    .recipe-grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
        min-height: auto;
    }

    .recipe-grid-item-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .recipe-top-info {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }

    .recipe-rank-text {
        font-size: 1.5rem;
    }

    .recipe-rank-text::before {
        width: 20px;
        height: 20px;
    }

    .recipe-arrow-icon {
        width: 20px;
        height: 20px;
    }

    .recipe-grid-content {
        padding: 1rem;
    }

    .recipe-grid-title {
        font-size: 1.5rem;
    }

    .recipe-simple-text {
        font-size: 1.25rem;
    }

    .recipe-grid-see-more {
        padding: 1.5rem;
    }

    .recipe-grid-see-more svg {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .recipe-grid-see-more-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .recipe-grid-see-more-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .recipe-grid-container {
        grid-template-columns: 1fr;
    }

    .recipe-grid-item-tall .recipe-grid-see-more {
        min-height: 300px;
    }
}


/* ============================================
   9b. RECIPE HOME CARD (product-card style)
   ============================================ */

.recipe-home-card {
    background: white;
    border-radius: 5px;
    border: 2.5px solid #d4c4b0;
    padding: 0.85rem 0.75rem 0.65rem 0.75rem;
    box-shadow: 0 2px 8px rgba(112, 85, 66, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.recipe-home-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(112, 85, 66, 0.15);
    border-color: #c9b89a;
}

/* Name on top */
.recipe-home-title {
    font-size: 1rem;
    font-weight: 700;
    color: #705542;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2;
    min-height: 2em;
}

/* Image */
.recipe-home-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    overflow: hidden;
    background: #f5f1ed;
    border: 2px solid #e8e0d5;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.recipe-home-card:hover .recipe-home-img-wrapper {
    border-color: #d4c4b0;
}

.recipe-home-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.recipe-home-card:hover .recipe-home-img {
    transform: scale(1.05);
}

/* Description */
.recipe-home-description {
    font-size: 0.72rem;
    color: #8b6f47;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 0.45rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-shrink: 0;
}

/* Badges row */
.recipe-home-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

/* Override recipe-pill to brown border for product card context */
.recipe-home-card .recipe-pill {
    border-color: #d4c4b0;
    color: #705542;
    font-size: 0.68rem;
    background: #faf7f4;
    text-shadow: none;
}

.recipe-home-card .recipe-pill svg {
    color: #8b6f47;
    fill: #8b6f47;
}

/* Hashtags */
.recipe-home-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.recipe-home-tag {
    font-size: 0.65rem;
    color: #8b6f47;
    font-style: italic;
}

/* Button — matches product-grid-btn */
.recipe-home-btn {
    background: linear-gradient(135deg, #705542 0%, #8b6f47 100%);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.38rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.recipe-home-btn:hover {
    background: linear-gradient(135deg, #8b6f47 0%, #705542 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 85, 66, 0.25);
    color: white;
    text-decoration: none;
}

/* Outline white button — used on dark video banners */
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}


/* ============================================
   10. CTA SECTIONS
   ============================================ */

/* View All Products CTA */
.view-products-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-image: linear-gradient(135deg, rgba(112, 85, 66, 0.5) 0%, rgba(139, 111, 71, 0.5) 100%), 
                      url('../img/site/productsmore.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(112, 85, 66, 0.25);
    position: relative;
    overflow: hidden;
}

.view-products-cta svg:first-child {
    color: #f4d9a6;
}

.view-products-cta h2 {
    color: white;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.view-products-cta p {
    color: #f4d9a6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.view-products-cta .btn-brown {
    background: white;
    color: #705542;
    border: 2px solid white;
}

.view-products-cta .btn-brown:hover {
    background: #f4d9a6;
    color: #705542;
    border-color: #f4d9a6;
}

@media (max-width: 768px) {
    .view-products-cta {
        padding: 3rem 1.5rem;
        background-position: center center;
    }

    .view-products-cta h2 {
        font-size: 1.5rem;
    }

    .view-products-cta svg:first-child {
        width: 36px;
        height: 36px;
    }
}

/* Recipe CTA Card */
.recipe-cta-card {
    background: linear-gradient(135deg, #f5f1ed 0%, #e8e0d5 100%);
    border-radius: 5px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid #d4c4b0;
}

.recipe-cta-content svg {
    color: #8b6f47;
    filter: drop-shadow(0 4px 8px rgba(112, 85, 66, 0.2));
}

.recipe-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #705542;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.recipe-cta-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn-brown.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .recipe-cta-title {
        font-size: 2rem;
    }

    .recipe-cta-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 767px) {
    .recipe-cta-title {
        font-size: 1.5rem;
    }

    .recipe-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .recipe-cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .recipe-cta-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Training Banner Card */
.training-banner-card {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(112, 85, 66, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(112, 85, 66, 0.4);
}

.training-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 5px;
}

.training-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    border-radius: 5px;
    transition: background 0.4s ease;
}

.training-banner-card:hover .training-banner-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.training-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.training-banner-content svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.training-banner-title {
    font-size: 2rem;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.training-banner-text {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.training-banner-card .btn-light {
    background: white;
    color: #705542;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.training-banner-card .btn-light:hover {
    background: #f4d9a6;
    color: #705542;
    border-color: #f4d9a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .training-banner-card {
        min-height: 280px;
    }

    .training-banner-title {
        font-size: 1.5rem;
    }

    .training-banner-text {
        font-size: 1rem;
    }

    .training-banner-content {
        padding: 2rem 1.5rem;
    }

    .training-banner-content svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .training-banner-card {
        min-height: 250px;
    }

    .training-banner-title {
        font-size: 1.25rem;
    }

    .training-banner-text {
        font-size: 0.9rem;
    }

    .training-banner-content {
        padding: 1.5rem 1rem;
    }
}


/* ============================================
   11. VER MAIS CARD
   ============================================ */

.ver-mais-card {
    background: linear-gradient(135deg, #705542 0%, #8b6f47 100%);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 2.5px solid #8b6f47;
    aspect-ratio: 0.68 / 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(112, 85, 66, 0.1);
    padding: 0.85rem 0.75rem 0.65rem 0.75rem;
}

.ver-mais-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(112, 85, 66, 0.12);
    border-color: #705542;
}

.ver-mais-content {
    text-align: center;
    color: white;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ver-mais-content svg {
    color: #f4d9a6;
    transition: transform 0.3s ease;
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
}

.ver-mais-content h5 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ver-mais-content p {
    color: #f4d9a6;
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.3;
    opacity: 0.9;
}

.ver-mais-card:hover .ver-mais-content svg {
    transform: rotate(90deg) scale(1.1);
}

/* Ver Mais Responsive */
@media (max-width: 767px) {
    .ver-mais-content svg {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }
    
    .ver-mais-content h5 {
        font-size: 0.85rem;
    }
    
    .ver-mais-content p {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .ver-mais-content svg {
        width: 28px;
        height: 28px;
        margin-bottom: 0.4rem;
    }
    
    .ver-mais-content h5 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .ver-mais-content p {
        font-size: 0.6rem;
    }
}

