:root {
            --amarelo: #FFD166;
            --vermelho: #EF476F;
            --azul-turquesa: #06D6A0;
            --azul-escuro: #118AB2;
            --branco: #FFFFFF;
            --cinza-claro: #F8F9FA;
            --preto: #000000;
        }

        body {
            padding-top: 80px;
            background-color: var(--cinza-claro);
            font-family: 'Comic Neue', cursive, sans-serif;
        }

        /* Navbar personalizada */
        .navbar-custom {
            background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--azul-escuro) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--branco) !important;
        }

        .navbar-brand i {
            color: var(--amarelo);
        }

        .nav-link {
            color: var(--branco) !important;
            font-weight: 500;
            transition: all 0.3s;
        }

        .nav-link:hover {
            color: var(--amarelo) !important;
            transform: translateY(-2px);
        }

        .btn-cart {
            background-color: var(--vermelho);
            border-color: var(--vermelho);
            color: white;
        }

        .btn-cart:hover {
            background-color: #d43a5f;
            border-color: #d43a5f;
        }
        /*Informacao abaixo do banner principal*/
        .hero-information {
            background: var(--preto);
            color: white;
            
            padding: 0px 0;
            border-radius: 0px 0px 30px 30px;
            margin-bottom: 1px;
            position: relative;
            overflow: hidden;
        }

        .hero-information-subtitle{
            font-size: 1.0rem;
            margin-bottom: 1rem;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--azul-escuro) 100%);
            color: white;
            padding: 80px 0;
            border-radius: 0 0 0px 0px;
            margin-bottom: 0px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,209,102,0.1)"/></svg>');
            background-size: cover;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .btn-hero {
            background-color: var(--amarelo);
            border-color: var(--amarelo);
            color: #333;
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-hero:hover {
            background-color: #e6b952;
            border-color: #e6b952;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Cards de produtos - SOLUÇÃO PARA ALINHAR BOTÕES */
        .product-card {
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .product-card .card-body {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            padding: 1.5rem;
        }

        .product-card .card-text {
            flex-grow: 1;
            margin-bottom: 1rem;
            color: #666;
        }

        .product-card .price-container {
            margin-top: auto; /* Isso empurra o container para baixo */
            padding-top: 1rem;
            border-top: 1px solid #e9ecef;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .product-card .price {
            font-weight: bold;
            color: var(--vermelho);
            font-size: 1.3rem;
        }

        .btn-add {
            background-color: var(--azul-turquesa);
            border-color: var(--azul-turquesa);
            color: white;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-add:hover {
            background-color: #05c290;
            border-color: #05c290;
            transform: scale(1.05);
        }

        /* Inicio paginacao */

.content-pagination {
    margin: 15px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination {
    display: inline-block;
    font-size: 15px;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}

.pagination a.active {
    background-color: #05c290;
    color: var(--fourth-color);
}

.pagination a:hover:not(.active) {
    background-color: #ebeef6;
}


/* Fim paginacao */

        /* Categorias */
        .categories-section {
            padding: 60px 0;
            background-color: white;
             
             
        }

        .category-card {
            transition: transform 0.3s;
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            padding: 2rem 1rem;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .category-baby {
            background: linear-gradient(135deg, var(--azul-turquesa) 0%, #05c290 100%);
            color: white;
        }

        .category-boys {
            background: linear-gradient(135deg, var(--azul-escuro) 0%, #0f7a9d 100%);
            color: white;
        }

        .category-girls {
            background: linear-gradient(135deg, var(--vermelho) 0%, #d43a5f 100%);
            color: white;
        }

        .category-shoes {
            background: linear-gradient(135deg, var(--amarelo) 0%, #e6b952 100%);
            color: white;
           
        }

        /* Destaques */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--azul-escuro);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--amarelo), var(--vermelho));
            border-radius: 2px;
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, var(--amarelo) 0%, #e6b952 100%);
            padding: 60px 0;
            border-radius: 30px;
            margin: 50px 0;
        }

        .btn-newsletter {
            background-color: var(--vermelho);
            border-color: var(--vermelho);
            color: white;
            border-radius: 50px;
            padding: 10px 30px;
        }

        /* Rodapé */
        footer {
            background: linear-gradient(135deg, var(--azul-escuro) 0%, #0a5a7a 100%);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-title {
            color: var(--amarelo);
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
            color: white;
        }

        .social-icons a:hover {
            background-color: var(--amarelo);
            color: #333;
            transform: translateY(-3px);
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--amarelo);
            padding-left: 5px;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255,255,255,0.7);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }