* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to right, hsl(270, 65%, 48%), hsl(270, 70%, 36%));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Global Customizations --- */
::selection {
    background: #d1b3ff;
    color: #310e68;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* --- Animation Utilities --- */
.fade-in-down {
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in-scale {
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeInOp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Scroll reveal classes */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.reveal-stagger-1 { transition-delay: 0.1s; }
.reveal-stagger-2 { transition-delay: 0.2s; }
.reveal-stagger-3 { transition-delay: 0.3s; }
.reveal-stagger-4 { transition-delay: 0.4s; }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInOp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ------------------------- */

.top-bar {
    width: 100%;
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    padding: 2rem 4rem calc(2rem + 4vw) 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 4vw));
    z-index: -1;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    align-items: center;
}

.sidebar-header {
    display: none;
}

.sidebar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.menu-toggle,
.menu-close {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.top-bar-logo {
    height: 50px;
    width: auto;
}

.top-bar-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-bar-btn:hover {
    color: #d1b3ff;
}

.top-bar-right {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.top-bar a {
    color: #fff;
    margin-top: 18px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #d1b3ff;
}

.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
}

.whatsapp-tooltip {
    background: white;
    color: #333;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 2.5s;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    position: relative;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

.hero-section {
    width: 100%;
    margin-top: -4vw;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.85) 0%, rgba(49, 14, 104, 0.7) 100%), url('static/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 4vw, 100% calc(100% - 4vw), 0 100%);
    position: relative;
    z-index: 1;
    padding: 10vw 4rem 10vw 4rem;
    display: flex;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    max-width: 1500px;
    width: 100%;
}

.hero-logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    display: block;
}

.sobre {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    color: white;
    z-index: 10;
}

.sobre-content {
    max-width: 750px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: left;
}

.sobre p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lojas {
    background: rgba(255, 255, 255, 0.05);
    padding: 8rem 2rem 5rem 2rem;
    text-align: center;
    clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -4vw;
}


.lojas h2 {
    color: white;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.lojas-logos {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4rem;
    margin-bottom: 5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 1rem;
}

.lojas-logos::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.lojas-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 90px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lojas-logos a:first-child {
    margin-left: auto;
}

.lojas-logos a:last-child {
    margin-right: auto;
}

.lojas-logos a:hover {
    transform: scale(1.1);
}

.lojas-logos picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.lojas-logos img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lojas-descricoes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.loja-desc-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.loja-desc-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.loja-desc-item h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
}

.loja-desc-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

footer {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 300;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    line-height: 1.6;
    max-width: 400px;
}

.footer-contact {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: #d1b3ff;
    border-radius: 2px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.footer-contact strong {
    color: white;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-security {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-security h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.footer-security h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: #d1b3ff;
    border-radius: 2px;
}

.turnstile-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.turnstile-badge:hover {
    color: #fff;
    text-decoration: underline;
}

.cloudflare-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@media (max-width: 992px) {
    .top-bar {
        padding: 1.5rem 2rem calc(1.5rem + 4vw) 2rem;
    }

    .top-bar-left {
        gap: 1.5rem;
    }

    .sidebar-menu {
        gap: 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .sobre {
        justify-content: center;
        text-align: center;
    }

    .sobre h2 {
        text-align: center;
    }

    .footer-contact p {
        white-space: normal;
        align-items: flex-start;
        overflow-wrap: break-word;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 90%;
    }

    .welcome-text {
        display: none;
    }

    .top-bar {
        flex-direction: row;
        padding: 1.5rem 1rem calc(1.5rem + 4vw) 1rem;
        gap: 1rem;
    }

    .top-bar-left {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(to bottom, hsl(270, 65%, 48%), hsl(270, 70%, 36%));
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        gap: 0;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        left: 0;
    }

    .sidebar-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 1.5rem 2rem;
    }

    .menu-close {
        display: flex;
        align-self: auto;
        padding: 5px;
        margin-right: -10px;
        transition: transform 0.3s ease;
    }

    .menu-close:hover {
        transform: rotate(90deg);
    }

    .sidebar-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .sidebar-menu .top-bar-btn {
        width: 100%;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0;
    }

    .sidebar-menu .top-bar-btn::after {
        content: '›';
        font-size: 1.5rem;
        line-height: 1;
        opacity: 0.5;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .sidebar-menu .top-bar-btn:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 2.5rem;
        color: #fff;
    }

    .sidebar-menu .top-bar-btn:hover::after {
        opacity: 1;
        transform: translateX(5px);
    }

    .top-bar-right,
    .top-bar a {
        margin-top: 0;
    }

    .lojas-logos {
        gap: 1rem;
    }

    .lojas-logos a {
        width: 150px;
        height: 70px;
    }

    .hero-section {
        padding: 15vw 2rem 10vw 2rem;
    }

    .footer-content {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 85%;
    }

    .hero-section {
        padding: 20vw 1.5rem 15vw 1.5rem;
    }

    .main-logo {
        max-width: 250px;
    }

    .sobre-content {
        padding: 1.5rem;
    }

    .lojas {
        padding: 5rem 1.5rem 3rem 1.5rem;
    }

    .lojas-logos {
        gap: 0.5rem;
    }

    .lojas-logos a {
        width: 120px;
        height: 60px;
    }

    .loja-desc-item {
        padding: 1.5rem;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .top-bar {
        font-size: 0.9rem;
    }
}