/* Reset básico e estilos gerais */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* Roboto Light */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333; /* Cor padrão do texto */
}

header {
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-image {
    width: 100%;
    height: auto;
}

.header-elevated {
    box-shadow: 0 4px 6px rgba(54, 54, 54, 0.1);
}

main {
    padding: 10px;
    margin-top: 100px;
}

.app-info {
    display: flex;
    align-items: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-right: 10px;
    object-fit: cover;
}

.app-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.verification-seal {
    width: 18px;
    height: auto;
    margin-left: 8px;
}

.app-details h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300; /* Roboto Light */
    font-size: 22px;
    margin: 0;
    color: #000;
}

.app-details p.app-name {
    font-size: 17px;
    margin: 1px 0;
    color: #028760;
    font-weight: 300;
    line-height: 1.2;
}

.verification-container {
    display: flex;
    align-items: center;
}

.verification-icon {
    width: 11px;
    height: auto;
    margin-right: 5px;
}

.app-details p.verification {
    font-size: 10px;
    margin: 3px 0;
    color: #757575;
    line-height: 1.2;
}

.stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 25px 0;
}

.ratings, .downloads, .editors-choice {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.rating-value {
    margin: 0;
    font-size: 18px;
    font-weight: 300; /* Roboto Light */
}

.ratings-icon, .editors-choice img {
    width: 16px;
    height: auto;
    margin-left: 5px;
}

.barrier {
    display: inline-block;
    width: 1px;
    height: 30px;
    background-color: #e0e0e0;
    margin: 0 15px;
}

.ratings p, .downloads p, .editors-choice p {
    margin: 0;
    font-size: 14px;
    color: #757575;
    font-weight: 300;
}

.downloads p:first-child {
    font-weight: bold;
}

.install-btn {
    background-color: #028760;
    color: white;
    padding: 7px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0;
    text-align: center;
    flex-direction: column;
}

.install-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.install-btn img {
    width: 11px;
    height: auto;
    margin-right: 5px;
}

.install-btn .text {
    font-size: 14px;
    margin: 0;
    color: #FFD700;
    font-weight: 300;
}

.install-btn span {
    display: block;
    font-size: 12px;
    color: #ffffff;
    margin: 2px 0;
    font-weight: 300;
}

.share-app-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.share-icon, .extra-icon {
    width: 15px;
    height: auto;
    margin-right: 0px;
}

.share-app, .extra-text {
    font-weight: 300;
    font-size: 16px;
    margin: 0 10px;
    color: #028760;
}

.images-section {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    padding: 10px;
}

.images-section img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    margin-right: 10px;
    flex-shrink: 0;
}

.app-description {
    margin-bottom: 20px;
}

.app-description h2 {
    font-weight: 300;
    color: #000;
}

.app-description p {
    font-weight: 300;
    color: #999;
    font-size: 0.9em;
}

.updated-date {
    font-weight: 300;
    font-size: 14px;
    margin: 10px 0;
    color: #000;
}

.updated-date-detail {
    font-weight: 300;
    font-size: 14px;
    color: #757575;
}

.container {
    max-width: 600px;
    margin: 20px auto;
}

.title {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: center;
}

.comment-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.comment-box:last-child {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
}

.comment-header .user-name {
    font-weight: 300;
    font-size: 16px;
    margin-right: auto;
}

.comment-header .date {
    color: #999;
    font-size: 14px;
}

.comment-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-rating img {
    width: 15px;
    height: 15px;
    margin-right: 2px;
}

.comment-content {
    font-weight: 300;
    color: #333;
    font-size: 15px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333;
}

.icon {
    width: 24px;
    height: 24px;
    display: block;
    margin-bottom: 5px;
}

.nav-text {
    font-size: 12px;
    font-weight: 300;
    color: #333;
}

.highlight-text {
    color: #028760;
    font-weight: 300;
}


.navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    z-index: 10; /* Garante que a navbar fique acima do footer */
}
