/* =====================================================================
   ESTILOS PARA ÍCONES DE COMODIDADES - SEÇÃO ACOMODAÇÕES
   Layout: 4 itens por linha - Ícone à esquerda, texto à direita
   Usando variáveis de cores do Shalimar
   ===================================================================== */

.amenities-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 15px;
    margin-top: 30px;
    padding: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.amenity-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.amenity-item i {
    font-size: 1.4rem;
    color: var(--dourado-shalimar, #a38b5d);
    flex-shrink: 0;
    transition: var(--transicao, all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1));
}

.amenity-item:hover i {
    color: var(--branco, #ffffff);
}

.amenity-item span {
    font-size: 0.85rem;
    color: var(--branco, #ffffff);
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
}

.amenities-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: center;
}

/* Responsividade - Tablet */
@media (max-width: 768px) {
    .amenities-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .amenity-item i {
        font-size: 1.2rem;
    }
    
    .amenity-item span {
        font-size: 0.8rem;
    }
}

/* Responsividade - Mobile */
@media (max-width: 480px) {
    .amenities-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .amenity-item {
        gap: 8px;
    }
    
    .amenity-item i {
        font-size: 1.1rem;
    }
    
    .amenity-item span {
        font-size: 0.75rem;
    }
}
