﻿.apps {
    padding: 60px 0;
    background-color: #f9f9f9; /* Cor de fundo suave para destacar a seção */
    text-align: center;
}

    .apps h2 {
        font-size: 2.5em;
        color: #00264d; /* Cor primária para o título */
        margin-bottom: 20px;
    }

    .apps p {
        font-size: 1.2em;
        color: #555555;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.app-presentation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.app-image {
    flex: 1 1 45%;
    text-align: center;
}

    .app-image img {
        max-width: 100%;
        border-radius: 15px;
/*        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);*/
    }

.app-details {
    flex: 1 1 45%;
    text-align: left;
}

    .app-details h3 {
        font-size: 2em;
        color: #00509e;
        margin-bottom: 20px;
    }

    .app-details p {
        font-size: 1.1em;
        color: #666666;
        margin-bottom: 30px;
    }

.app-buttons {
    display: flex;
    gap: 20px;

}

.store-badge {
    max-width: 150px;
    transition: transform 0.3s ease;
}

    .store-badge:hover {
        transform: scale(1.1);
    }

/* Responsividade */
@media (max-width: 768px) {
    .app-presentation {
        flex-direction: column;
    }

    .app-details {
        text-align: center;
    }

    .store-badge {
        max-width: 130px;
    }
    .app-buttons {
        place-content: center;
    }

}
