@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    box-sizing: border-box;
}

body{
    font-family: "Nunito", sans-serif;
    padding: auto;
    margin: auto;   
    background-color: #fffefc;
}

.header {
    width: 100%;
    position: fixed;
    background-color: #fffefc;
    z-index: 10;
    padding: .5rem;
}

.nav-bar {
    display: flex;
    justify-content: space-around;
    padding: 1rem 1rem;
}

.logo img{
    margin-top: 10px;
    display: flex;
    width: 130px;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    /* gap: 1rem; */
}

.nav-link {
    text-decoration: none;
    color: #333;
    display: block;
}

/* .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    min-width: 180px;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    display: block;
} */

.nav-list img {
    width: 25px;
    margin-top: .4em;
    padding: .2em;
}

.nav-item {
    margin: 0 20px;
    position: relative;
}

.nav-icon{
    padding: .2em;
    margin-left: 10px;
}


.nav-link {
    text-decoration: none;
    font-size: 1.10rem;
    color: #707070;
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.nav-link:hover{
    transition: all .3s ease-in-out;
    color: #00549B;
}

.mobile-menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
}

        /* Reset e Configuracoes Globais */


        :root {
            --primary: #00549B; /* Coral amigavel */
            --secondary: #343946; /* Azul escuro elegante */
            --bg-light: #f5f5f5; /* Off-white quente */
            --text-dark: #333333;
            --text-muted: #666666;
            --card-bg: #FFFFFF;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar Simples */


        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary);
        }

        .logo span {
            color: var(--primary);
        }

        /* Hero Banner */
        .hero {
            padding: 120px 0 100px 0;
        }

        .hero-grid {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-content h1 {
            font-size: 48px;
            color: var(--secondary);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 35px;
            max-width: 500px;
        }

        .cta-group {
            display: flex;
            gap: 15px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background-color: #167fd6;
            border-color: #167fd6;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-secondary:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-2px);
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
        }

        /* Mockup/Placeholder Visual do Hero */
        .mockup-container {
            width: 300px;
            height: 600px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mockup-inner {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }

        /* Elemento decorativo circular atras do mockup */
        .hero-circle {
            position: absolute;
            width: 450px;
            height: 450px;
            background-color: #D9E6F0;
            border-radius: 50%;
            z-index: -1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Secao de Servicos */
        .services {
            padding: 4rem 0;
            background-color: #FFF;
            background-image: url('../images/paw-back.svg');
            background-position: top left;
            background-repeat: no-repeat;
            background-size: 800px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 80px;
        }

        .service-card {
            background-color: var(--card-bg);
            border: 1px solid #f0f0f0;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: left;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .service-card:hover {
            /* transform: translateY(-10px); */
            border-color: var(--primary);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background-color: #ffffff;
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            font-size: 24px;
        }

        .service-card h3 {
            font-size: 20px;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .footerCopy{
    background-color: var(--bg-light);
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: center;
    padding: 1em;
}

.footer-img img{
    padding-top: 2rem;
    width: 180px;
}

.footer {
    text-align: center;
    background-color: var(--bg-light);
    padding: 3.2em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footer-nav p{
    padding-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 800;
}

.footer ul{
    color: var(--text-muted);
    text-align: left;
}

.footer li{
    padding-bottom: 1.2rem;
    display: block;   
}

.footer .nav-link{
    color: var(--text-muted);
}

.footer-social{
    text-align: left;
}

.footer-social a {
    color: var(--text-muted);
}

.footer-social p{
    color: var(--text-muted);
    padding-bottom: 1rem;
    font-weight: 800;   
}

.gestorBanner{
    height: 450px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    background-color: #FFF;
}

.gestorImg img{
    width: 300px;
}

.gestorTxt{
    text-align: left;
}

.gestorTxt h1{
    font-size: 3rem;
}

        /* Responsividade */
        @media (max-width: 992px) {
            .hero-grid {
                flex-direction: column;
                text-align: center;
                gap: 60px;
            }

            .hero-content p {
                margin: 0 auto 35px auto;
            }

            .cta-group {
                justify-content: center;
            }

            .hero-content h1 {
                font-size: 38px;
            }
        }

        @media screen and (max-width: 1194px) {
    .nav-bar {
        padding: 1.5rem 4rem;
    }
    .nav-item {
        display: none;
    }

    .nav-icon{
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-menu-icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }

    .mobile-menu .nav-item {
        display: block;
        padding: 1rem;
    }
    .mobile-menu .login-button {
        display: block;
        padding: 1rem 2rem;
    }
    .mobile-menu .login-button button {
        width: 100%;
    }
    .open {
        display: block;
    }

    .mobile-menu .nav-item img{
        width: 20px;
        padding: .3em;
    }


    .icon{
        width: 20px;
        padding-top: 1rem;
    }

    .logo img{
        width: 100px;
        margin-left: 10px;
    }

    .footer{
        flex-direction: column;
    }

    .gestorBanner{
    height: 800px;
    flex-direction: column;
    gap: 3rem;
    padding-top: 0;
    padding: 1rem;
    }

    .gestorImg img{
        width: 250px;
    }

    .hero-circle{
        width: 350px;
        height: 350px;
    }
}
