.elementor-6 .elementor-element.elementor-element-ac3ff32{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}body.elementor-page-6{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-ac3ff32 */:root {
    --blue-bh: #3283C2;
    --dark-bg: rgba(0, 0, 0, 0.4);
    --top-bar-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra Superior */
.top-bar {
    background-color: var(--top-bar-bg);
    font-size: 11px;
    padding: 8px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.contact-info {
    color: #ccc;
}

.contact-info i {
    color: #fff;
    margin-right: 5px;
}

.top-nav {
    display: flex;
    gap: 20px;
}

.top-nav a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.top-nav a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand {
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1;
}

.sub-brand {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-top: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a.active {
    color: #fff;
}

.nav-links a:hover {
    color: var(--blue-bh);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 18px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #f1c40f;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Content */
.hero-content {
    margin-top: 15vh;
    max-width: 600px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: #83b9e5; /* Azul claro similar à imagem */
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-buy {
    background-color: #123e6b; /* Azul escuro do botão */
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-buy:hover {
    background-color: #1a5a9c;
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #123e6b;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.btn-play i {
    margin-left: 3px;
}

.btn-play:hover {
    background-color: #1a5a9c;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 48px;
    }
}/* End custom CSS */