* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, #ffe66d55, transparent 300px),
        radial-gradient(circle at bottom right, #00a8ff44, transparent 300px),
        #f5fbff;
    color: #263238;
}

header {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 55px 20px 75px;
    color: white;
    background: linear-gradient(135deg, #00a8ff, #0067c7);
    border-radius: 0 0 45px 45px;
}

header:before {
    content: "⭐ 💙 ⭐ 💛 ⭐ 💙 ⭐ 💛 ⭐";
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 38px;
    width: 200%;
    opacity: .3;
    animation: starSlide 25s linear infinite;
    pointer-events: none;
}

@keyframes starSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.magic-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.magic-bg span {
    position: absolute;
    font-size: 40px;
    opacity: .35;
    animation: floatRound 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255,255,255,.8));
}

.magic-bg span:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.magic-bg span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 1s;
}

.magic-bg span:nth-child(3) {
    left: 35%;
    top: 15%;
    animation-delay: 2s;
}

.magic-bg span:nth-child(4) {
    left: 50%;
    top: 70%;
    animation-delay: .5s;
}

.magic-bg span:nth-child(5) {
    left: 65%;
    top: 25%;
    animation-delay: 1.5s;
}

.magic-bg span:nth-child(6) {
    left: 80%;
    top: 55%;
    animation-delay: 2.5s;
}

.magic-bg span:nth-child(7) {
    left: 90%;
    top: 20%;
    animation-delay: 3s;
}

.magic-bg span:nth-child(8) {
    left: 10%;
    top: 80%;
    animation-delay: 1.8s;
}

@keyframes floatRound {
    0% {
        transform: translate(0,0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px,-25px) rotate(10deg) scale(1.15);
    }
    50% {
        transform: translate(40px,0) rotate(0deg) scale(1);
    }
    75% {
        transform: translate(20px,25px) rotate(-10deg) scale(1.1);
    }
    100% {
        transform: translate(0,0) rotate(0deg) scale(1);
    }
}

header h1 {
    margin-top: 20px;
    font-size: 42px;
    font-weight: 900;
    text-shadow: 0 4px 10px #0003;
}

header p {
    max-width: 500px;
    margin: 15px auto 0;
    font-size: 19px;
    line-height: 1.5;
}

#produtos {
    width: min(1200px, 95%);
    margin: -40px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.produto {
    position: relative;
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 35px #0077c820;
    transition: .3s;
}

.produto:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #0077c840;
}

.selo {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #ffcc00;
    padding: 8px 15px;
    border-radius: 30px;
    color: #664900;
    font-weight: bold;
    font-size: 13px;
    z-index: 2;
}

.produto img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 35px;
    background: linear-gradient(#ffffff, #eef9ff);
}

.produto-info {
    padding: 25px;
    text-align: center;
}

.produto-info h2 {
    color: #008ee0;
    font-size: 22px;
}

.produto-info p {
    margin: 12px 0;
    color: #666;
    line-height: 1.4;
}

.preco {
    margin: 18px 0;
    color: #00a859;
    font-size: 28px;
    font-weight: 900;
}

button {
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, #00a8ff, #006bd6);
    color: white;
    padding: 15px 25px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    transition: .3s;
    box-shadow: 0 8px 20px #009fe340;
}

button:hover {
    transform: scale(1.05);
}

@keyframes abrir {
    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fechar {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    padding: 0;
    background: #ff4b4b;
}

#fotoProduto {
    width: 100%;
    height: 260px;
    object-fit: contain;
    border-radius: 25px;
    background: #f4fbff;
}

.box h2 {
    color: #008ee0;
    margin: 15px 0;
}

.box p {
    color: #666;
}

label {
    display: block;
    margin-top: 18px;
    font-weight: bold;
    color: #0076bd;
}

select,
input,
textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px;
    border: 2px solid #dff4ff;
    border-radius: 18px;
    outline: none;
    font-size: 15px;
}

textarea {
    height: 90px;
    resize: none;
}

form button {
    margin-top: 20px;
    width: 100%;
}

#respostaPedido {
    margin-top: 15px;
    text-align: center;
}

.sucesso {
    background: #dcffe8;
    color: #008f3c;
    padding: 15px;
    border-radius: 18px;
}

.erro {
    background: #ffe0e0;
    color: #c90000;
    padding: 15px;
    border-radius: 18px;
}

@media(max-width:600px) {
    header {
        padding: 40px 15px 65px;
    }

    header h1 {
        font-size: 32px;
    }

    .produto img {
        height: 240px;
    }
}

.logo-store {
    width: 180px;
    margin-bottom: 15px;
}

.beneficios {
    max-width: 900px;
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.filtros {
    margin-top: 25px;
}

.filtro {
    background: white;
    color: #008ee0;
    padding: 13px 25px;
    border-radius: 35px;
    border: 2px solid transparent;
    font-weight: bold;
    box-shadow: 0 8px 20px #0077c820;
}

.filtro:hover {
    transform: translateY(-3px);
}

.filtro.ativo {
    background: #ffcc00;
    color: #654900;
    border-color: white;
}

#tamanhoProduto {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-tamanho {
    background: white;
    color: #008ee0;
    border: 2px solid #00a8ff;
    box-shadow: none;
    padding: 10px 18px;
}

.btn-tamanho.ativo {
    background: #00a8ff;
    color: white;
}

#btnCarrinho {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 10;
    font-size: 22px;
}

.item-carrinho {
    background: #f4fbff;
    padding: 12px;
    border-radius: 18px;
    margin-bottom: 10px;
}

.item-carrinho strong {
    color: #008ee0;
}

.item-carrinho button {
    margin-top: 8px;
    background: #ff4b4b;
    padding: 8px 15px;
}

#valorTotal {
    color: #00a859;
    margin: 15px 0;
}

header {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 50px 20px 90px;
    color: white;
    background:
        radial-gradient(circle at 20% 30%, #ffdd4a 0 45px, transparent 47px),
        radial-gradient(circle at 80% 25%, #ffffff55 0 60px, transparent 65px),
        linear-gradient(135deg, #16c5ff, #006bd6);
    border-radius: 0 0 60px 60px;
}

header:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(#ffffff80 3px, transparent 4px),
        radial-gradient(#ffd93d 3px, transparent 4px);
    background-size: 70px 70px, 110px 110px;
    animation: estrelas 20s linear infinite;
}

@keyframes estrelas {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200px 200px;
    }
}

header:after {
    content: "☁️ ☁️ ☁️ ☁️ ☁️";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    font-size: 70px;
    letter-spacing: 30px;
    opacity: .9;
}

.logo-store {
    position: relative;
    z-index: 2;
    width: 190px;
    margin-bottom: 20px;
    animation: pular 3s infinite ease-in-out;
}

@keyframes pular {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

header h1 {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    font-size: 44px;
    font-weight: 900;
    text-shadow: 0 5px 15px #004b7a60;
}

header p {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin: 18px auto 0;
    font-size: 20px;
    line-height: 1.5;
}

.turminha-header {
    position: absolute;
    right: 8%;
    bottom: -5vh;
    width: 260px;
    z-index: 2;
    animation: entrada 1s ease;
}

@keyframes entrada {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media(max-width:800px) {
    .turminha-header {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 25px;
        width: 220px;
    }

    header h1 {
        font-size: 32px;
    }
}

.voltar-site {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 50;
    background: white;
    color: #008ee0;
    padding: 12px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 25px #005c8f30;
    transition: .3s;
}

.voltar-site:hover {
    transform: scale(1.05);
    background: #ffcc00;
    color: #654900;
}

@media(max-width:600px) {
    .voltar-site {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
        font-size: 14px;
    }
}

.pagina-info {
    max-width: 850px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 35px;
    box-shadow: 0 15px 35px #0077c820;
    line-height: 1.7;
}

.pagina-info img {
    width: 170px;
    display: block;
    margin: auto;
}

.pagina-info h1 {
    color: #008ee0;
    text-align: center;
    margin: 25px 0;
}

.pagina-info h2 {
    color: #006bd6;
    margin-top: 25px;
}

.footer-store {
    position: relative;
    margin-top: 80px;
    padding: 50px 20px 30px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, #ffdd4a55, transparent 120px),
        linear-gradient(135deg, #009fe3, #006bd6);
    color: white;
    overflow: hidden;
    border-radius: 50px 50px 0 0;
}

.footer-store:before {
    content: "⭐ 💙 ⭐ 💛 ⭐";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .25;
    font-size: 35px;
}

.footer-store img {
    width: 150px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 10px #0003);
}

.footer-store h3 {
    margin-top: 15px;
    font-size: 26px;
    position: relative;
    z-index: 2;
}

.footer-store p {
    max-width: 500px;
    margin: 12px auto;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.footer-aviso {
    max-width: 650px;
    margin: 25px auto;
    background: white;
    color: #0076bd;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 8px 20px #005c8f30;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.footer-links a:hover {
    color: #ffdd4a;
}


.footer-links_car {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.footer-links_car a {
    color: #0067c799;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.footer-links_car a:hover {
    color: #ffdd4a;
}

.footer-store small {
    opacity: .8;
}

@media(max-width:600px) {
    .footer-store {
        margin-top: 50px;
        border-radius: 35px 35px 0 0;
    }

    .footer-aviso {
        border-radius: 20px;
    }
}


.modal {
    position: fixed;
    inset: 0;
    background: #0067c799;
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    z-index: 20;
}

.box {
    width: min(92vw, 1000px);
    max-height: 88vh;
    overflow-x: hidden;
    overflow-y: auto;
    background:
        radial-gradient(circle at top left, #ffe66d55, transparent 230px),
        #ffffff;
    border-radius: 42px;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 60px #005c8f55;
}

.box::-webkit-scrollbar {
    width: 8px;
}

.box::-webkit-scrollbar-thumb {
    background: #00a8ff;
    border-radius: 20px;
}

#modalProduto .box {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 25px;
}

#fotoProduto {
    width: 100%;
    height: 310px;
    object-fit: contain;
    padding: 25px;
    background: linear-gradient(#fff, #e8f8ff);
    border-radius: 35px;
    box-shadow: inset 0 0 25px #009fe320;
}

#descricaoProduto {
    grid-column: 1;
    margin-top: -10px;
    background: #f1fbff;
    padding: 18px 22px;
    border-radius: 25px;
    color: #455a64;
    font-size: 16px;
    line-height: 1.4;
}

#descricaoProduto:before {
    content: "💙 ";
}

#nomeProduto,
#areaTamanho,
#modalProduto label,
#quantidadeProduto,
#modalProduto .box>button:last-child {
    grid-column: 2;
}

#nomeProduto {
    grid-row: 1;
    align-self: start;
    margin-top: 40px;
    color: #008ee0;
    font-size: 32px;
    font-weight: 900;
}

#areaTamanho {
    grid-row: 1;
    margin-top: 110px;
}

#tamanhoProduto {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-tamanho {
    min-width: 115px;
    background: white;
    color: #008ee0;
    border: 2px solid #00a8ff;
    padding: 12px 18px;
    border-radius: 30px;
    box-shadow: none;
}

.btn-tamanho.ativo {
    background: #008ee0;
    color: #ffffff;
}

#modalProduto label:last-of-type {
    grid-column: 2;
    grid-row: 2;
    display: block;
    margin-top: 0;
    color: #006bd6;
    font-size: 17px;
    font-weight: 900;
}

#quantidadeProduto {
    grid-column: 2;
    grid-row: 2;
    width: 90px;
    height: 45px;
    margin-left: 130px;
    margin-top: -14px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 18px;
}

#modalProduto .box>button:last-child {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    padding: 17px;
    margin-top: -10px;
    background: linear-gradient(135deg, #00c853, #009624);
}

.fechar {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    background: #ff4b4b;
    z-index: 5;
}

#fotoProduto {
    cursor: zoom-in;
    transition: transform .3s ease;
}

#fotoProduto.zoom {
    transform: scale(2);
    cursor: zoom-out;
}

@media(max-width:850px) {

    .box {
        width: 95vw;
        padding: 25px;
    }

    #modalProduto .box {
        display: block;
    }

    #fotoProduto {
        height: 250px;
    }

    #nomeProduto {
        margin-top: 20px;
        font-size: 25px;
    }

    #areaTamanho {
        margin-top: 20px;
    }

    #tamanhoProduto {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-tamanho {
        min-width: 0;
    }

    .box label {
        display: flex;
        position: relative;
        margin-top: 10px !important;
    }

    #quantidadeProduto {
        width: 100px;
    }
}