.perfumes-type-section {
    height: 100vh;
    background-color: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
}

.perfumes-type-section h2 {
    font-size: 2.5em;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.perfumes-type-section .cards-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.perfumes-type-section .card {
    background-color: #181818;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 15px 10px;
    max-width: 220px;
    text-align: center;
}

.perfumes-type-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

.perfumes-type-section .card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.perfumes-type-section .percentage {
    font-size: 3em;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.perfumes-type-section .card h3 {
    font-size: 1.3em;
    color: #ccc;
    font-weight: normal;
    margin-top: 5px;
    text-align: center;
}

/* Ajustes para tablets e telas menores */
@media (max-width: 768px) {
    .perfumes-type-section {
        height: auto;
        padding: 20px;
    }

    .perfumes-type-section h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .perfumes-type-section .cards-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .perfumes-type-section .card {
        flex: 1 1 calc(50% - 15px);
        max-width: none;
    }

    .perfumes-type-section .card img {
        height: auto;
    }

    .perfumes-type-section .percentage {
        font-size: 2em;
    }

    .perfumes-type-section .card h3 {
        font-size: 1.1em;
    }
}

/* Ajustes para smartphones: 2 cards por linha e imagem com 80px de altura */
@media (max-width: 480px) {
    .perfumes-type-section .cards-container {
        gap: 10px;
    }

    .perfumes-type-section .card {
        flex: 1 1 calc(50% - 10px);
    }

    .perfumes-type-section .card img {
        height: 80px;
    }

    .perfumes-type-section .percentage {
        font-size: 1.8em;
    }

    .perfumes-type-section .card h3 {
        font-size: 1em;
    }
}
