.service-app {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.text-box {
    max-width: 500px;
    flex: 1;
}

.text-box h1 {
    font-size: 2.8rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 25px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-buttons img {
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.store-buttons img:hover {
    transform: scale(1.05);
}

.phone-box {
    position: relative;
    flex: 1;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('advantage-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.phone-box img {
    width: 330px;
    z-index: 1;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .service-app {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .phone-box {
        width: 100%;
        height: 400px;
    }

    .store-buttons {
        justify-content: center;
    }
}
.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 70px; /* Ajuste conforme necessário */
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px; /* Ajuste conforme necessário */
    font-weight: bold;
    color: #333; /* Ajuste conforme necessário */
}

.logo-text .highlight {
    color: #4bc9ad; /* Cor verde para "Pin" - ajuste conforme necessário */
}

/* Ajustes para o cabeçalho responsivo */
@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}
.static-single .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* ajusta conforme necessário */
    margin-bottom: 15px;
  }
  
  .static-single .icon img {
    max-width: 60px; /* tamanho máximo da imagem */
    height: auto;
    display: block;
  }
  