* {
    font-family: 'Poppins', sans-serif;
}

 /* RESPONSIVEL  */
 @media only screen and (max-width: 770px){
  html, body{
    display:none;
  }  
 }

/* Navbar Transitions */
.navbar-transparent {
    background: transparent;
    transition: all 0.3s ease-in-out;
}
.navbar-transparent .menu-desktop {
    font-size: 0.8rem;
}
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar-scrolled .menu-desktop {
    font-size: 0.8rem;
    color:#000;
}
.navbar-scrolled .menu-desktop svg path{
    fill:#000!important;
}
.navbar-transparent svg {
  color: #ffffff;
}
.navbar-scrolled svg {
  color: #000000;
}
.logo-svg {
  transition: color 0.3s ease;
}


/* Mega Menu Overlay */
.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 39;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 40;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.6s both;
}

#meu-svg svg {
    width: 500px;
    height: 500px;
}

/* Swiper Custom */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #EC8223;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    opacity:0.1;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: white;
    opacity:1;
}

/* Section Heights */
.section-placeholder {
    min-height: 400px;
    border: 2px dashed #EBEBEB;
}





/* 
 * GSAP Animation
 * Seção 2 - Scroll Horizontal 
 */
.section-2 {
    background: #000;
    height: 100vh;
    overflow: visible;
    background:url('/wp-content/themes/tw2026/assets/img/bg-login.jpg');
    background-size: cover;
}

.pin-wrap {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cards-container {
    display: flex;
    gap: 40px;
    padding-left: 40vw;
    padding-right: 30vw;
}

.card {
    flex-shrink: 0;
    width: 400px;
    height: 500px;
    perspective: 1200px;
}

.card-inner {
    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);

    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    overflow: hidden;

    transform-style: preserve-3d;
    will-change: transform;
}

.card-inner img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    opacity: 0.9;
}

.card-content {
    padding: 30px;
    color: #000;
    transform: translateZ(30px);
}

.card-content h3 {
    color:#fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.card-content p {
    color:#fff;
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.6;
}

/* HOME CTA */
#cta-final{
    background: url(/wp-content/themes/tw2026/assets/img/bg-home-cta.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f9931f;
}