@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --cor_0: #000000;
            --cor_1: #FFFFFF;
            --cor_2: #FF6600;
            --cor_3: #FF9900;
            --cor_4: #FF3300;
            --cor_5: #333333;
            --cor_6: #ECF0F1;
            --texto-escuro #333333;
            --texto-claro: #7F8C8D;
            --branco: #FFFFFF;
            --shadow: 0 2px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px; /* Altura aproximada do cabeçalho expandido */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* Header */
        .header {
            /*background: var(--branco);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;*/
            width: 100%;
            transition: all 0.3s ease; /* Animação suave */
            background: var(--branco); /* Cor de fundo */
            /*padding: 20px 0;*/ /* Espaçamento original */
            position: relative; /* Posição inicial */
            z-index: 1000; /* Garante que fique sobre outros elementos */
         }

/* Estilo quando a classe 'scrolled' é adicionada */
.header.scrolled {
    position: fixed; /* Fixa no topo */
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 0; /* Reduz o espaçamento */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Sombra sutil */
}


/* Logo some quando o cabeçalho está rolado */
.header.scrolled .logo {
    opacity: 0.2;
    transform: translateY(-20px); /* Move o logo para cima antes de desaparecer */
    pointer-events: none; /* Evita interação quando invisível */
}


.header.scrolled .menu-item {
    font-size: 14px; /* Reduz tamanho da fonte do menu */
}




       .header-top {
            background: var(--cor_5);
            color: var(--branco);
            padding: 10px 0;
            font-size: 14px;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-main {
            padding: 20px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

 /* Ajuste para o conteúdo principal */
.content {
    padding-top: 80px; /* Altura do cabeçalho expandido */
}

/* Estado normal do header-content */
.header-main .header-content {
    display: flex;
    align-items: center;
    padding: 20px 0; /* Espaçamento vertical original */
    transition: all 0.3s ease; /* Transição suave */
}

/* Quando o header-main está com classe scrolled */
.header-main.scrolled .header-content {
    padding: 10px 0; /* Reduz o espaçamento vertical */
    min-height: 30px; /* Altura mínima reduzida (opcional) */
}

/* Ajuste para o logo quando desaparece */
.header-main.scrolled .logo {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    max-height: 0; /* Garante que não ocupe espaço */
    margin: 0 !important; /* Remove margens */
    padding: 0 !important; /* Remove padding */
}





        /*.logo {
            font-size: 32px;
            font-weight: bold;
            color: var(--cor_2);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }*/

/* Estilo do logo */
.logo {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}



        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--cor_2), var(--cor_3));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            font-size: 24px;
        }

        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 40px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid var(--cor_6);
            border-radius: 30px;
            font-size: 16px;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--cor_2);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--cor_2);
            border: none;
            color: var(--branco);
            padding: 8px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-btn:hover {
            background: var(--cor_4);
        }

        .header-actions {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .header-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--texto-escuro);
            transition: var(--transition);
            position: relative;
        }

        .header-action:hover {
            color: var(--cor_2);
        }

        .header-action-icon {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--cor_2);
            color: var(--branco);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* Navigation */
        .nav {
            background: var(--cor_2);
            border-bottom: 1px solid var(--cor_6);
            margin: 0;
            height:42px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-home {
            background: var(--cor_5);
        }
        .nav-home:hover {
            background: var(--cor_4);
            color: var(--texto-claro);
        }
        .nav-link {
            display: block;
            padding: 5px 25px; /* altura e espaço menu horizontal */
            text-decoration: none;
            color: var(--cor_1);
            font-size: 1.3em;
            /*font-weight: bold; */
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--cor_0);
            text-decoration:none;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--cor_1);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }


/* Container do submenu */
.submenu-container {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    min-width: 100%; /* Ajuste conforme necessário */
}

/* Exibir submenu ao passar o mouse */
.dropdown:hover .submenu-container {
    display: block;
}

/* Layout das colunas */
.submenu {
    display: flex;
    padding: 20px;
}

.submenu-column {
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid #eee;
}

.submenu-column:last-child {
    border-right: none;
}

/* Estilo dos itens do submenu */
.submenu-column ul {
    list-style-type: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-column li {
    margin-bottom: 8px;
}

.submenu-column a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.submenu-column a:hover {
    color: var(--cor_2);
}

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--cor_2), var(--cor_3));
            color: var(--branco);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://picsum.photos/seed/gifts-pattern/1920/600') center/cover;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease 0.2s;
            animation-fill-mode: both;
        }

        .hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--branco);
            color: var(--cor_2);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: var(--transition);
            animation: fadeInUp 0.8s ease 0.4s;
            animation-fill-mode: both;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Categories Section */
        .categories {
            padding: 80px 0;
            background: var(--branco);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 42px;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--texto-claro);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .lancamento-card {
            background: var(--branco);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            color: var(--text-dark);
            position: relative;
        }

        .lancamento-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .lancamento-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: var(--transition);
        }

        .lancamento-card:hover .lancamento-image {
            transform: scale(1.1);
        }

        .lancamento-info {
            padding: 25px;
            text-align: center;
        }

        .lancamento-icon {
            font-size: 48px;
            margin-bottom: 15px;
            color: var(--cor_2);
        }

        .lancamento-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .lancamento-desc {
            color: var(--texto-claro);
            font-size: 14px;
        }

        /* Featured Products */
        .featured {
            padding: 20px 0;
            background: var(--cor_6);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--branco);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--cor_2);
            color: var(--branco);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 2;
        }

        .product-image {
            width: 96%;
            max-height: 220px;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--text-dark);
            height: 48px;
            overflow: hidden;
            display: -webkit-box;
            text-align: center;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-price {
            font-size: 24px;
            font-weight: bold;
            color: var(--cor_2);
            margin-bottom: 15px;
        }

        .product-price-old {
            font-size: 16px;
            color: var(--texto-claro);
            text-decoration: line-through;
            margin-left: 10px;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 14px;
        }

        .btn-primary {
            background: var(--cor_2);
            color: var(--branco);
            flex: 1;
        }

        .btn-primary:hover {
            background: var(--cor_4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--cor_2);
            border: 2px solid var(--cor_2);
            padding: 8px 15px;
        }

        .btn-secondary:hover {
            background: var(--cor_2);
            color: var(--branco);
        }

        /* How It Works */
        .how-it-works {
            padding: 20px 0;
            background: var(--branco);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--cor_2), var(--cor_3));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step-icon {
            font-size: 48px;
            color: var(--cor_2);
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .step-desc {
            color: var(--texto-claro);
            line-height: 1.6;
        }

        /* Testimonials */
        .minibanners {
            padding: 20px 0;
            background: var(--cor_6);
        }

        .minibanners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .minibanner {
            background: var(--branco);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .minibanner::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: var(--cor_2);
            /*opacity: 0.2;*/
            opacity: 0;
            font-family: Georgia, serif;
        }

        .minibanner-content {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .minibanner-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--cor_2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            font-weight: bold;
            font-size: 20px;
        }

        .author-info h4 {
            font-size: 16px;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--texto-claro);
        }

        /* Newsletter */
        .slogan-rodape {
            background: linear-gradient(135deg, var(--cor_2), var(--cor_3));
            color: var(--branco);
            padding: 5px 0;
            text-align: center;
        }

        .slogan-rodape-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .slogan-rodape-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .slogan-rodape-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }

        .slogan-rodape-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
        }

        .slogan-rodape-btn {
            padding: 15px 30px;
            background: var(--cor_5);
            color: var(--branco);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .slogan-rodape-btn:hover {
            background: #1A252F;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--cor_5);
            color: var(--branco);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--branco);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #BDC3C7;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--cor_2);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--cor_2);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #BDC3C7;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--cor_5);
            color: var(--branco);
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transform: translateX(400px);
            transition: var(--transition);
            z-index: 2000;
        }

        .toast.show {
            transform: translateX(0);
        }


.menu_superiorc a{
    color:var(--cor_1);;
    font-size: 1em;
    font-weight: bold;
    text-align:right;
    text-decoration:none;
}
.menu_superiorc a:hover{
    color:var(--cor_4);;
    font-size: 1em;
    font-weight: bold;
}

.banner-container {
            /*max-width: 1200px;*/
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            /*border-radius: 12px; */
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .banner-slides {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .banner-slide {
            min-width: 100%;
            position: relative;
        }

        .banner-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .banner-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            padding: 40px 30px 30px;
            color: white;
        }

        .banner-content h2 {
            font-size: 2.2rem;
            margin-bottom: 12px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .banner-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            max-width: 600px;
            opacity: 0.9;
        }

        .banner-link {
            display: inline-block;
            background-color: #3b82f6;
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

        .banner-link:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
        }

        .banner-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;

        }

        .banner-nav button {
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .banner-nav button:hover {
            background-color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .banner-nav button:active {
            transform: scale(0.95);
        }

        .banner-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .banner-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .banner-indicator.active {
            background-color: white;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }

            .search-bar {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
                margin: 20px 0 0;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--branco);
                flex-direction: column;
                box-shadow: var(--shadow);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-item {
                width: 100%;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .categories-grid,
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .steps-container,
            .minibanners-grid {
                grid-template-columns: 1fr;
            }

            .slogan-rodape-form {
                flex-direction: column;
            }

    .submenu-container {
        position: static;
        width: 100%;
        box-shadow: none;
        min-width: auto;
    }

    .submenu {
        flex-direction: column;
        padding: 10px;
    }

    .submenu-column {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .submenu-column:last-child {
        border-bottom: none;
    }

    .dropdown.active .submenu-container {
        display: block;
    }

 .banner-content h2 {
                font-size: 1.8rem;
            }

            .banner-content p {
                font-size: 1rem;
            }

            .banner-nav button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
 }

/*-- icons --*/
.grid_3.grid_4.up7_agileits_icons_page {
    margin: 0;
}
ul.bs-glyphicons-list li:hover {
    background: #333333;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -moz-transition: 0.5s all;
}
ul.bs-glyphicons-list li:hover span {
    color: #fff;
}
.codes a {
    color: #555;
}
.row.fontawesome-icon-list {
    margin: 0;
}
.icon-box {
    padding: 8px 15px;
    background:#D4D4D4;
    margin: 1em 0 1em 0;
    border: 5px solid #ffffff;
    text-align: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 13px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -moz-transition: 0.5s all;
    cursor: pointer;
}
.icon-box:hover {
    background: var(--cor_5);
    transition:0.5s all;
    -webkit-transition:0.5s all;
    -o-transition:0.5s all;
    -ms-transition:0.5s all;
    -moz-transition:0.5s all;
}
.icon-box:hover i.fa {
    color:#fff !important;
}
.icon-box:hover a.agile-icon {
    color:#fff !important;
}
.codes .bs-glyphicons li {
    float: left;
    width: 12.5%;
    height: 115px;
    padding: 10px;
    line-height: 1.4;
    text-align: center;
    font-size: 12px;
    list-style-type: none;
}
.codes .bs-glyphicons .glyphicon {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 24px;
}
.codes .glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #777;
}
.codes .bs-glyphicons .glyphicon-class {
    display: block;
    text-align: center;
    word-wrap: break-word;
}
h3.icon-subheading {
    font-size: 25px;
    color: #333333 !important;
    margin: 30px 0 15px;
    font-weight: 700
}
h3.agileits-icons-title {
    text-align: center;
    font-size: 35px;
    color: #000;
    font-weight: 300;
}
.icons a {
    color: #555;
}
.icon-box i {
    margin-right: 10px !important;
    font-size: 20px !important;
    color: #282a2b !important;
}
.bs-glyphicons li {
    float: left;
    width: 18%;
    height: 115px;
    padding: 10px;
    line-height: 1.4;
    text-align: center;
    font-size: 12px;
    list-style-type: none;
    background:rgba(149, 149, 149, 0.18);
    margin: 1%;
    cursor: pointer;
}
.bs-glyphicons .glyphicon {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #282a2b;
}
.icon-box.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #777;
}
.bs-glyphicons .glyphicon-class {
    display: block;
    text-align: center;
    word-wrap: break-word;
}
@media (max-width:1080px){
    .icon-box {
        width:33.33%;
    }
}
@media (max-width:991px){
    h3.agileits-icons-title {
        font-size: 28px;
    }
    h3.icon-subheading {
        font-size: 22px;
    }
    .icon-box {
        width: 50%;
        float: left;
    }
}
@media (max-width:768px){
    h3.agileits-icons-title {
        font-size: 28px;
    }
    h3.icon-subheading {
        font-size: 25px;
    }
    .row {
        margin-right: 0;
        margin-left: 0;
    }
    .icon-box {
        margin: 0;
    }
}
@media (max-width: 640px){
    .icon-box {
        float: left;
        width: 50%;
    }
    h3.icon-subheading {
        font-size: 22px;
    }
    .grid_3.grid_4.up7_agileits_icons_page {
        margin-top: 0;
    }
}
@media (max-width:568px){
    .icon-box {
        float: left;
        width: 100%;
    }
}
@media (max-width: 480px){
    .bs-glyphicons li {
        width: 31%;
    }
    h3.agileits-icons-title {
        font-size: 25px;
    }
    h3.icon-subheading {
        font-size: 19px;
    }
}
@media (max-width: 414px){
    h3.agileits-icons-title {
        font-size: 23px;
    }
    h3.icon-subheading {
        font-size: 18px;
    }
    .bs-glyphicons li {
        width: 31.33%;
    }
}
@media (max-width: 384px){
    .icon-box {
        float: none;
        width: 100%;
    }
}
@media (max-width: 375px){
    .up7_agileits_icons_page {
        margin:0 !important;
    }
}
/*-- //icons --*/

/* SLIDE SHOW LANÇAMENTOS- INÍCIO */


.lancamentos-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
    padding: 0 15px;
}

.lancamento-card {
    flex: 0 0 calc(25% - 15px); /* 4 cards por linha */
    max-width: 280px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight:bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .lancamento-card {
        flex: 0 0 calc(33.333% - 15px); /* 3 cards por linha */
    }
}

@media (max-width: 768px) {
    .lancamento-card {
        flex: 0 0 calc(50% - 15px); /* 2 cards por linha */
    }
}

@media (max-width: 480px) {
    .lancamento-card {
        flex: 0 0 100%; /* 1 card por linha */
    }
}
/* Estilo para a barra de progresso */
.slider-progress {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #4a90e2;
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Melhorias visuais para as setas */
.slider-arrow {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Animação suave para o slider */
.slider-wrapper {
    transition: transform 0.5s ease;
}

/* SLIDE SHOW LANÇAMENTOS - FIM */



       .slideshow-wrapper {
            position: relative;
            overflow: hidden;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 20px 0;
        }

        .slideshow-container {
            display: flex;
            animation: scroll 30s linear infinite;
            width: max-content;
        }

        .slideshow-container:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .slide {
            width: 150px;
            height: 150px;
            margin: 0 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 15px 10px 10px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .slide:hover .slide-overlay {
            transform: translateY(0);
        }

        .slide-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .slide-category {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .control-btn {
            background: #4a6baf;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(74, 107, 175, 0.3);
        }

        .control-btn:hover {
            background: #3a5a9f;
            transform: scale(1.05);
        }

        .control-btn:active {
            transform: scale(0.95);
        }

        .speed-control {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .speed-control label {
            font-weight: 600;
            color: #2c3e50;
        }

        .speed-slider {
            width: 150px;
            height: 6px;
            border-radius: 3px;
            background: #e0e0e0;
            outline: none;
            -webkit-appearance: none;
        }

        .speed-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #4a6baf;
            cursor: pointer;
        }

        .speed-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #4a6baf;
            cursor: pointer;
            border: none;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .slide {
                width: 120px;
                height: 120px;
                margin: 0 10px;
            }

            .controls {
                flex-direction: column;
                align-items: center;
            }
        }


a[href="#top"]{
    padding:10px;
    position:fixed;
    top: 90%;
    right:40px;
    display:none;
    font-size: 30px;
}
a[href="#top"]:hover{
    text-decoration:none;
}

