@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
body {
    font-family: 'Poppins', sans-serif;
}

.bg-primary {
    background-color: #154e9c;
}

.bg-secondary {
    background-color: #f4961a;
}

.bg-accent {
    background-color: #83a649;
}

.bg-highlight {
    background-color: #ffd317;
}

.bg-error {
    background-color: #ec6466;
}

.text-primary {
    color: #154e9c;
}

.text-secondary {
    color: #f4961a;
}

.text-accent {
    color: #83a649;
}

.text-highlight {
    color: #ffd317;
}

.text-error {
    color: #ec6466;
}

.border-primary {
    border-color: #154e9c;
}

.border-secondary {
    border-color: #f4961a;
}

.background-pattern {
    background-image: radial-gradient(#154e9c33 1px, transparent 1px);
    background-size: 20px 20px;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #154e9c;
    color: white;
}

.btn-primary:hover {
    background-color: #113e80;
}

.btn-secondary {
    background-color: #f4961a;
    color: white;
}

.btn-secondary:hover {
    background-color: #d68215;
}
@keyframes float{
    0%,100%{
        transform:translatey(0)
    }
    50%{
        transform:translatey(-10px)
        
    }
}

/* NAVBAR SECTION */

.navbar-container {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: center;
}

.navbar {
    width: 100%;
    border-radius: 9999px;
    background-color: #154e9c;    
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out;
    overflow: visible;
    position: relative;
    margin: 0 5% 0 5%;
}

.navbar-background-img {
    background-image: url('../img/navbar/background.png');
    background-size: cover;
    background-repeat: repeat-x;
}

.-translate-y-full {
    transform: translateY(-180%) !important;
    transition: transform 0.4s ease-in-out;
}

.logo-container {
    position: absolute;
    bottom: -32px;
    left: 60px;
    z-index: 50;
    
}

.logo {
    height: 140px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.nav-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }

    
}

.nav-link {
    position: relative;
    padding: 0.5rem 0.75rem;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f4961a;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #f4961a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    margin-left: 1rem;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -1.5rem;
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
    background-color: #154e9c;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    z-index: -51;
    border-radius: 0 0 30px 30px;
}

.mobile-menu.open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-inner {
    background-color: rgba(var(--primary-rgb), 0.95);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-link:hover {
    color: #f4961a;
    background-color: rgba(#12448a, 0.8);
}

@media (max-width: 767px) {
    .mobile-menu.show {
        display: block;
    }
    .mobile-toggle{
        display: block;
    }

    .logo-container {
        position: absolute;
        bottom: -22px;
        left: 15px;
        z-index: 50;
    }
    
    .logo {
        height: 100px;
        transition: transform 0.3s ease;
    }

    .navbar {
        margin: 0 10px 0 10px;
    }
}

/* METODOLOGIA SECTION */

.metodologia-background-img {    
    background-image: url('../img/paralax/paralax1.png');
    background-size: cover;
    background-repeat: no-repeat;
    
}

.efeito-flutuante-infinito {
    animation: float 4s ease-in-out infinite;
}

/* LINE BLOCK */
.slider-wrapper {
    position: relative;
    
    width: 100%;
    overflow: hidden;
  }
  
  .slider-track {
    display: flex;
    gap: 1rem;
    width: max-content;
  }
  
  
  .slider-img {
    height: 3.5rem;
    width: 3.5rem;
    
  }
  
  .slider-img:hover {
    transform: scale(1.1);
  }


  .parallax::after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateZ(-1px) scale(1.5);
    background-size: 100%;
    z-index: -1;
  }

  .bg1::after {
    background-image: url('../img/paralax/metodologia.jpg');
  }
  
  .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.animate-spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}