html,
body {

    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    width: 100%;
    min-height: 100vh;
    /* Altura mínima igual à altura da viewport */
    box-sizing: border-box;

}

/*8888888888888  header 88888888888888888*/
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    1position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


header .logo .tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: normal;
}


header nav {
    display: flex;
}

header nav a {
    padding: 15px 30px;
    background-color: #00B5AD;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

header nav a:hover {
    text-decoration: none;
    background-color: #003F5C;
    color: #fff;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 0.2rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
}

.seach-file-form {
    display: flex;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10); */
    padding: 4px 8px;
    /* align-items: center; */
    gap: 8px;
}

.input-seach-file-input {
    border-radius: 6px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: #f7f7f7;
    box-shadow: none;
    transition: background 0.2s;

}

.seach-file-form-button {
    background: rgb(7 163 156);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

/*8888888888888 login 88888888888888888*/
.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #003F5C;
}

.login-box input {
    width: 92%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.login-box button {
    width: 100%;
    padding: 15px;
    background-color: #00B5AD;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-box button:hover {
    background-color: #003F5C;
}

/*8888888888888  blog port 88888888888888888*/
.post-list {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}

.post-list h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #003F5C;
}

.post {
    margin: 10px;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
}



.post p {
    font-size: 14px;
    color: #666;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.pagination a {
    padding: 8px 12px;
    font-size: 14px;
    background-color: #00B5AD;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 3px;
}

.pagination a:hover {
    background-color: #003F5C;
}

.pagination a.active {
    background-color: #003F5C;
    pointer-events: none;
}



/*8888888888888  home  88888888888888888*/
.hero {
    background-image: url('seu-imagem-de-fundo.jpg');
    background-size: cover;
    background-position: center;
    color: #003F5C;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #003F5C;
}

.services .service,
.articles .article,
.products .product {
    display: inline-block;
    margin: 1%;
    text-align: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    padding: 18px;
    background-color: #fff;
    border-radius: 10px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003F5C;
}

.service p {
    font-size: 16px;
    color: #666;
}

.articles,
.products {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #DCE3EA;
}

.articles h2,
.products h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #003F5C;
}

.article h3,
.product h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003F5C;
}

.article p,
.product p {
    font-size: 16px;
    color: #666;
}

.product img {
    max-width: 100%;
    height: auto;
}

/*8888888888888  blog port artigos 88888888888888888*/
.article-container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.article-container h1 {
    font-size: 36px;
    color: #003F5C;
    margin-bottom: 20px;
}

.article-container .meta-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.article-container p {
    font-size: 18px;
    color: #003F5C;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-container img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.article-container blockquote {
    font-size: 20px;
    color: #003F5C;
    border-left: 4px solid #00B5AD;
    padding-left: 20px;
    margin: 30px 0;
}

.article-container .tags {
    margin-top: 30px;
}

.article-container .tags a {
    display: inline-block;
    background-color: #00B5AD;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

.article-container .tags a:hover {
    background-color: #003F5C;
}


/*8888888888888  vendas 88888888888888888*/
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 22px;
    color: #003F5C;
    margin: 15px 0;
}

.product-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.product-card .price {
    font-size: 18px;
    color: #00B5AD;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-card button {
    background-color: #00B5AD;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.product-card button:hover {
    background-color: #003F5C;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/*8888888888888  footer 88888888888888888*/

footer {
    background-color: #003F5C;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 0px;
}

footer p {
    margin: 0;
}

/* Media Queries */

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    header .logo {
        margin-top: -10px !important;
        align-items: center;
    }

    img {
        width: 40% !important;
        height: 10% !important;
        object-fit: cover;
        /* ou "contain" se quiser que a imagem inteira apareça */
    }

    .nav-menu-mobile {
        top: 0;
        width: 100%;
        align-items: center;
        transition: 0.3s ease;
        background-color: #ffffff;
        justify-content: space-evenly;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu-mobile.active {}


    header .container {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0px;
        flex-direction: row;
        flex-direction: column;
        text-align: center;
    }


    header nav {
        flex-direction: row;
        margin-top: 10px;
    }

    header nav a {
        display: flex;
        justify-content: space-evenly;
    }

    /*fffffffffff post ffffffffffff*/
    .post-list h2 {
        font-size: 26px;
        color: #003F5C;
    }

    .post-conteine-flex {
        display: flex;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }



    .post h3 {
        font-size: 22px;
        color: #003F5C;
    }

    .post p {
        font-size: 14px;
    }

    /*fffffffffff login fffffffffff*/
    .login-box {
        display: block !important;
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1) !important;
        width: 100%;
    }

    .login-container {
        display: flex;
        height: 100%;
        background-color: #fff;
    }

    .login-box h2 {
        font-size: 24px;
        color: #003F5C;
    }

    .login-box input,
    .login-box button {
        padding: 12px;
    }

    /*fffffffffffffffffffffff*/
    .pagination a {
        padding: 8px 12px;
        font-size: 14px;
        background-color: #00B5AD;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin: 0 3px;
    }

    .article-container h1 {
        font-size: 28px;
        color: #003F5C;
    }

    .article-container p {
        font-size: 16px;
        color: #003F5C;
    }

    .article-container blockquote {
        font-size: 18px;
        color: #003F5C;
    }

    .product-card h3 {
        font-size: 20px;
        color: #003F5C;
    }

    .product-card p {
        font-size: 14px;
        color: #666;
    }

    .product-card .price {
        font-size: 16px;
        color: #00B5AD;
    }

    body {
        width: 100%;
        padding: 0px;
        /* padding-top: 60px; */
        margin: 4px;
    }
}

/*8888888888888  blog port 88888888888888888*/


/*messagens*/
.info {
    width: 100%;
    background: #00B5AD;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 50px;
    color: white;
}

.success {
    width: 100%;
    background: #A8E6CF;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 50px;
    color: #003F5C;
}

.warning {
    width: 100%;
    background: #FCE38A;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 50px;
    color: #003F5C;
}

.error {
    width: 100%;
    background: #eb5c70;
    align-items: stretch;
    display: flex;
    height: 50px;
    padding: 10px;
    color: white;
    flex-wrap: nowrap;
    justify-content: center;
}

.ajax_response {

    display: flex;
    justify-content: center;
    align-items: center;
}