:root {
    --primary-red: #de271f;
    --primary-red-dark: #a40d1c;
    --primary-beige: #cab489;
    --secondary-gold: #998542;
    --neutral-black: #1d1d1b;
    --neutral-white: #ffffff;
    --header-height: 80px;
    --container-max-width: 1400px;
}

/* Typography */
body {
    font-family: 'Anek Latin', sans-serif;
    color: var(--neutral-black);
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/*@font-face {
    font-family: 'CoreRhino';
    src: url('/assets/fonts/S-Core\ -\ CoreRhino85Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}*/

/*h1, h2, h3, h4, h5, h6 {
    font-family: 'CoreRhino', sans-serif;
}*/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anek Latin', sans-serif;
}

/* Modern Enhanced Navbar */
.navbar {
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: var(--container-max-width);
    z-index: 1000;
    background: transparent !important;
}

    .navbar .container {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 100px;
        padding: 1rem 1.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar.scrolled {
        top: 1rem;
    }

        .navbar.scrolled .container {
            background: var(--primary-red);
            border-color: transparent;
        }

        .navbar.scrolled .nav-link,
        .navbar.scrolled .category-label,
        .navbar.scrolled .mobile-actions button {
            color: var(--neutral-white) !important;
        }

        .navbar.scrolled .category-label {
            color: var(--primary-beige) !important;
        }

        .navbar.scrolled .nav-link:hover {
            color: var(--primary-beige) !important;
            background: rgba(255, 255, 255, 0.1);
        }

        .navbar.scrolled .search-input {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

            .navbar.scrolled .search-input::placeholder {
                color: rgba(255, 255, 255, 0.7);
            }

        .navbar.scrolled .search-icon {
            color: rgba(255, 255, 255, 0.7);
        }

.navbar-brand {
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

    .navbar-brand:hover {
        transform: translateY(-2px);
    }

    .navbar-brand .logo-default,
    .navbar-brand .logo-scrolled {
        transition: opacity 0.3s ease;
    }

    .navbar-brand .logo-scrolled {
        position: absolute;
        opacity: 0;
    }

.navbar.scrolled .navbar-brand .logo-default {
    opacity: 0;
}

.navbar.scrolled .navbar-brand .logo-scrolled {
    opacity: 1;
}

.nav-item {
    position: relative;
    margin: 0 0.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--neutral-black) !important;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border-radius: 100px;
}

    .nav-link:hover {
        color: var(--primary-red) !important;
        background: rgba(222, 39, 31, 0.05);
        transform: translateY(-1px);
    }

/* Dropdown Menu */
.dropdown-menu {
    padding: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform-origin: top center;
    animation: dropdownFade 0.3s ease forwards;
}

.category-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--neutral-black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

    .dropdown-item:hover {
        background: linear-gradient(135deg, rgba(222, 39, 31, 0.08), rgba(202, 180, 137, 0.08));
        color: var(--primary-red);
        transform: translateX(5px);
    }

    .dropdown-item i {
        color: var(--primary-red);
        font-size: 1.25rem;
    }

.dropdown-divider {
    margin: 0.75rem 0;
    border-color: rgba(0, 0, 0, 0.05);
}

/* Mobile Actions */
.mobile-actions button {
    background: none;
    border: none;
    padding: 0.75rem;
    color: var(--neutral-black);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
}

    .mobile-actions button:hover {
        background: rgba(222, 39, 31, 0.05);
        color: var(--primary-red);
    }

.navbar-toggler {
    border: none !important;
    padding: 0 !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

/* Mobile Search */
.mobile-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--neutral-white);
    padding: 1.25rem;
    z-index: 1100;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

    .mobile-search.active {
        transform: translateY(0);
    }

.search-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--neutral-black);
    font-size: 1.25rem;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
}

    .search-close:hover {
        background: rgba(222, 39, 31, 0.05);
        color: var(--primary-red);
    }

/* Search Bar */
.search-container {
    position: relative;
    margin-left: 1.5rem;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-input {
    width: 240px;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
}

.navbar .search-input:focus {
    width: 320px;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(222, 39, 31, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-black);
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.search-input:focus + .search-icon {
    color: var(--primary-red);
    opacity: 1;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /*background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(202, 180, 137, 0.2) ), var(--home-banner-hero) center center /cover;*/
    background: linear-gradient(135deg, rgba(255,255,255,0), rgba(202, 180, 137, 0) ), var(--home-banner-hero) center center /cover;
    padding: 0;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, var(--primary-red) 0%, transparent 70%);
        opacity: 0.05;
        pointer-events: none;
    }

    .hero-section h1 {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        /*background: linear-gradient(135deg, var(--neutral-black), var(--primary-red));*/
        background-color: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: slideUp 0.8s ease forwards;
    }

    .hero-section p {
        font-size: 1.5rem;
        line-height: 1.6;
        /*color: rgba(29, 29, 27, 0.85);*/
        color: white;
        margin-bottom: 2.5rem;
        animation: slideUp 0.8s ease forwards 0.2s;
    }

    .hero-section .btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        animation: slideUp 0.8s ease forwards 0.4s;
        color: var(--primary-red);
    }

.about-info {
    background: var(--neutral-white);
    border-radius: 16px;
    padding: 24px;
    gap: 27px;
    /*width: 50%;*/
}


/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, rgba(202, 180, 137, 0.1) 100%);
}

.about-shape-1 {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(222, 39, 31, 0.03) 0%, rgba(222, 39, 31, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.about-shape-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 180, 137, 0.05) 0%, rgba(202, 180, 137, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 5.5rem;
    background: var(--primary-red);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transform: translateY(-10px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
    box-shadow: 0 4px 15px rgba(222, 39, 31, 0.2);
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--neutral-black);
    transform: translateY(-10px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.2s;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.section-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(29, 29, 27, 0.8);
    margin-bottom: 3rem;
    transform: translateY(-10px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.4s;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

    .stats-grid::before {
        content: '';
        position: absolute;
        top: -2rem;
        left: -2rem;
        right: -2rem;
        bottom: -2rem;
        background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
        border-radius: 30px;
        z-index: -1;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        box-shadow: 8px 9px 15px rgba(0, 0, 0, 0.05);
    }

.stat-item {
    text-align: center;
    transform: translateY(-10px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.6s;
    /*padding: 1.5rem;*/
    position: relative;
}

    .stat-item::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
    }

    .stat-item:last-child::after {
        display: none;
    }

.stat-number {
    font-family: 'Anek Latin', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-red), #ff4b44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-black);
    line-height: 1.4;
    position: relative;
}

.about-image-grid {
    position: relative;
    margin: 0 0 0 3rem;
}

.image-container {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image {
    transform: translateX(30px);
    opacity: 0;
    animation: slideLeft 0.8s ease forwards 0.4s;
    position: relative;
    z-index: 2;
}

    .main-image img {
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        transition: transform 0.5s ease;
        border-radius: 24px;
    }

    .main-image:hover img {
        transform: scale(1.02);
    }

.accent-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    transform: translateX(-30px);
    opacity: 0;
    animation: slideRight 0.8s ease forwards 0.6s;
    z-index: 1;
}

    .accent-image img {
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-radius: 24px;
    }

.floating-badge {
    position: absolute;
    top: 2rem;
    right: 0;
    background: var(--neutral-white);
    padding: 1.25rem 2rem;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(20px);
    opacity: 0;
    animation: slideDown 0.6s ease forwards 0.8s;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .floating-badge i {
        color: var(--primary-red);
        font-size: 1.75rem;
    }

    .floating-badge span {
        font-weight: 700;
        color: var(--neutral-black);
        font-size: 1rem;
    }

/* Products Section */
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, rgba(202, 180, 137, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

    .products-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, var(--primary-red) 0%, transparent 70%);
        opacity: 0.03;
        pointer-events: none;
    }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.product-tab {
    background: transparent;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-black);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .product-tab::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(222, 39, 31, 0.1);
        border-radius: inherit;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-tab:hover::before,
    .product-tab.active::before {
        opacity: 1;
    }

    .product-tab.active {
        background: var(--primary-red);
        color: var(--neutral-white);
        box-shadow: 0 10px 20px rgba(222, 39, 31, 0.2);
    }

    .product-tab i {
        margin-right: 0.75rem;
        font-size: 1.25rem;
        vertical-align: middle;
    }

.product-category {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

    .product-category.active {
        display: block;
    }

.product-card {
    background: var(--neutral-white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--product-badge), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

        .product-card:hover::before {
            opacity: 1;
        }

    .product-card.horizontal {
        display: flex;
        align-items: stretch;
    }

        .product-card.horizontal .product-image {
            flex: 0 0 45%;
            max-width: 45%;
        }

    .product-card .product-image {
        position: relative;
        padding-top: 100%;
        overflow: hidden;
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    }

.product-card .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--product-color);
    color: var(--neutral-white);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(222, 39, 31, 0.25);
}

.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

    .product-content h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var(--neutral-black);
        position: relative;
    }

        .product-content h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -0.5rem;
            width: 40px;
            height: 3px;
            /* background: var(--primary-red); */
            background: var(--product-color);
            border-radius: 3px;
            transition: width 0.3s ease;
        }

.product-card:hover .product-content h4::after {
    width: 60px;
}

.product-content p {
    font-size: 1.05rem;
    color: rgba(29, 29, 27, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-content .btn {
    align-self: flex-start;
    padding: 0.875rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--product-color);
    border: 2px solid var(--product-color);
    border-radius: 100px;
}


.product-card .btn-outline-primary {
    color: var(--product-color) !important;
    border: 2px solid var(--product-color) !important;
}

    .product-card .btn-outline-primary:hover {
        background: var(--product-color) !important;
        color: var(--neutral-white) !important;
    }



.product-content .btn:hover {
    background: var(--product-color);
    color: var(--neutral-white);
    transform: translateY(-2px);
}

.product-content .btn i {
    transition: transform 0.3s ease;
}

.product-content .btn:hover i {
    transform: translateX(4px);
}

/* Business Section */
.business-section {
    padding: 120px 0;
    /*background: var(--secondary-gold);*/
    /*background: var(--business-section-banner);*/
    background: linear-gradient(135deg, rgba(255,255,255,0), rgba(202, 180, 137, 0) ), var(--business-section-banner) right center /cover;
    position: relative;
    overflow: hidden;
}

.business-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/bg-empresas.webp') center/cover;
    mix-blend-mode: multiply;
}

.business-content {
    position: relative;
    z-index: 2;
}

.business-section .section-badge {
    background: var(--neutral-white);
    color: var(--secondary-gold);
}

.business-section .section-title {
    color: var(--neutral-white);
}

.business-section .section-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 75%;
}

.business-card {
    background: var(--neutral-white);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border-top: 6px solid #978441
}

    .business-card:hover {
        transform: translateY(-10px);
        background: var(--neutral-white);
    }

    .business-card.highlight {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
        animation: pulse 2s ease-out;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.business-card-icon i {
    font-size: 2.5rem;
    color: var(--neutral-white);
    margin-bottom: 1.5rem;
    background: var(--secondary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-card i {
    font-size: 2.5rem;
    color: var(--neutral-white);
    margin-bottom: 1.5rem;
}

.business-card h3 {
    color: #5B6152;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.business-card p {
    color: #5B6152;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 80px;
}

.business-card .btn {
    color: var(--secondary-gold);
    background: var(--neutral-white);
    border-color: var(--secondary-gold);
    padding: 1rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border-radius: 100px;
}

    .business-card .btn:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .business-card .btn i {
        font-size: 1.25rem;
        margin: 0;
        color: var(--secondary-gold);
    }

.business-image {
    position: relative;
    padding: 2rem;
}

    .business-image img {
        border-radius: 24px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        transition: transform 0.6s ease;
    }

    .business-image:hover img {
        transform: scale(1.02);
    }

.business-badge {
    position: absolute;
    bottom: 4rem;
    right: 0;
    background: var(--neutral-white);
    padding: 1.5rem;
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.badge-icon {
    background: var(--secondary-gold);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .badge-icon i {
        color: var(--neutral-white);
        font-size: 1.75rem;
    }

.badge-content {
    flex: 1;
}

.badge-title {
    display: block;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .badge-list li {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--neutral-black);
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }

        .badge-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--secondary-gold);
            border-radius: 50%;
        }

/* Recipes Section */
.recipes-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, rgba(222, 39, 31, 0.05));
    position: relative;
    overflow: hidden;
}

    .recipes-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, var(--primary-red) 0%, transparent 70%);
        opacity: 0.03;
        pointer-events: none;
    }

/* Recipe Search */
.recipes-search {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.recipes-section-btn {
    color: var(--secondary-gold);
    background: var(--neutral-white);
    border-color: var(--secondary-gold);
    padding: 1rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border-radius: 100px;
}

.search-wrapper {
    position: relative;
    background: var(--neutral-white);
    border-radius: 100px;
    padding: 0.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transform: translateY(-10px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.2s;
}

.recipe-search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: transparent;
    color: var(--neutral-black);
}

    .recipe-search-input:focus {
        outline: none;
    }

    .recipe-search-input::placeholder {
        color: rgba(29, 29, 27, 0.5);
    }

.search-btn {
    background: var(--primary-red);
    border: none;
    color: var(--neutral-white);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .search-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(222, 39, 31, 0.2);
    }

    .search-btn i {
        font-size: 1.25rem;
    }

/* Recipe Categories */
.recipe-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    transform: translateY(-10px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.4s;
}

.category-btn {
    background: var(--neutral-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    color: var(--neutral-black);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

    .category-btn i {
        font-size: 1.25rem;
        color: var(--primary-red);
    }

    .category-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .category-btn.active {
        background: var(--primary-red);
        color: var(--neutral-white);
    }

        .category-btn.active i {
            color: var(--neutral-white);
        }

/* Recipe Grid */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recipe-card {
    background: var(--neutral-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.6s;
}

    .recipe-card.visible {
        display: block;
    }


.recipe-rating {
    color: #de271f;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.recipe-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-image .recipe-product {
    position: absolute;
    width: 250px;
    bottom: 0;
    background: var(--neutral-white);
    display: flex;
    padding: 15px 25px 0px 15px;
    align-items: center;
    gap: 13px;
    bottom: 25px;
    left: -15%;
    border-radius: 16px;
    border: 5px solid var(--recipe-banner-hero);
}

    .recipe-image .recipe-product img {
        width: 96px;
        height: 134px;
        object-fit: cover;
    }

    .recipe-image .recipe-product .recipe-product-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

.recipe-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.recipe-time,
.recipe-difficulty {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .recipe-time i,
    .recipe-difficulty i {
        color: var(--primary-red);
        font-size: 1.1rem;
    }

.recipe-content {
    padding: 2rem;
}

    .recipe-content h3 {
        font-size: 1.5rem;
        color: var(--neutral-black);
        margin-bottom: 1rem;
        line-height: 1.3;
        min-height: 93px;
    }

    .recipe-content p {
        color: rgba(29, 29, 27, 0.75);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

.recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recipe-category {
    background: rgba(222, 39, 31, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
}

.recipe-save {
    background: none;
    border: none;
    color: var(--neutral-black);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 100px;
}

    .recipe-save:hover {
        color: var(--primary-red);
        background: rgba(222, 39, 31, 0.1);
    }

.load-more {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 0.8s;
}

    .load-more i {
        transition: transform 0.3s ease;
    }

    .load-more:hover i {
        transform: rotate(180deg);
    }

/* Recicla Section */
.recicla-section {
    padding: 80px 0;
    background: #FDFDED;
    position: relative;
    overflow: hidden;
}

/*.recicla-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
}*/

.recicla-title {
    color: #00683B;
    font-size: 3rem;
}

/*.recicla-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}*/


.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.08);
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(76, 175, 80, 0.12);
    }

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transform: rotate(0deg);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(10deg) scale(1.05);
}

.stat-info h3 {
    color: #2E7D32;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: 'Anek Latin', sans-serif;
}

.stat-info p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.recicla-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.15);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .recicla-cta:hover {
        background: #2E7D32;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(76, 175, 80, 0.2);
        color: white;
    }

    .recicla-cta i {
        transition: transform 0.3s ease;
    }

    .recicla-cta:hover i {
        transform: translateX(5px);
    }


@media (max-width: 992px) {
    /*.stats-container {
        grid-template-columns: 1fr;
    }*/

    .recicla-title {
        font-size: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        padding: 0;
    }

        .navbar .container {
            border-radius: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 1rem;
        }

        .navbar.scrolled {
            top: 0;
        }

    .mobile-actions {
        display: flex !important;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--neutral-black) !important;
    }

    .search-container {
        display: none;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-text {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-image-grid {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .accent-image {
        display: none;
    }

    .floating-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .product-card.horizontal {
        flex-direction: column;
    }

        .product-card.horizontal .product-image {
            flex: 0 0 100%;
            max-width: 100%;
            padding-top: 75%;
        }

    .business-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-image {
        margin-top: 4rem;
    }

    .business-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        max-width: 100%;
    }

    .recipes-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .recipe-categories {
        gap: 0.75rem;
    }

    .category-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {

    .business-cards {
        width: 100%;
    }

    .recipe-image .recipe-product {
        position: absolute;
        width: 250px;
        bottom: 0;
        background: var(--neutral-white);
        display: flex;
        padding: 15px 25px 0px 15px;
        align-items: center;
        gap: 13px;
        bottom: -25%;
        left: 20%;
        border-radius: 16px;
        border: 5px solid var(--recipe-banner-hero);
    }

    .navbar.scrolled .navbar-collapse {
        background: var(--primary-red-dark);
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-item::after {
        display: none;
    }

    .about-image-grid {
        padding: 1rem;
    }

    .product-tab {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-section {
        padding: 120px 0 60px;
        background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(202, 180, 137, 0.2) ), var(--home-banner-mobile-hero) right center /cover;
    }

        .hero-section h1 {
            font-size: 2.5rem;
        }

        .hero-section p {
            font-size: 1.1rem;
        }

        .hero-section .btn {
            width: 100%;
            margin-bottom: 1rem;
        }

    .recipes-grid {
        grid-template-columns: 1fr;
    }

    .recipe-categories {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Utility Classes */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #c61f18;
        border-color: #c61f18;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(222, 39, 31, 0.2);
    }

.btn-outline-primary {
    color: var(--primary-red);
    border-color: var(--primary-red);
    border-radius: 100px;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: var(--primary-red);
        border-color: var(--primary-red);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(222, 39, 31, 0.2);
    }

.ph {
    font-size: 1.25rem;
    vertical-align: middle;
}

/* Footer */
.footer {
    /*background: var(--neutral-black);*/
    background: var(--primary-red-dark);
    padding: 100px 0 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .footer::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to top, rgba(222, 39, 31, 0.05), transparent);
        pointer-events: none;
        z-index: 1;
    }

.footer-logo {
    margin-bottom: 2.5rem;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
}

    .footer-logo:hover {
        transform: translateY(-2px);
    }

    .footer-logo::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--primary-red);
        border-radius: 3px;
        transition: width 0.3s ease;
    }

    .footer-logo:hover::after {
        width: 60px;
    }

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

    .footer-nav li {
        margin-bottom: 1.25rem;
    }

    .footer-nav a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        display: inline-block;
        padding-left: 0;
        position: relative;
    }

        .footer-nav a:hover {
            color: white;
            padding-left: 1rem;
        }

        .footer-nav a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%) scaleX(0);
            width: 8px;
            height: 2px;
            background: var(--primary-red);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .footer-nav a:hover::before {
            transform: translateY(-50%) scaleX(1);
        }

.consumer-support {
    /*background: rgba(255, 255, 255, 0.03);*/
    background: var(--primary-red);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

    .consumer-support:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }

.support-title {
    /*color: var(--primary-red);*/
    color: var(--neutral-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

    .support-title i {
        font-size: 1.75rem;
    }

.support-info {
    margin-bottom: 1rem;
}

.support-phone {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-beige);
    margin-bottom: 0.5rem;
    display: block;
}

.support-whatsapp {
    color: #00E676;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

    .support-whatsapp:hover {
        color: #00E676;
        transform: translateX(5px);
    }

.support-hours {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .social-link:hover {
        transform: translateY(-2px);
        color: white;
    }

    .social-link.facebook:hover {
        background: #1877f2;
    }

    .social-link.instagram:hover {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .social-link.tiktok:hover {
        background: #000;
    }

    .social-link.youtube:hover {
        background: #ff0000;
    }

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        letter-spacing: 0.5px;
    }

        .footer-links a:hover {
            color: white;
        }


.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: right;
}

/* Accessibility FAB */
.accessibility-fab {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(222, 39, 31, 0.25);
    z-index: 1100;
}

    .accessibility-fab:hover {
        background: #c61f18;
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(222, 39, 31, 0.35);
    }

    .accessibility-fab i {
        transition: transform 0.3s ease;
    }

    .accessibility-fab:hover i {
        transform: rotate(10deg);
    }

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 10rem;
    right: 0;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--primary-beige);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(202, 180, 137, 0.3);
    z-index: 1100;
    text-decoration: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

    .whatsapp-fab:hover {
        background: var(--secondary-gold);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 30px rgba(202, 180, 137, 0.4);
        color: white;
    }

    .whatsapp-fab i {
        transition: transform 0.3s ease;
    }

    .whatsapp-fab:hover i {
        transform: rotate(10deg);
    }

/* Back to Top FAB */
.back-to-top {
    position: fixed;
    /*bottom: 1.5rem;
    right: 5.5rem;*/
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(222, 39, 31, 0.25);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: #c61f18;
        transform: translateY(-5px);
        box-shadow: 0 6px 30px rgba(222, 39, 31, 0.35);
    }

    .back-to-top i {
        transition: transform 0.3s ease;
    }

    .back-to-top:hover i {
        transform: translateY(-2px);
    }


@media (max-width: 992px) {
    .accessibility-fab {
        top: auto;
        bottom: 1.5rem;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 60px 0 30px;
    }

    .consumer-support {
        margin-top: 3rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .copyright {
        text-align: center;
    }
}
