@keyframes fade-in {
from {
background-color: rgba(0, 0, 0, 0);
}
to {
background-color: rgba(0, 0, 0, 0.8);
}
}
@keyframes fade-out {
from {
background-color: rgba(0, 0, 0, 0.8);
}
to {
background-color: rgba(0, 0, 0, 0);
}
}
@keyframes slide-in {
from {
transform: translateX(500px);
}
to {
transform: translateX(0px);
}
}
@keyframes slide-out {
from {
transform: translateX(0px);
}
to {
transform: translateX(500px);
}
}
@layer base {
}
#cart-drawer[data-state="open"] {
animation: fade-in 0.4s forwards;
}
#cart-drawer[data-state="closed"] {
animation: fade-out 0.4s forwards;
}
#cart-drawer[data-state="open"] > div {
animation: slide-in 0.4s forwards;
}
#cart-drawer[data-state="closed"] > div {
animation: slide-out 0.4s forwards;
}
.dialog[data-state="open"] {
animation: fade-in 0.4s forwards;
}
.dialog[data-state="closed"] {
animation: fade-out 0.4s forwards;
}
.dialog[data-state="open"] > div {
animation: dialog-in 0.2s forwards;
}
.dialog[data-state="closed"] > div {
animation: dialog-out 0.2s forwards;
}
@keyframes dialog-in {
from {
opacity: 0;
scale: 50%;
}
to {
opacity: 1;
scale: 100%;
}
}
@keyframes dialog-out {
from {
opacity: 1;
scale: 100%;
}
to {
opacity: 0;
scale: 50%;
}
}
#category-section,
#category #products-list {
scroll-margin-top: 100px;
transition:
opacity 0.5s ease-out,
transform 0.5s ease-out;
opacity: 0;
transform: translateY(20px);
}
#category-section.visible,
#category #products-list.visible {
opacity: 1;
transform: translateY(0);
}
@keyframes loading {
0% {
left: -50%;
}
to {
left: 100%;
}
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gradient-animation { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes title-gradient-animation { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.apx-hero-section {
width: 100%; z-index: 10; margin-bottom: 2rem; position: relative;
display: flex; flex-direction: column; align-items: center; justify-content: center;
text-align: center; padding: 60px 20px 40px; color: rgb(255, 255, 255); overflow: hidden;
animation: fadeIn 1s ease-out; font-family: 'Arial Black', Gadget, sans-serif;
}
.apx-hero-section h1 {
font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 800; text-transform: uppercase;
letter-spacing: 2px; margin-bottom: 10px;
text-shadow: 0 3px 6px rgba(0,0,0,0.4), 0 0 10px rgba(255, 255, 255, 0.2);
background: linear-gradient(90deg, #aaa, #fff, #aaa);
-webkit-background-clip: text; background-clip: text; color: transparent;
background-size: 200% 100%;
animation: title-gradient-animation 5s linear infinite;
}
.apx-hero-subtitle {
font-size: 1.1rem; font-weight: 400; font-style: impact; color: rgba(255, 0, 0, 0.8);
max-width: 500px; margin-bottom: 30px; line-height: 1.5;
text-shadow: 0 1px 3px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.15);
font-family: inherit;
}
.apx-carousel-wrapper {
position: relative; width: 100%; max-width: 600px; height: 340px;
margin: 20px auto 40px; perspective: 1200px;
}
.apx-carousel-track {
position: absolute; width: 100%; height: 100%;
transform-style: preserve-3d;
}
.apx-carousel-slide {
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
border-radius: 16px; overflow: hidden;
transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), filter 0.6s ease, opacity 0.6s ease;
user-select: none;
}
.apx-carousel-slide a { display: block; width: 100%; height: 100%; }
.apx-carousel-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.slide-active { transform: translateX(0) translateZ(0) rotateY(0); filter: blur(0px) brightness(1); opacity: 1; z-index: 10; }
.slide-prev { transform: translateX(-55%) translateZ(-250px) rotateY(35deg); filter: blur(4px) brightness(0.6); opacity: 0.7; z-index: 5; }
.slide-next { transform: translateX(55%) translateZ(-250px) rotateY(-35deg); filter: blur(4px) brightness(0.6); opacity: 0.7; z-index: 5; }
.slide-hidden { transform: scale(0.5); filter: blur(8px); opacity: 0; z-index: 1; }
.apx-carousel-nav {
position: absolute; top: 50%; transform: translateY(-50%);
width: 45px; height: 45px; background-color: rgba(0, 0, 0, 0.4);
border: none; border-radius: 50%; transition: all 0.3s; z-index: 20;
cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.apx-carousel-nav:hover { background-color: rgba(0, 0, 0, 0.7); transform: translateY(-50%) scale(1.1); }
.apx-carousel-prev { left: -25px; }
.apx-carousel-next { right: -25px; }
.apx-hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 5; }
.apx-btn {
padding: 12px 28px; font-size: 1rem; font-weight: 600; border-radius: 8px;
cursor: pointer; transition: all .3s ease; text-decoration: none; color: #111;
border: 2px solid transparent; display: flex; align-items: center;
}
.apx-btn i { margin-right: 8px; font-size: 1.1em; }
.apx-btn-gradient {
background: linear-gradient(90deg, #aaa, #fff, #aaa);
background-size: 200% 100%;
animation: gradient-animation 4s linear infinite;
}
.apx-btn-gradient:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
.apx-btn-contact { background: transparent; border-color: white; color: white; }
.apx-btn-contact:hover { background: white; color: black; }
.apx-popup-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,.8); backdrop-filter: blur(10px);
display: flex; justify-content: center; align-items: center;
z-index: 1000; opacity: 0; visibility: hidden;
transition: opacity 0.4s ease, visibility 0s 0.4s;
}
.apx-popup-overlay.show { opacity: 1; visibility: visible; transition-delay: 0s; }
.apx-popup-content {
background: #111; color: white; padding: 40px; border-radius: 12px;
border: 1px solid rgba(255,255,255,.2); text-align: center;
position: relative; transform: scale(.95); transition: transform 0.4s ease;
}
.apx-popup-overlay.show .apx-popup-content { transform: scale(1); }
.apx-popup-content h3 { margin-top: 0; margin-bottom: 15px; font-size: 1.5rem; }
.apx-popup-content p { margin-bottom: 25px; font-size: 1rem; color: #ccc; }
.apx-popup-content a.email-link {
font-weight: bold; color: #fff; background: #333;
padding: 8px 15px; border-radius: 6px; text-decoration: none;
transition: background .3s;
}
.apx-popup-content a.email-link:hover { background: #444; }
.apx-popup-close {
position: absolute; top: 15px; right: 15px; background: none;
border: none; color: #888; font-size: 2rem; cursor: pointer;
transition: color .3s,transform .3s;
}
.apx-popup-close:hover { color: white; transform: rotate(90deg); }
@media (max-width: 768px) {
.apx-hero-section h1 { font-size: 2rem; }
.apx-hero-subtitle { font-size: 1rem; }
.apx-carousel-wrapper { max-width: 90vw; height: 280px; perspective: 800px; }
.apx-carousel-nav { width: 40px; height: 40px; }
.apx-carousel-prev { left: 5px; }
.apx-carousel-next { right: 5px; }
.slide-prev { transform: translateX(-65%) translateZ(-150px) rotateY(40deg); }
.slide-next { transform: translateX(65%) translateZ(-150px) rotateY(-40deg); }
.apx-btn { padding: 10px 22px; font-size: 0.9rem; }
}
@keyframes gradient-animation { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.apx-purchase-popup {
position: fixed;
bottom: 25px;
left: 25px;
z-index: 1001;
display: flex;
align-items: center;
gap: 15px;
padding: 15px 20px;
border-radius: 10px;
color: #111;
font-family: 'Arial', sans-serif;
background: linear-gradient(90deg, #aaa, #fff, #aaa);
background-size: 200% 100%;
animation: gradient-animation 4s linear infinite;
opacity: 0;
transform: translateX(-110%);
pointer-events: none;
transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.apx-purchase-popup.show {
opacity: 1;
transform: translateX(0);
pointer-events: auto;
}
.apx-purchase-popup .popup-icon i {
font-size: 1.8rem;
}
.apx-purchase-popup .popup-text p {
margin: 0;
font-size: 0.85rem;
line-height: 1.3;
}
.apx-purchase-popup .popup-text .popup-product {
font-weight: 600;
}
@media (max-width: 768px) {
.apx-purchase-popup {
max-width: calc(100vw - 40px);
bottom: 20px;
left: 20px;
right: auto;
}
}
.social-sidebar {
position: fixed;
top: 50%;
right: 0;
transform: translateY(-50%);
z-index: 1000;
display: flex;
flex-direction: column;
gap: 8px; /* Espaço entre os ícones */
background-color: rgba(20, 20, 22, 0.6);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 12px 8px;
border-radius: 15px 0 0 15px;
transition: all 0.3s ease-in-out;
}
.social-sidebar a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
color: #ffffff;
font-size: 20px;
text-decoration: none;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.05);
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
position: relative;
overflow: hidden;
}
.social-sidebar a:hover {
transform: scale(1.1) translateX(-5px);
background-color: rgb(var(--primary));
box-shadow: 0 0 20px rgba(var(--primary), 0.7);
}
.social-sidebar a::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
transform: scale(0);
transition: transform 0.5s ease;
}
.social-sidebar a:hover::before {
transform: scale(1);
}