/* ========================================
   IMPÉRIO SHOOP - ESTILOS PRINCIPAIS
   ======================================== */

/* Variáveis CSS */
:root {
    --azul-escuro: #071B35;
    --azul-neon: #009DFF;
    --branco: #FFFFFF;
    --cinza-claro: #F5F7FA;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--branco);
    background-color: var(--branco);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: blur(0px);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(7, 27, 53, 0.1);
}

.header.scrolled .logo h1 {
    color: var(--azul-escuro);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--branco);
    cursor: pointer;
}

.logo h1 span {
    color: var(--azul-neon);
}

.header.scrolled .nav-link {
    color: var(--azul-escuro);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--branco);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--azul-neon);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--azul-neon);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--azul-neon);
    color: var(--branco);
}

.btn-primary:hover {
    background: #007acc;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 157, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--azul-escuro);
    color: var(--azul-escuro);
}

.btn-outline:hover {
    background: var(--azul-escuro);
    color: var(--branco);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-whatsapp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--azul-neon);
    color: var(--branco);
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

.pulse-animation {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--azul-escuro) 0%, #0a2a52 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero-bg.png') center/cover no-repeat;
    opacity: 0.1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--azul-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--branco);
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--azul-neon);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(20px) rotate(180deg);
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
    }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PRODUTOS
   ======================================== */
.products {
    background: var(--cinza-claro);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(7, 27, 53, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(7, 27, 53, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: var(--branco);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--azul-escuro);
}

.product-rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-neon);
}

.price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   DIFERENCIAIS
   ======================================== */
.differentials {
    background: var(--branco);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.differential-card {
    background: var(--cinza-claro);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(7, 27, 53, 0.1);
}

.differential-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--azul-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--branco);
    margin: 0 auto 20px;
}

.differential-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--azul-escuro);
}

.differential-card p {
    font-size: 0.95rem;
    color: #666;
}

/* ========================================
   PROMOÇÕES
   ======================================== */
.promotions {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.promotion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--azul-escuro) 0%, #0a2a52 100%);
    z-index: 1;
}

.promotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/promotion-bg.png') center/cover no-repeat;
    opacity: 0.1;
}

.promotion-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
}

.promotion-content .section-title {
    color: var(--branco);
}

.promotion-content .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.countdown-container {
    margin: 40px 0;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 15px;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--branco);
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--azul-neon);
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.testimonials {
    background: var(--cinza-claro);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: var(--branco);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(7, 27, 53, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--azul-escuro);
    margin-bottom: 5px;
}

.testimonial-rating {
    color: #ffd700;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--azul-neon);
    color: var(--branco);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: #007acc;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--azul-neon);
}

/* ========================================
   CHAMADA FINAL
   ======================================== */
.final-call {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.final-call-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--azul-escuro) 0%, #0a2a52 100%);
    z-index: 1;
}

.final-call-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/final-call-bg.png') center/cover no-repeat;
    opacity: 0.1;
}

.final-call-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.final-call-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
}

.final-call-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-call-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* ========================================
   RODAPÉ
   ======================================== */
.footer {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo h2 span {
    color: var(--azul-neon);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--azul-neon);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--azul-neon);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        transition: right 0.3s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .countdown {
        gap: 5px;
    }

    .countdown-item {
        padding: 15px 10px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   PÁGINAS SECUNDÁRIAS
   ======================================== */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--azul-escuro) 0%, #0a2a52 100%);
    text-align: center;
    color: var(--branco);
}

.page-hero .page-title {
    color: var(--branco);
}

.page-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   BUSCA E FILTROS
   ======================================== */
.search-section {
    padding: 40px 0;
    background: var(--cinza-claro);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    border-color: var(--azul-neon);
    outline: none;
}

.search-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--azul-neon);
    color: var(--branco);
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 20px;
    background: var(--branco);
    border: 2px solid #ddd;
    color: var(--azul-escuro);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--azul-neon);
    color: var(--branco);
    border-color: var(--azul-neon);
}

/* ========================================
   CONTATO
   ======================================== */
.contact {
    background: var(--branco);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--azul-escuro);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--cinza-claro);
    border-radius: 10px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--azul-neon);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--azul-escuro);
}

.contact-item p {
    color: #666;
}

.contact-form-container {
    background: var(--cinza-claro);
    border-radius: 15px;
    padding: 40px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--azul-neon);
    outline: none;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
}

.no-products i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

/* ========================================
   MENU OVERLAY
   ======================================== */
.menu-overlay {
    display: none;
}

.menu-overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* ========================================
   PARTICULAS
   ======================================== */
.particle {
    position: absolute;
    background: var(--azul-neon);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(0) translateX(40px);
    }
    75% {
        transform: translateY(30px) translateX(20px);
    }
}