html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.hero {
    height: 90vh;
    background: linear-gradient(135deg,#0d6efd,#6610f2);
}

    .hero h1 {
        font-weight: 700;
    }

.card {
    transition: 0.3s;
}

    .card:hover {
        transform: scale(1.05);
    }

.card {
    transition: all 0.3s;
}

    .card:hover {
        transform: translateY(-10px);
    }
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .project-card img {
        width: 100%;
        transition: 0.4s;
    }

    .project-card:hover img {
        transform: scale(1.1);
    }

.project-info {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 100%;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
}

.project-card:hover .project-info {
    opacity: 1;
}

.hero-company {
    height: 90vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #0f2027, #203a43, #2c5364 );
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.logo-img {
    height: 50px; /* controla o tamanho */
    width: auto;
}
.logo-container {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#mainNavbar .nav-link {
    color: white;
    transition: 0.3s;
}
.navbar .nav-link:hover {
    transform: translateY(-1px);
}

.navbar .nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-scrolled .nav-link {
    color: #222; /* cor escura quando rolar */
}

    .navbar-scrolled .nav-link:hover {
        color: #0d6efd;
    }