/*
Theme Name: TradePec
Theme URI: http://localhost:8000
Author: Tífani Sá
*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* HEADER */
.header {       
    background-color: #175d2b; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); 
    position: sticky;
    top: 0;
    z-index: 50;
}

/* CONTAINER INTERNO */
.header-container {
    max-width: 100%; 
    margin: 0 auto;
    padding: 16px 20px 16px 20px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    color: white;
    font-weight: bold;
    font-size: 1.5rem; 
}

.logo img {
    width: 150px; 
}

/* NAVIGATION */
.nav {
    display: none; 
    gap: 1.5rem; 
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #0d9488; 
}

/* BOTÃO MOBILE */
#mobile-menu-btn {
    display: inline-block;
    color: white;
    font-size: 1.25rem; 
    padding: 0.5rem; 
    position: relative;
    z-index: 50;
}

/* MEDIA QUERY PARA DESKTOP */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    #mobile-menu-btn {
        display: none;
    }
}

.page-interna p {
    margin-bottom: 15px;
    text-align: justify;
}


/* FIM HEADER */

