:root {
    --rosa-festou: #ff477e;
    --azul-festou: #4cc9f0;
    --amarelo-festou: #ffcf40;
    --laranja-festou: #ff8a3d;
    --branco-puro: #ffffff;
    --fundo-azul-produtos: #b2d4e7; /* Sua cor escolhida */
    --texto-principal: #2d3436;
    --fonte-festiva: 'Fredoka', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--fundo-azul-produtos);
    color: var(--texto-principal);
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-delay-1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

@keyframes float-delay-2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Menu principal melhorado */
nav {
    background: linear-gradient(180deg, #b2d9f0 0%, #ffffff 100%);
    padding: 40px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    border-radius: 0;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.nav-list {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-item {
    position: relative;
    cursor: pointer;
}

.nav-link {
    font-family: var(--fonte-festiva);
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.65);
    color: var(--azul-festou);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 14px;
    width: 0;
    height: 3px;
    background: var(--branco-puro);
    transition: width 0.3s ease;
    border-radius: 99px;
}

.nav-link:hover::before {
    width: calc(100% - 28px);
}

/* Header com fundo branco */
header {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decoração de balões no fundo do header */
.balloons-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    pointer-events: none;
    padding-bottom: 20px;
}

.balloon {
    width: 50px;
    height: 60px;
    border-radius: 50% 50% 50% 45%;
    position: relative;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

.balloon::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #333;
    transform: translateX(-50%);
}

.balloon:nth-child(1) {
    background: linear-gradient(135deg, #ff477e 0%, #ff6b9d 100%);
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.balloon:nth-child(2) {
    background: linear-gradient(135deg, #4cc9f0 0%, #5ee7df 100%);
    animation: float-delay-1 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.balloon:nth-child(3) {
    background: linear-gradient(135deg, #ffcf40 0%, #ffd93d 100%);
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.balloon:nth-child(4) {
    background: linear-gradient(135deg, #ff8a3d 0%, #ffa366 100%);
    animation: float-delay-2 4.2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.balloon:nth-child(5) {
    background: linear-gradient(135deg, #7ed321 0%, #a8e063 100%);
    animation: float-delay-1 4.7s ease-in-out infinite;
    animation-delay: 0.7s;
}

.balloon:nth-child(6) {
    background: linear-gradient(135deg, #00d4ff 0%, #7dd9ff 100%);
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.logo-text {
    font-family: var(--fonte-festiva);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
    z-index: 10;
}

/* Cores originais da logo restauradas */
.logo-text span:nth-child(1) { 
    color: var(--rosa-festou);
    text-shadow: 0 0 10px rgba(255, 71, 126, 0.5);
}
.logo-text span:nth-child(2) { 
    color: var(--azul-festou);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}
.logo-text span:nth-child(3) { 
    color: var(--amarelo-festou);
    text-shadow: 0 0 10px rgba(255, 207, 64, 0.5);
}
.logo-text span:nth-child(4) { 
    color: var(--laranja-festou);
    text-shadow: 0 0 10px rgba(255, 138, 61, 0.5);
}
.logo-text span:nth-child(5) { 
    color: var(--azul-festou);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}
.logo-text span:nth-child(6) { 
    color: var(--rosa-festou);
    text-shadow: 0 0 10px rgba(255, 71, 126, 0.5);
}

.store-tag {
    display: block;
    font-family: var(--fonte-festiva);
    font-size: 1.2rem;
    letter-spacing: 10px;
    font-weight: 700;
    margin-top: -5px;
    text-transform: uppercase;
    color: var(--texto-principal);
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Banner de divulgação com fundo branco e sem pontilhado */
.impact-banner {
    background: linear-gradient(135deg, var(--branco-puro) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 120px 20px;
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.impact-container {
    max-width: 900px;
    margin: 0 auto;
}

.impact-banner h2 {
    font-family: var(--fonte-festiva);
    font-size: 2.4rem;
    color: var(--texto-principal);
    line-height: 1.3;
    margin-bottom: 20px;
}

.impact-banner h2 mark {
    background: none;
    color: var(--rosa-festou);
    font-weight: 600;
}

.impact-banner h2 shp {
    background: none;
    color: var(--laranja-festou);
    font-weight: 600;
}

.impact-banner p {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    padding-top: 15px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #d9f2ff, #eff9ff);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--fonte-festiva);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(76, 201, 240, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(0, 0, 0, 0.35);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(76, 201, 240, 0.35);
    filter: brightness(1.05);
}

/* Área de Produtos Moderna */
.main-content {
    display: none;
}

.product-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px); /* Efeito de vidro moderno */
    border-radius: 28px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(76, 201, 240, 0.25);
    box-shadow: 0 20px 40px rgba(76, 201, 240, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.product-card:hover::after {
    left: 100%;
}

/* Badge de Achadinho Estilizado */
.product-card::before {
    content: "ACHADINHO ✨";
    position: absolute;
    top: 15px;
    right: -20px;
    background: linear-gradient(135deg, var(--amarelo-festou), #ffd700);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 25px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(255, 207, 64, 0.4);
    letter-spacing: 1px;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(76, 201, 240, 0.16), 0 0 30px rgba(76, 201, 240, 0.2);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(76, 201, 240, 0.45);
}

.product-icon { 
    font-size: 4rem; 
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(76, 201, 240, 0.3));
}

.product-card h3 {
    font-family: var(--fonte-festiva);
    font-size: 1.4rem;
    color: var(--texto-principal);
    margin-bottom: 8px;
}

.price {
    font-family: var(--fonte-festiva);
    font-size: 2rem;
    color: var(--rosa-festou);
    margin: 15px 0 25px 0;
    font-weight: 600;
}

.btn-shopee {
    background: linear-gradient(135deg, #d9f2ff, #eff9ff);
    color: #0d3b66;
    padding: 14px 0;
    width: 100%;
    border-radius: 18px;
    text-decoration: none;
    font-family: var(--fonte-festiva);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.15);
    border: 1px solid rgba(76, 201, 240, 0.25);
}

.btn-shopee:hover {
    box-shadow: 0 8px 25px rgba(76, 201, 240, 0.3);
    filter: brightness(1.05);
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .logo-text { font-size: 2.8rem; }
    .impact-banner h2 { font-size: 1.8rem; }
    .product-grid { gap: 20px; }
    
    nav {
        gap: 15px;
        padding: 16px 20px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 10px 14px;
    }
    
    .impact-banner {
        padding: 80px 20px;
        min-height: auto;
    }
    
    .cta-button {
        padding: 14px 36px;
        font-size: 1rem;
    }
}