* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Figtree', sans-serif;
        }

        body {
            background-color: #fff;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        body.dark {
            background-color: #1a1a1a;
            color: #fff;
        }

        .body {
            font-size: 16px;
            line-height: 1.5;
            padding: 50px;
        }

        .navbar {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 50px;
            position: fixed;
            width: 100%;
            background-color: rgb(0, 106, 255);
            z-index: 1000;
            transition: background-color 0.3s ease;
        }

        .logo {
            position: absolute;
            left: 50px;
            display: flex;
            align-items: center;
        }

        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        .nav-itens {
            display: flex;
            list-style: none;
        }

        .nav-itens li {
            cursor: pointer;
            position: relative;
            color: white;
        }

        .nav-itens li a {
            margin: 0 15px;
            font-size: 14px;
            letter-spacing: 1px;
            text-decoration: none;
            color: white;
        }

        .autenticar {
            position: absolute;
            right: 50px;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .trilho {
            width: 50px;
            height: 25px;
            background-color: #ccc;
            border-radius: 25px;
            position: relative;
            cursor: pointer;
            transition: 0.3s ease;
            margin-right: 10px;
        }

        .trilho .indicador {
            width: 21px;
            height: 21px;
            background-color: white;
            border-radius: 50%;
            position: absolute;
            left: 2px;
            top: 2px;
            transition: 0.3s ease;
        }

        .trilho.dark .indicador {
            left: 27px;
            background-color: white;
        }

        .user-profile {
            display: flex;
            align-items: center;
        }

        .profile-pic {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-itens li:hover:after {
            width: 100%;
        }

        .hero {
            background: linear-gradient(135deg, #3d98ff 0%, #0099ff 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            transform: translateY(59px);

        }
        .hero-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-section {
            background: none;
            border: 2px solid white;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            align-items: center;
            gap: 5px;
        }

        .btn-section:hover {
            background-color: white;
            color: rgb(0, 106, 255);
        }

        body.dark .btn-section:hover {
            color: #2a2a2a;
        }

        h1 {
            text-align: center;
            margin-bottom: 4rem;
        }

        .h1-hero {
            color: black;
            transform: translateY(190px);
            transition: color 0.3s ease;
        }

        body.dark .h1-hero {
            color: white;
        }

        .cards {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-flow: wrap;
            gap: 30px;
        }

        .card {
            position: relative;
            z-index: 1;
            width: 250px;
            aspect-ratio: 1 / 1.4;
            padding: 1rem;
            border-radius: 20px;
            background-color: #fff;
            border: 1px solid #ddd;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 1rem;
            transform: translateY(100px);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        body.dark .card {
            background-color: #2a2a2a;
            border-color: #444;
            color: white;
        }

        .card:hover {
            transform: translateY(95px) scale(1.05);
            border-color: rgb(0, 106, 255);
        }

        .card-img-wrap {
            position: relative;
            width: 117px;
            height: 117px;
            padding: 7px;
        }

        .card-img {
            width: 100%;
            height: 100%;
            border-radius: 100%;
            overflow: hidden;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        body.dark .card-img {
            background-color: #1a1a1a;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100%;
        }

        .card-meta {
            text-align: center;
        }

        .card-name {
            font-size: 20px;
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: rgb(0, 106, 255);
        }

        .card-location {
            font-size: 14px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
            line-height: 1.4;
            color: #666;
            transition: color 0.3s ease;
        }

        body.dark .card-location {
            color: #ccc;
        }

        .card-profiles {
            font-size: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        .hero2 {
            background: linear-gradient(135deg, #3d98ff 0%, #0099ff 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-top: 100px;
        }

        .container2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-content2 h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero-content2 p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        footer {
            width: 100%;
            background: white;
            padding: 2rem 0;
            border-top: 1px solid #eee;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        body.dark footer {
            background: #2a2a2a;
            border-top-color: #444;
        }

        .footercontats {
            color: black;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1rem 1.5rem;
            margin: 0;
            max-width: 1200px;
            margin: 0 auto;
            transition: color 0.3s ease;
        }

        body.dark .footercontats {
            color: white;
        }

        .footer-brand {
            flex: 1;
        }

        .footercontats h1 {
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            font-size: 2rem;
            color: rgb(0, 106, 255);
        }

        .footer-columns {
            display: flex;
            top: 100px;
            gap: 4rem;
            flex: 2;
            justify-content: flex-end;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footerlist {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            list-style: none;
        }

        .footerlist h3 {
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        body.dark .footerlist h3 {
            color: #ccc;
        }

        .footerlist .footerlink {
            color: rgb(0, 0, 0);
            text-decoration: none;
            transition: 0.25s;
            padding: 0.25rem 0;
        }

        body.dark .footerlist .footerlink {
            color: #ccc;
        }

        .footerlist .footerlink:hover {
            color: rgb(0, 106, 255);
            transform: translateX(5px);
        }

        .footercopyright {
            display: flex;
            justify-content: center;
            font-family: sans-serif;
            padding: 1rem;
            border-top: 1px solid #eee;
            margin-top: 1rem;
            color: #666;
            font-size: 0.9rem;
            transition: color 0.3s ease, border-color 0.3s ease;
        }

        body.dark .footercopyright {
            color: #ccc;
            border-top-color: #444;
        }

    
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 15px;
            }
            
            .logo {
                position: static;
                margin-bottom: 10px;
            }
            
            .autenticar {
                position: static;
                margin-top: 10px;
            }
        }