.elementor-1156 .elementor-element.elementor-element-dc3ffb0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1156 .elementor-element.elementor-element-dc3ffb0:not(.elementor-motion-effects-element-type-background), .elementor-1156 .elementor-element.elementor-element-dc3ffb0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F1724;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6838b06 *//* ==================== FONTES ==================== */
@import url('https://fonts.cdnfonts.com/css/suisse-intl');

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Suisse Intl', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ==================== FLOATING ELEMENTS ==================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: float 6s ease-in-out infinite;
}
.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
}
.floating-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}
.floating-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ==================== NAVBAR ==================== */
.navbar-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 60px);
    max-width: 1280px;
}
@media (max-width: 991px) {
    .navbar-container {
        width: 90vw;
        top: 20px;
    }
}
@media (max-width: 487px) {
    .navbar-container {
        width: 90vw;
        top: 15px;
    }
}

.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 0;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}
.navbar:hover::before {
    left: 100%;
}
.navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Logo */
.navbar-brand,
.mobile-menu-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fcfcfc;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Logo Image Styling */
.navbar-brand img,
.mobile-menu-brand img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* Nav Links - Desktop */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}
.nav-item {
    position: relative;
}
.nav-link {
    padding: 10px 16px;
    text-decoration: none;
    color: #fcfcfc;
    font-weight: 300;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-link:hover::before {
    opacity: 1;
}
.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.nav-link.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
    background: #2d91ee;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(45, 145, 238, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 5px;
}
.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(45, 145, 238, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    z-index: 1001;
}
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    justify-content: center;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: #fcfcfc;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== MOBILE MENU ==================== */
@media (max-width: 991px) {
    .navbar-nav { display: none; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    z-index: 1600;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}
.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mobile-menu-nav {
    padding: 40px 30px 0;
    list-style: none;
}
.mobile-menu-item {
    margin-bottom: 12px;
}
.mobile-menu-link {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-size: 1.1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-cta {
    margin: 30px 30px 40px;
}
.mobile-cta-button {
    display: block;
    width: 100%;
    background: #2d91ee;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 145, 238, 0.3);
    transition: all 0.3s ease;
}
.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 145, 238, 0.4);
}

/* Ajustes para telas menores */
@media (max-width: 487px) {
    .navbar {
        padding: 10px 15px;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-brand img,
    .mobile-menu-brand img {
        height: 35px;
        max-width: 150px;
    }
}/* End custom CSS */